thousandeyes-sdk-python/agents_api/docs/AgentDetail.md
2023-12-11 09:29:15 +00:00

2.0 KiB
Raw Blame History

AgentDetail

Properties

Name Type Description Notes
ip_addresses List[str] Array of private IP addresses. [optional] [readonly]
public_ip_addresses List[str] Array of public IP addresses. [optional] [readonly]
network str Network (including ASN) of agents public IP. [optional] [readonly]
agent_id str Unique ID of the agent. [optional] [readonly]
agent_name str Name of the agent. [optional]
agent_type CloudEnterpriseAgentType [optional]
location str Location of the agent. [optional] [readonly]
country_id str 2-digit ISO country code [optional] [readonly]
enabled bool Flag indicating if the agent is enabled. [optional]
verify_ssl_certificates bool Flag indicating if has normal SSL operations or if instead it's set to ignore SSL errors on browserbot-based tests. [optional] [readonly]
tests **List[SimpleTest]** List of tests. See `/tests` for more information. [optional]
labels **List[Labels]** List of labels - see `/labels` for more information. [optional] [readonly]

Example

from agents_api.models.agent_detail import AgentDetail

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

# convert the object into a dict
agent_detail_dict = agent_detail_instance.to_dict()
# create an instance of AgentDetail from a dict
agent_detail_form_dict = agent_detail.from_dict(agent_detail_dict)

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