thousandeyes-sdk-python/thousandeyes-sdk-alerts/docs/BaseAlert.md
2024-09-09 13:37:12 +00:00

1.9 KiB

BaseAlert

Properties

Name Type Description Notes
id str A unique ID for each individual alert occurrence. [optional] [readonly]
alert_type AlertType [optional]
start_date datetime (Optional) When passing `window` or `startDate` parameter, the client will also receive the `startDate` field indicating the UTC start date of the data's time range being retrieved (ISO date-time format). [optional] [readonly]
end_date datetime (Optional) When passing `window` or `endDate` parameter, the client will also receive the `endDate` field indicating the UTC end date of the data's time range being retrieved (ISO date-time format). [optional] [readonly]
violation_count int Number of sources that meet the alert criteria. [optional]
duration int Duration in seconds the alert was active [optional]
suppressed bool Indicates whether the alert is currently suppressed by a real-time ASW. [optional]
meta AlertMeta [optional]
links AlertLinks [optional]

Example

from thousandeyes_sdk.alerts.models.base_alert import BaseAlert

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

# convert the object into a dict
base_alert_dict = base_alert_instance.to_dict()
# create an instance of BaseAlert from a dict
base_alert_from_dict = BaseAlert.from_dict(base_alert_dict)

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