thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/AgentBase.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.1 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 thousandeyes_sdk.instant_tests.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_from_dict = AgentBase.from_dict(agent_base_dict)

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