thousandeyes-sdk-python/thousandeyes-sdk-alerts/docs/Asn.md
Ting 99f801db6d
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#113)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-09-16 14:58:43 +01:00

941 B

Asn

Autonomous System Number (ASN) information for network outage alerts.

Properties

Name Type Description Notes
id str ASN identifier. [optional]
name str Autonomous system name. [optional]
type str Resource type. [optional]

Example

from thousandeyes_sdk.alerts.models.asn import Asn

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

# convert the object into a dict
asn_dict = asn_instance.to_dict()
# create an instance of Asn from a dict
asn_from_dict = Asn.from_dict(asn_dict)

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