thousandeyes-sdk-python/admin_api/docs/AgentBase.md
2023-12-07 10:28:08 +00:00

1.0 KiB
Raw Blame History

AgentBase

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]

Example

from admin_api.models.agent_base import AgentBase

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

# convert the object into a dict
agent_base_dict = agent_base_instance.to_dict()
# create an instance of AgentBase from a dict
agent_base_form_dict = agent_base.from_dict(agent_base_dict)

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