thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/DnsServerEventDetail.md
api-team-automation[bot] c6ae90df0d
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#181)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-08-06 14:10:18 +01:00

2.5 KiB

DnsServerEventDetail

Properties

Name Type Description Notes
id str A unique ID for each event. [optional] [readonly]
type_name str Event type name. Examples include, Local Agent Issue, Network Path Issue, Network Outage, DNS Issue, Server Issue, and Proxy Issue. [optional] [readonly]
state EventState [optional]
start_date datetime The start date and time (in UTC, ISO 8601 format) when the event was first detected. [optional] [readonly]
end_date datetime The end date and time (in UTC, ISO 8601 format) when the event was resolved (due to timeout). This value is null for &quot;ongoing&quot; (active) events and is populated once the event is resolved. [optional] [readonly]
severity EventAlertSeverity [optional]
aid str A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. [optional]
summary str A brief summary describing the cause of the event. [optional] [readonly]
agent_type EventAgentType [optional]
affected_tests AffectedTests [optional]
affected_targets AffectedTargets [optional]
affected_agents AffectedAgents [optional]
cause List[str] The cause of the error. [optional]
links SelfLinks [optional]
type str DNS server event type.
grouping DnsServerEventGrouping [optional]

Example

from thousandeyes_sdk.event_detection.models.dns_server_event_detail import DnsServerEventDetail

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

# convert the object into a dict
dns_server_event_detail_dict = dns_server_event_detail_instance.to_dict()
# create an instance of DnsServerEventDetail from a dict
dns_server_event_detail_from_dict = DnsServerEventDetail.from_dict(dns_server_event_detail_dict)

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