thousandeyes-sdk-python/dashboards_api/docs/ApiDashboardAsw.md
2023-12-11 09:29:15 +00:00

1.4 KiB

ApiDashboardAsw

Alert suppression window shown in a widget.

Properties

Name Type Description Notes
id str Identifier of the alert suppression window. [optional]
name str Name of the alert suppression window. [optional]
test_ids List[str] [optional]
start_times List[datetime] [optional]
duration_in_seconds int [optional]
repeat AswRepeat [optional]
repeat_every int [optional]
repeat_unit AswRepeatUnit [optional]

Example

from dashboards_api.models.api_dashboard_asw import ApiDashboardAsw

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

# convert the object into a dict
api_dashboard_asw_dict = api_dashboard_asw_instance.to_dict()
# create an instance of ApiDashboardAsw from a dict
api_dashboard_asw_form_dict = api_dashboard_asw.from_dict(api_dashboard_asw_dict)

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