thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/DnsEventGrouping.md
2024-08-11 09:06:01 +00:00

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)

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