mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
2.3 KiB
2.3 KiB
LocalNetworkTopologyResultBase
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] |
Example
from thousandeyes_sdk.endpoint_test_results.models.local_network_topology_result_base import LocalNetworkTopologyResultBase
# TODO update the JSON string below
json = "{}"
# create an instance of LocalNetworkTopologyResultBase from a JSON string
local_network_topology_result_base_instance = LocalNetworkTopologyResultBase.from_json(json)
# print the JSON string representation of the object
print(LocalNetworkTopologyResultBase.to_json())
# convert the object into a dict
local_network_topology_result_base_dict = local_network_topology_result_base_instance.to_dict()
# create an instance of LocalNetworkTopologyResultBase from a dict
local_network_topology_result_base_from_dict = LocalNetworkTopologyResultBase.from_dict(local_network_topology_result_base_dict)