Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

NetworkProfile

The networks assigned to the current test configuration

Properties

Name Type Description Notes
dut_network_segment List[DUTNetwork] [optional]
ip_network_segment List[IPNetwork] [optional]
id str
links List[APILink] [optional]

Example

from cyperf.models.network_profile import NetworkProfile

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

# convert the object into a dict
network_profile_dict = network_profile_instance.to_dict()
# create an instance of NetworkProfile from a dict
network_profile_from_dict = NetworkProfile.from_dict(network_profile_dict)

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