thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/RealUserEndpointTestNetwork.md
2024-09-25 12:41:31 +00:00

2.0 KiB

RealUserEndpointTestNetwork

Contains details about network profile and conditions during session.

Properties

Name Type Description Notes
network_profile NetworkProfile [optional]
system_metrics SystemMetrics [optional]
gateway_ping GatewayNetworkPing [optional]
ping TargetNetworkPing [optional]
traceroute TargetTraceroute [optional]
connect_rtt float Represents the number of milliseconds required to establish TCP connectivity with the target. [optional] [readonly]
is_icmp_blocked bool Set to `true` if network target is blocking ICMP echo (ping) queries. [optional] [readonly]
errors List[str] Array of string representing possible network errors. [optional] [readonly]
vpn_ping VpnNetworkPing [optional]
vpn_traceroute VpnTraceroute [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.real_user_endpoint_test_network import RealUserEndpointTestNetwork

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

# convert the object into a dict
real_user_endpoint_test_network_dict = real_user_endpoint_test_network_instance.to_dict()
# create an instance of RealUserEndpointTestNetwork from a dict
real_user_endpoint_test_network_from_dict = RealUserEndpointTestNetwork.from_dict(real_user_endpoint_test_network_dict)

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