mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 01:25:29 +00:00
67 lines
1.5 KiB
Python
67 lines
1.5 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Alerts API
|
|
|
|
## Overview Manage all alerts, alert rules and alert suppression windows.
|
|
|
|
The version of the OpenAPI document: 7.0.0
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from alerts_api.api.alert_suppression_windows_api import AlertSuppressionWindowsApi
|
|
|
|
|
|
class TestAlertSuppressionWindowsApi(unittest.TestCase):
|
|
"""AlertSuppressionWindowsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = AlertSuppressionWindowsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_create_suppression_windows(self) -> None:
|
|
"""Test case for create_suppression_windows
|
|
|
|
Create alert suppression window
|
|
"""
|
|
pass
|
|
|
|
def test_delete_suppression_window(self) -> None:
|
|
"""Test case for delete_suppression_window
|
|
|
|
Delete alert suppression window
|
|
"""
|
|
pass
|
|
|
|
def test_get_suppression_window_details(self) -> None:
|
|
"""Test case for get_suppression_window_details
|
|
|
|
Retrieve alert suppression window
|
|
"""
|
|
pass
|
|
|
|
def test_get_suppression_windows(self) -> None:
|
|
"""Test case for get_suppression_windows
|
|
|
|
List alert suppression windows
|
|
"""
|
|
pass
|
|
|
|
def test_update_suppression_window(self) -> None:
|
|
"""Test case for update_suppression_window
|
|
|
|
Update alert suppression window
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|