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

1.2 KiB

ApiAgentStatusSummary

Summary of the agent status.

Properties

Name Type Description Notes
online int Shows the number of agents with an online status. [optional]
offline int Shows the number of agents with an offline status. [optional]
disabled int Shows the number of agents with disabled status. [optional]

Example

from dashboards.models.api_agent_status_summary import ApiAgentStatusSummary

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

# convert the object into a dict
api_agent_status_summary_dict = api_agent_status_summary_instance.to_dict()
# create an instance of ApiAgentStatusSummary from a dict
api_agent_status_summary_from_dict = ApiAgentStatusSummary.from_dict(api_agent_status_summary_dict)

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