thousandeyes-sdk-python/endpoint/instant_tests_api/docs/EndpointHttpServerBaseTest.md
2023-12-11 09:29:15 +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]
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. [optional]
username str Username for Basic/NTLM authentication. [optional]
ssl_version_id TestSslVersionId [optional]
tcp_probe_mode TestProbeMode [optional]
verify_certificate bool Flag indicating if a certificate should be verified. [optional]

Example

from instant_tests_api.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_form_dict = endpoint_http_server_base_test.from_dict(endpoint_http_server_base_test_dict)

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