thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/HttpTestResult.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.0 KiB

HttpTestResult

Properties

Name Type Description Notes
aid str A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. [optional]
agent_id str Unique ID of endpoint agent, from `/endpoint/agents` endpoint. [optional] [readonly]
round_id int Epoch time (seconds) indicating the start time of the round. [optional] [readonly]
server_ip str IP address of destination server. [optional] [readonly]
network_profile NetworkProfile [optional]
system_metrics SystemMetrics [optional]
original_target_profile TargetProfile [optional]
vpn_profile VpnProfile [optional]
connect_time int Time required to establish a TCP connection to the server in milliseconds. [optional] [readonly]
dns_time int Time required to resolve DNS in milliseconds. [optional] [readonly]
error_type HttpErrorType [optional]
error_details str Error details, if an error were encountered. [optional] [readonly]
headers HttpTestResultHeaders [optional]
num_redirects int Number of redirects. [optional] [readonly]
receive_time int Elapsed time between first and last byte of response in milliseconds. [optional] [readonly]
redirect_time int Cumulative redirect timing in milliseconds. [optional] [readonly]
response_code int HTTP response code. [optional] [readonly]
response_time int Time to first byte in milliseconds. [optional] [readonly]
ssl_time int Time to negotiate SSL/TLS in milliseconds. [optional] [readonly]
total_time int Total time is the response time + receive time. [optional] [readonly]
wait_time int Time elapsed between completion of request and first byte of response in milliseconds. [optional] [readonly]
wire_size int Size of content in bytes. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.http_test_result import HttpTestResult

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

# convert the object into a dict
http_test_result_dict = http_test_result_instance.to_dict()
# create an instance of HttpTestResult from a dict
http_test_result_from_dict = HttpTestResult.from_dict(http_test_result_dict)

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