thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/ApiAgentStatusAgent.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

ApiAgentStatusAgent

Agent shown in agent status widget.

Properties

Name Type Description Notes
agent_id str Identifier of the agent. [optional]
status EnterpriseAgentState [optional]
ip_info ApiAgentStatusIpInfo [optional]
agent_name str Name of the agent [optional]
location ApiAgentLocation [optional]

Example

from thousandeyes_sdk.dashboards.models.api_agent_status_agent import ApiAgentStatusAgent

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

# convert the object into a dict
api_agent_status_agent_dict = api_agent_status_agent_instance.to_dict()
# create an instance of ApiAgentStatusAgent from a dict
api_agent_status_agent_from_dict = ApiAgentStatusAgent.from_dict(api_agent_status_agent_dict)

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