mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
38 lines
1.8 KiB
Markdown
38 lines
1.8 KiB
Markdown
# BaseAlertSuppressionWindow
|
|
|
|
Alert suppression window.
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**alert_suppression_window_id** | **str** | Unique ID of the alert suppression window. | [optional] [readonly]
|
|
**name** | **str** | Name of the alert suppression window. | [optional]
|
|
**is_enabled** | **bool** | Set to `false` for `disabled`, `true` for `enabled`. | [optional]
|
|
**status** | [**AlertSuppressionWindowState**](AlertSuppressionWindowState.md) | | [optional]
|
|
**start_date** | **datetime** | The date/time when the alert suppression window starts (ISO date-time format). | [optional]
|
|
**duration** | **int** | Duration in seconds the suppression window is active. | [optional]
|
|
**repeat** | [**Repeat**](Repeat.md) | | [optional]
|
|
**end_repeat** | [**EndRepeat**](EndRepeat.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.alerts.models.base_alert_suppression_window import BaseAlertSuppressionWindow
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of BaseAlertSuppressionWindow from a JSON string
|
|
base_alert_suppression_window_instance = BaseAlertSuppressionWindow.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(BaseAlertSuppressionWindow.to_json())
|
|
|
|
# convert the object into a dict
|
|
base_alert_suppression_window_dict = base_alert_suppression_window_instance.to_dict()
|
|
# create an instance of BaseAlertSuppressionWindow from a dict
|
|
base_alert_suppression_window_from_dict = BaseAlertSuppressionWindow.from_dict(base_alert_suppression_window_dict)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|