thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/LocalNetworkTopologyResult.md
2024-12-11 20:26:06 +00:00

2.6 KiB

LocalNetworkTopologyResult

Properties

Name Type Description Notes
agent_id str Unique ID of endpoint agent, from `/endpoint/agents` endpoint. [optional] [readonly]
var_date datetime UTC date when endpoint network topology took place (ISO date-time format). [optional] [readonly]
network_topology_id str Network topology ID. Each network topology occurrence has a unique ID. [optional] [readonly]
round_id int Epoch time (seconds) indicating the start time of the round. [optional] [readonly]
target str IP of the target the network topology was performed against. This is typically a default gateway, proxy or VPN endpoint. [optional] [readonly]
target_port int Port of the target the network topology was performed against. [optional] [readonly]
type NetworkTopologyType [optional]
icmp_ping NetworkPing [optional]
is_icmp_blocked bool Set to `true` if network target is blocking ICMP echo (ping) queries. [optional] [readonly]
tcp_connect TcpConnect [optional]
system_metrics SystemMetrics [optional]
system_metric_details SystemMetricDetails [optional]
coordinates RealUserEndpointTestCoordinates [optional]
network_profile NetworkProfile [optional]
icmp_traceroute Traceroute [optional]
icmp_traceroutes **List[Traceroute]** [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.local_network_topology_result import LocalNetworkTopologyResult

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

# convert the object into a dict
local_network_topology_result_dict = local_network_topology_result_instance.to_dict()
# create an instance of LocalNetworkTopologyResult from a dict
local_network_topology_result_from_dict = LocalNetworkTopologyResult.from_dict(local_network_topology_result_dict)

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