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

31 lines
1.0 KiB
Markdown

# 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
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)