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

TracerouteHop

Properties

Name Type Description Notes
hop int The hop index. [optional] [readonly]
ip_address str IP address of the hop. [optional] [readonly]
prefix str Prefix of IP address shown in CIDR. [optional] [readonly]
asn int Unique number assigned to an organization (also referred to as service provider). [optional] [readonly]
delay int Hop delay [optional] [readonly]
mpls List[str] Hop Multiprotocol Label Switching. [optional] [readonly]
name str The hop name. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.traceroute_hop import TracerouteHop

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

# convert the object into a dict
traceroute_hop_dict = traceroute_hop_instance.to_dict()
# create an instance of TracerouteHop from a dict
traceroute_hop_from_dict = TracerouteHop.from_dict(traceroute_hop_dict)

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