pulumi-azure-native 2.78.0__py3-none-any.whl → 2.78.0a1734002667__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +16 -0
- pulumi_azure_native/alertsmanagement/__init__.py +6 -0
- pulumi_azure_native/alertsmanagement/action_rule_by_name.py +1 -1
- pulumi_azure_native/alertsmanagement/alert_processing_rule_by_name.py +5 -1
- pulumi_azure_native/alertsmanagement/get_alert_processing_rule_by_name.py +4 -0
- pulumi_azure_native/alertsmanagement/v20190505preview/action_rule_by_name.py +1 -1
- pulumi_azure_native/alertsmanagement/v20210808/alert_processing_rule_by_name.py +1 -1
- pulumi_azure_native/alertsmanagement/v20230501preview/__init__.py +12 -0
- pulumi_azure_native/alertsmanagement/v20230501preview/_enums.py +80 -0
- pulumi_azure_native/alertsmanagement/v20230501preview/_inputs.py +868 -0
- pulumi_azure_native/alertsmanagement/v20230501preview/alert_processing_rule_by_name.py +258 -0
- pulumi_azure_native/alertsmanagement/v20230501preview/get_alert_processing_rule_by_name.py +171 -0
- pulumi_azure_native/alertsmanagement/v20230501preview/outputs.py +795 -0
- pulumi_azure_native/alertsmanagement/v20240301preview/__init__.py +12 -0
- pulumi_azure_native/alertsmanagement/v20240301preview/_enums.py +88 -0
- pulumi_azure_native/alertsmanagement/v20240301preview/_inputs.py +965 -0
- pulumi_azure_native/alertsmanagement/v20240301preview/alert_processing_rule_by_name.py +258 -0
- pulumi_azure_native/alertsmanagement/v20240301preview/get_alert_processing_rule_by_name.py +171 -0
- pulumi_azure_native/alertsmanagement/v20240301preview/outputs.py +877 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.78.0.dist-info → pulumi_azure_native-2.78.0a1734002667.dist-info}/METADATA +3 -3
- {pulumi_azure_native-2.78.0.dist-info → pulumi_azure_native-2.78.0a1734002667.dist-info}/RECORD +24 -12
- {pulumi_azure_native-2.78.0.dist-info → pulumi_azure_native-2.78.0a1734002667.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.78.0.dist-info → pulumi_azure_native-2.78.0a1734002667.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from ... import _utilities
|
|
6
|
+
import typing
|
|
7
|
+
# Export this package's modules as members:
|
|
8
|
+
from ._enums import *
|
|
9
|
+
from .alert_processing_rule_by_name import *
|
|
10
|
+
from .get_alert_processing_rule_by_name import *
|
|
11
|
+
from ._inputs import *
|
|
12
|
+
from . import outputs
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
'ActionType',
|
|
9
|
+
'DaysOfWeek',
|
|
10
|
+
'Field',
|
|
11
|
+
'NotificationsForCorrelatedAlerts',
|
|
12
|
+
'Operator',
|
|
13
|
+
'RecurrenceType',
|
|
14
|
+
'UpdateType',
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class ActionType(str, Enum):
|
|
19
|
+
"""
|
|
20
|
+
Action that should be applied.
|
|
21
|
+
"""
|
|
22
|
+
ADD_ACTION_GROUPS = "AddActionGroups"
|
|
23
|
+
REMOVE_ALL_ACTION_GROUPS = "RemoveAllActionGroups"
|
|
24
|
+
CORRELATE_ALERTS = "CorrelateAlerts"
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class DaysOfWeek(str, Enum):
|
|
28
|
+
"""
|
|
29
|
+
Days of week.
|
|
30
|
+
"""
|
|
31
|
+
SUNDAY = "Sunday"
|
|
32
|
+
MONDAY = "Monday"
|
|
33
|
+
TUESDAY = "Tuesday"
|
|
34
|
+
WEDNESDAY = "Wednesday"
|
|
35
|
+
THURSDAY = "Thursday"
|
|
36
|
+
FRIDAY = "Friday"
|
|
37
|
+
SATURDAY = "Saturday"
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class Field(str, Enum):
|
|
41
|
+
"""
|
|
42
|
+
Field for a given condition.
|
|
43
|
+
"""
|
|
44
|
+
SEVERITY = "Severity"
|
|
45
|
+
MONITOR_SERVICE = "MonitorService"
|
|
46
|
+
MONITOR_CONDITION = "MonitorCondition"
|
|
47
|
+
SIGNAL_TYPE = "SignalType"
|
|
48
|
+
TARGET_RESOURCE_TYPE = "TargetResourceType"
|
|
49
|
+
TARGET_RESOURCE = "TargetResource"
|
|
50
|
+
TARGET_RESOURCE_GROUP = "TargetResourceGroup"
|
|
51
|
+
ALERT_RULE_ID = "AlertRuleId"
|
|
52
|
+
ALERT_RULE_NAME = "AlertRuleName"
|
|
53
|
+
DESCRIPTION = "Description"
|
|
54
|
+
ALERT_CONTEXT = "AlertContext"
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class NotificationsForCorrelatedAlerts(str, Enum):
|
|
58
|
+
"""
|
|
59
|
+
Indicates how to handle child alerts notifications.
|
|
60
|
+
"""
|
|
61
|
+
NOTIFY_ALWAYS = "NotifyAlways"
|
|
62
|
+
SUPPRESS_ALWAYS = "SuppressAlways"
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
class Operator(str, Enum):
|
|
66
|
+
"""
|
|
67
|
+
Operator for a given condition.
|
|
68
|
+
"""
|
|
69
|
+
EQUALS = "Equals"
|
|
70
|
+
NOT_EQUALS = "NotEquals"
|
|
71
|
+
CONTAINS = "Contains"
|
|
72
|
+
DOES_NOT_CONTAIN = "DoesNotContain"
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
class RecurrenceType(str, Enum):
|
|
76
|
+
"""
|
|
77
|
+
Specifies when the recurrence should be applied.
|
|
78
|
+
"""
|
|
79
|
+
DAILY = "Daily"
|
|
80
|
+
WEEKLY = "Weekly"
|
|
81
|
+
MONTHLY = "Monthly"
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class UpdateType(str, Enum):
|
|
85
|
+
"""
|
|
86
|
+
The type of update that needs to be performed.
|
|
87
|
+
"""
|
|
88
|
+
TIME_BASED = "timeBased"
|