Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.79 KB

File metadata and controls

40 lines (31 loc) · 1.79 KB

ApplicationProfile

Properties

Name Type Description Notes
active bool Indicates whether the profile is enabled or not. [optional]
traffic_settings TrafficSettings [optional]
id str [optional]
links List[APILink] [optional]
applications List[Application] [optional]
default_network_mapping NetworkMapping [optional]
name str
objectives_and_timeline ObjectivesAndTimeline [optional]
add_applications List[ExternalResourceInfo] [optional]
modify_excluded_dut_recursively List[UpdateNetworkMapping] [optional]
modify_tags_recursively List[UpdateNetworkMapping] [optional]
reset_tags_to_default List[bytearray] [optional]

Example

from cyperf.models.application_profile import ApplicationProfile

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

# convert the object into a dict
application_profile_dict = application_profile_instance.to_dict()
# create an instance of ApplicationProfile from a dict
application_profile_from_dict = ApplicationProfile.from_dict(application_profile_dict)

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