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
* [GitHub Bot] Generated python SDK * Updated README --------- Co-authored-by: API Team <api-team@thousandeyes.com> Co-authored-by: Miguel Pragosa <mpragosa@thousandeyes.com>
991 B
991 B
DnsEventGrouping
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| root_domain | str | Root domain name (for dns events). | [optional] [readonly] |
Example
from thousandeyes_sdk.event_detection.models.dns_event_grouping import DnsEventGrouping
# TODO update the JSON string below
json = "{}"
# create an instance of DnsEventGrouping from a JSON string
dns_event_grouping_instance = DnsEventGrouping.from_json(json)
# print the JSON string representation of the object
print(DnsEventGrouping.to_json())
# convert the object into a dict
dns_event_grouping_dict = dns_event_grouping_instance.to_dict()
# create an instance of DnsEventGrouping from a dict
dns_event_grouping_from_dict = DnsEventGrouping.from_dict(dns_event_grouping_dict)