thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/TestAgentWithSourceIpAddress.md
2026-09-04 09:23:07 +00:00

1.5 KiB

TestAgentWithSourceIpAddress

Properties

Name Type Description Notes
agent_id str Identifier for the agent (get `agentId` from `/agents` endpoint). [optional]
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.instant_tests.models.test_agent_with_source_ip_address import TestAgentWithSourceIpAddress

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

# convert the object into a dict
test_agent_with_source_ip_address_dict = test_agent_with_source_ip_address_instance.to_dict()
# create an instance of TestAgentWithSourceIpAddress from a dict
test_agent_with_source_ip_address_from_dict = TestAgentWithSourceIpAddress.from_dict(test_agent_with_source_ip_address_dict)

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