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

1.9 KiB

RealUserTestNetwork

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_test_network import RealUserTestNetwork

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

# convert the object into a dict
real_user_test_network_dict = real_user_test_network_instance.to_dict()
# create an instance of RealUserTestNetwork from a dict
real_user_test_network_from_dict = RealUserTestNetwork.from_dict(real_user_test_network_dict)

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