mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 16:13:55 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.5 KiB
1.5 KiB
TestAgentWithSourceIpRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| agent_id | str | The agent ID. Get `agentId` from `/agents` endpoint. | |
| source_ip_address | str | The Enterprise Agent interface IP address to use as the source for the test. The address must be listed in the agent's `ipAddresses` field, available from the `/agents` endpoint. It is not supported for Cloud Agents or Enterprise Agent clusters. | [optional] |
Example
from thousandeyes_sdk.tests.models.test_agent_with_source_ip_request import TestAgentWithSourceIpRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TestAgentWithSourceIpRequest from a JSON string
test_agent_with_source_ip_request_instance = TestAgentWithSourceIpRequest.from_json(json)
# print the JSON string representation of the object
print(TestAgentWithSourceIpRequest.to_json())
# convert the object into a dict
test_agent_with_source_ip_request_dict = test_agent_with_source_ip_request_instance.to_dict()
# create an instance of TestAgentWithSourceIpRequest from a dict
test_agent_with_source_ip_request_from_dict = TestAgentWithSourceIpRequest.from_dict(test_agent_with_source_ip_request_dict)