thousandeyes-sdk-python/thousandeyes-sdk-endpoint-agents/docs/AddressProfile.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.4 KiB

AddressProfile

A description of the IPs assigned to this machine.

Properties

Name Type Description Notes
address_type AddressType [optional]
ip_address str IP address of this interface in the network it's currently connected to. [optional]
prefix_length int The number of bits representing the network part of the `ipAddress`. [optional]
gateway str The default gateway for this interface. [optional]
router_hardware_address str The router's MAC address resolved from an ARP request. [optional]

Example

from thousandeyes_sdk.endpoint_agents.models.address_profile import AddressProfile

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

# convert the object into a dict
address_profile_dict = address_profile_instance.to_dict()
# create an instance of AddressProfile from a dict
address_profile_from_dict = AddressProfile.from_dict(address_profile_dict)

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