thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/ApiAgentStatusIpInfo.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.2 KiB

ApiAgentStatusIpInfo

IP information of the agent.

Properties

Name Type Description Notes
public_ip str Public IP of the agent. [optional]
private_ip str Private IP of the agent. [optional]
ipv6 str [optional]
operative_system_version str [optional]

Example

from thousandeyes_sdk.dashboards.models.api_agent_status_ip_info import ApiAgentStatusIpInfo

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

# convert the object into a dict
api_agent_status_ip_info_dict = api_agent_status_ip_info_instance.to_dict()
# create an instance of ApiAgentStatusIpInfo from a dict
api_agent_status_ip_info_from_dict = ApiAgentStatusIpInfo.from_dict(api_agent_status_ip_info_dict)

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