thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/EndpointHttpServerBaseTest.md
2024-09-20 09:48:48 +00:00

2.0 KiB

EndpointHttpServerBaseTest

Properties

Name Type Description Notes
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. [optional] [default to 5000]
protocol EndpointTestProtocol [optional]
username str Username for Basic/NTLM authentication. [optional]
ssl_version_id TestSslVersionId [optional]
tcp_probe_mode TestProbeModeResponse [optional]
verify_certificate bool Flag indicating if a certificate should be verified. [optional] [default to True]
url str The test target URL. [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.endpoint_http_server_base_test import EndpointHttpServerBaseTest

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

# convert the object into a dict
endpoint_http_server_base_test_dict = endpoint_http_server_base_test_instance.to_dict()
# create an instance of EndpointHttpServerBaseTest from a dict
endpoint_http_server_base_test_from_dict = EndpointHttpServerBaseTest.from_dict(endpoint_http_server_base_test_dict)

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