thousandeyes-sdk-python/thousandeyes-sdk-endpoint-instant-tests/docs/EndpointHttpServerInstantTest.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

3.4 KiB

EndpointHttpServerInstantTest

Properties

Name Type Description Notes
agent_selector_type EndpointTestAgentSelectorType
agents List[str] List of endpoint agent IDs (obtained from `/endpoint/agents` endpoint). Required when `agentSelectorType` is set to `specific-agent`. [optional]
has_ping bool Optional flag indicating if the test should run ping. [optional] [default to True]
has_traceroute bool Optional flag indicating if the test should run traceroute. [optional] [default to True]
endpoint_agent_labels List[str] List of endpoint agent label IDs (obtained from `/endpoint/labels` endpoint), required when `agentSelectorType` is set to `agent-labels`. [optional]
max_machines int Maximum number of agents which can execute the test.
port int Port number, if not specified, the port is selected based on a protocol (HTTP 80, HTTPS 443). [optional]
test_name str Name of the test.
auth_type EndpointTestAuthType [optional]
has_path_trace_in_session bool Enables "in session" 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]
http_time_limit int Maximum amount of time in milliseconds the agents wait before a request times out.
protocol EndpointTestProtocol [optional]
url str Test target URL. Optionally, you can specify a protocol (http or https). If no protocol is provided, the default `https` protocol is used.
username str Username for Basic/NTLM authentication. [optional]
ssl_version_id TestSslVersionId
tcp_probe_mode TestProbeModeResponse [optional]
verify_certificate bool Flag indicating if a certificate should be verified.
target_response_time int Response time target in milliseconds. Affects the colors of agents and legends on the view page. The value is compared with actual response time in order to determine the color scale (from green to red).
password str Password for Basic/NTLM authentication. [optional]

Example

from thousandeyes_sdk.endpoint_instant_tests.models.endpoint_http_server_instant_test import EndpointHttpServerInstantTest

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

# convert the object into a dict
endpoint_http_server_instant_test_dict = endpoint_http_server_instant_test_instance.to_dict()
# create an instance of EndpointHttpServerInstantTest from a dict
endpoint_http_server_instant_test_from_dict = EndpointHttpServerInstantTest.from_dict(endpoint_http_server_instant_test_dict)

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