mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
941 B
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)