thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/NetworkEventGrouping.md
Shahid Hussain Khan 09e9385636
Some checks failed
Python CI / build (push) Has been cancelled
Add Event detection API (#43)
* [GitHub Bot] Generated python SDK

* Updated README

---------

Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: Miguel Pragosa <mpragosa@thousandeyes.com>
2024-08-11 10:21:46 +01:00

1.3 KiB

NetworkEventGrouping

Properties

Name Type Description Notes
source_asn int AS number of the source network (for network-pop and network events). [optional] [readonly]
dest_asn int AS number of the destination network (for network events). [optional] [readonly]
source_country_code str The source network's country code (for network-pop and network events). [optional] [readonly]

Example

from thousandeyes_sdk.event_detection.models.network_event_grouping import NetworkEventGrouping

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

# convert the object into a dict
network_event_grouping_dict = network_event_grouping_instance.to_dict()
# create an instance of NetworkEventGrouping from a dict
network_event_grouping_from_dict = NetworkEventGrouping.from_dict(network_event_grouping_dict)

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