thousandeyes-sdk-python/thousandeyes-sdk-endpoint-instant-tests/docs/EndpointAgentToServerTest.md
Miguel Pragosa b1c34fef7c
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#84)
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: Bruno Marques <107932720+brumarqu-te@users.noreply.github.com>
2024-11-20 08:41:09 +00:00

2.9 KiB

EndpointAgentToServerTest

Properties

Name Type Description Notes
aid str A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. [optional]
links EndpointTestLinks [optional]
agent_selector_config EndpointAgentSelectorConfig [optional]
created_date datetime UTC created date (ISO date-time format). [optional] [readonly]
interval TestInterval [optional]
is_enabled bool Indicates if test is enabled. [optional] [default to True]
is_saved_event bool Indicates if the test is a saved event. [optional] [readonly]
has_path_trace_in_session bool Enables &quot;in session&quot; path trace. When enabled, this option initiates a TCP session with the target server and sends path trace packets within the established TCP session. [optional]
modified_date datetime UTC last modification date (ISO date-time format). [optional] [readonly]
network_measurements bool Enable or disable network measurements. Set to true to enable or false to disable network measurements. [optional] [default to True]
protocol EndpointTestProtocol [optional]
ip_version EndpointIpVersionTemplate [optional]
server str Target domain name or IP address. [optional]
test_id str Each test is assigned a unique ID to access test data from other endpoints. [optional] [readonly]
test_name str Name of the test. [optional]
type str Type of test being queried. [readonly]
tcp_probe_mode TestProbeModeResponse [optional]
port int Port number. [optional] [default to 443]
labels **List[TestLabel]** [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_instant_tests.models.endpoint_agent_to_server_test import EndpointAgentToServerTest

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

# convert the object into a dict
endpoint_agent_to_server_test_dict = endpoint_agent_to_server_test_instance.to_dict()
# create an instance of EndpointAgentToServerTest from a dict
endpoint_agent_to_server_test_from_dict = EndpointAgentToServerTest.from_dict(endpoint_agent_to_server_test_dict)

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