thousandeyes-sdk-python/endpoint/tests_api/docs/GetEndpointHttpserverTestDetail200Response.md
2023-12-11 09:29:15 +00:00

4.7 KiB

GetEndpointHttpserverTestDetail200Response

Properties

Name Type Description Notes
links SelfLinksLinks [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] [readonly] [default to True]
is_saved_event bool Indicates if the test is a saved event. [optional] [readonly]
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]
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]
port int Port number, if not specified, the port is selected based on a protocol (HTTP 80, HTTPS 443). [optional]
protocol EndpointTestProtocol [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]
aid EndpointTestAid [optional]
test_name str Name of the test. [optional]
type EndpointHttpServerType [optional]
auth_type EndpointTestAuthType [optional]
http_time_limit int Maximum amount of time in milliseconds the agents wait before a request times out. [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]
content_regex str Content regex, this field does not require escaping. [optional]
follow_redirects bool To disable following HTTP/301 or HTTP/302 redirect directives, set this parameter to false. [optional] [default to True]
http_target_time int Target time for HTTP server completion, specified in milliseconds. [optional]
http_version int HTTP protocol version. Set to '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. [optional] [default to 2]
post_body str Enter the body for the HTTP POST request in this field. No special escaping is necessary. If the post body is provided with content, the `requestMethod` is automatically set to POST. [optional]
ssl_version str Reflects the verbose SSL protocol version used by a test. [optional] [readonly]
use_ntlm bool Set to true to use NTLM, false to use Basic Authentication. Requires username and password to be set. [optional]
user_agent str User-agent string to be provided during the test. [optional]

Example

from tests_api.models.get_endpoint_httpserver_test_detail200_response import GetEndpointHttpserverTestDetail200Response

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

# convert the object into a dict
get_endpoint_httpserver_test_detail200_response_dict = get_endpoint_httpserver_test_detail200_response_instance.to_dict()
# create an instance of GetEndpointHttpserverTestDetail200Response from a dict
get_endpoint_httpserver_test_detail200_response_form_dict = get_endpoint_httpserver_test_detail200_response.from_dict(get_endpoint_httpserver_test_detail200_response_dict)

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