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>
33 lines
941 B
Markdown
33 lines
941 B
Markdown
# 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
|
|
|
|
```python
|
|
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|