mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 08:03:56 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
2.2 KiB
2.2 KiB
TestAgentResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| agent_type | CloudEnterpriseAgentType | ||
| 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] |
| agent_id | str | Unique ID of the agent. | [optional] [readonly] |
| agent_name | str | Name of the agent. | [optional] |
| location | str | Location of the agent. | [optional] [readonly] |
| country_id | str | 2-digit ISO country code | [optional] [readonly] |
| coordinates | Coordinates | [optional] | |
| network_provider_info | SimpleAgentAllOfNetworkProviderInfo | [optional] | |
| enabled | bool | Flag indicating if the agent is enabled. | [optional] |
| verify_ssl_certificates | bool | Flag indicating if has normal SSL operations or if instead it's set to ignore SSL errors on browserbot-based tests. | [optional] [readonly] |
| prefix | str | Prefix containing agents public IP address. | [optional] [readonly] |
| source_ip_address | str | IP address of the agent interface used as the source for the test. Returned when a source interface is selected. | [optional] [readonly] |
Example
from thousandeyes_sdk.instant_tests.models.test_agent_response import TestAgentResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TestAgentResponse from a JSON string
test_agent_response_instance = TestAgentResponse.from_json(json)
# print the JSON string representation of the object
print(TestAgentResponse.to_json())
# convert the object into a dict
test_agent_response_dict = test_agent_response_instance.to_dict()
# create an instance of TestAgentResponse from a dict
test_agent_response_from_dict = TestAgentResponse.from_dict(test_agent_response_dict)