Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.26 KB

File metadata and controls

34 lines (25 loc) · 1.26 KB

DUTRange

Properties

Name Type Description Notes
count int [optional]
inner_vlan_range VLANRange The inner VLAN range assigned to the current DTLS Range configuration [optional]
ip SequenceValue [optional]
outer_vlan_range VLANRange The inner VLAN range assigned to the current DTLS Range configuration [optional]
vlan_type VLANType The type of VLAN used [optional]
links List[APILink] [optional]

Example

from cyperf.models.dut_range import DUTRange

# TODO update the JSON string below
json = "{}"
# create an instance of DUTRange from a JSON string
dut_range_instance = DUTRange.from_json(json)
# print the JSON string representation of the object
print(DUTRange.to_json())

# convert the object into a dict
dut_range_dict = dut_range_instance.to_dict()
# create an instance of DUTRange from a dict
dut_range_from_dict = DUTRange.from_dict(dut_range_dict)

[Back to Model list] [Back to API list] [Back to README]