thousandeyes-sdk-python/thousandeyes-sdk-endpoint-agents/docs/InterfaceProfile.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.3 KiB

InterfaceProfile

Properties

Name Type Description Notes
interface_name str [optional]
address_profiles **List[AddressProfile]** [optional]
hardware_type InterfaceHardwareType [optional]
ethernet_profile EthernetProfile [optional]
wireless_profile WirelessProfile [optional]

Example

from thousandeyes_sdk.endpoint_agents.models.interface_profile import InterfaceProfile

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

# convert the object into a dict
interface_profile_dict = interface_profile_instance.to_dict()
# create an instance of InterfaceProfile from a dict
interface_profile_from_dict = InterfaceProfile.from_dict(interface_profile_dict)

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