mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
2.1 KiB
2.1 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 | TestProbeModeResponse | [optional] | |
| verify_certificate | bool | Flag indicating if a certificate should be verified. | [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)