thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/HttpEndpointTestResult.md
Miguel Pragosa cd1d84e1a4
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#106)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-06-20 12:31:19 +01:00

53 lines
3.3 KiB
Markdown

# HttpEndpointTestResult
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**aid** | **str** | A unique identifier associated with your account group. You can retrieve your &#x60;AccountGroupId&#x60; from the &#x60;/account-groups&#x60; endpoint. | [optional]
**test_id** | **str** | Unique ID of endpoint test. | [optional] [readonly]
**agent_id** | **str** | Unique ID of endpoint agent, from &#x60;/endpoint/agents&#x60; 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**](NetworkProfile.md) | | [optional]
**system_metrics** | [**SystemMetrics**](SystemMetrics.md) | | [optional]
**original_target_profile** | [**TargetProfile**](TargetProfile.md) | | [optional]
**vpn_profile** | [**VpnProfile**](VpnProfile.md) | | [optional]
**score** | [**EndpointHttpDataPointScore**](EndpointHttpDataPointScore.md) | | [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**](HttpErrorType.md) | | [optional]
**error_details** | **str** | Error details, if an error were encountered. | [optional] [readonly]
**headers** | [**HttpEndpointTestResultHeaders**](HttpEndpointTestResultHeaders.md) | | [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
```python
from thousandeyes_sdk.endpoint_test_results.models.http_endpoint_test_result import HttpEndpointTestResult
# TODO update the JSON string below
json = "{}"
# create an instance of HttpEndpointTestResult from a JSON string
http_endpoint_test_result_instance = HttpEndpointTestResult.from_json(json)
# print the JSON string representation of the object
print(HttpEndpointTestResult.to_json())
# convert the object into a dict
http_endpoint_test_result_dict = http_endpoint_test_result_instance.to_dict()
# create an instance of HttpEndpointTestResult from a dict
http_endpoint_test_result_from_dict = HttpEndpointTestResult.from_dict(http_endpoint_test_result_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)