Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

UpdateNetworkMapping

Properties

Name Type Description Notes
client_network_tags List[str] [optional]
excluded_dut_list List[str] [optional]
select_tags bool [optional]
server_network_tags List[str] [optional]

Example

from cyperf.models.update_network_mapping import UpdateNetworkMapping

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

# convert the object into a dict
update_network_mapping_dict = update_network_mapping_instance.to_dict()
# create an instance of UpdateNetworkMapping from a dict
update_network_mapping_from_dict = UpdateNetworkMapping.from_dict(update_network_mapping_dict)

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