mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.1 KiB
1.1 KiB
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 agent’s public IP. | [optional] [readonly] |
Example
from thousandeyes_sdk.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)