mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.2 KiB
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 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)