thousandeyes-sdk-python/thousandeyes-sdk-tests/docs/AgentInterfaces.md
Shahid Hussain Khan d10dffc0a2
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#39)
Co-authored-by: API Team <api-team@thousandeyes.com>
2024-08-02 10:04:08 +01:00

1.0 KiB

AgentInterfaces

Properties

Name Type Description Notes
ip_address str IP address of the agent interface. [optional]
agent_id str The agent ID of the enterprise agent for the test. [optional]

Example

from thousandeyes_sdk.tests.models.agent_interfaces import AgentInterfaces

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

# convert the object into a dict
agent_interfaces_dict = agent_interfaces_instance.to_dict()
# create an instance of AgentInterfaces from a dict
agent_interfaces_from_dict = AgentInterfaces.from_dict(agent_interfaces_dict)

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