thousandeyes-sdk-python/dashboards/docs/ApiAgentStatusAgent.md

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 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]