mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.9 KiB
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)