pulumi-azure-native 3.8.0a1755549300__py3-none-any.whl → 3.8.0a1755616596__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/monitor/_enums.py +1 -1
- pulumi_azure_native/monitor/_inputs.py +23 -3
- pulumi_azure_native/monitor/get_scheduled_query_rule.py +6 -6
- pulumi_azure_native/monitor/outputs.py +16 -2
- pulumi_azure_native/monitor/scheduled_query_rule.py +12 -12
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1755616596.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1755616596.dist-info}/RECORD +10 -10
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1755616596.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1755616596.dist-info}/top_level.txt +0 -0
|
@@ -224,7 +224,7 @@ class Kind(builtins.str, Enum):
|
|
|
224
224
|
Indicates the type of scheduled query rule. The default is LogAlert.
|
|
225
225
|
"""
|
|
226
226
|
LOG_ALERT = "LogAlert"
|
|
227
|
-
|
|
227
|
+
SIMPLE_LOG_ALERT = "SimpleLogAlert"
|
|
228
228
|
LOG_TO_METRIC = "LogToMetric"
|
|
229
229
|
|
|
230
230
|
|
|
@@ -1930,7 +1930,7 @@ if not MYPY:
|
|
|
1930
1930
|
"""
|
|
1931
1931
|
alert_sensitivity: NotRequired[pulumi.Input[builtins.str]]
|
|
1932
1932
|
"""
|
|
1933
|
-
The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant
|
|
1933
|
+
The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant only for dynamic threshold rules of the kind LogAlert.
|
|
1934
1934
|
"""
|
|
1935
1935
|
criterion_type: NotRequired[pulumi.Input[Union[builtins.str, 'CriterionType']]]
|
|
1936
1936
|
"""
|
|
@@ -1956,6 +1956,10 @@ if not MYPY:
|
|
|
1956
1956
|
"""
|
|
1957
1957
|
The name of the metric to be sent. Relevant and required only for rules of the kind LogToMetric.
|
|
1958
1958
|
"""
|
|
1959
|
+
min_recurrence_count: NotRequired[pulumi.Input[builtins.float]]
|
|
1960
|
+
"""
|
|
1961
|
+
The minimum results count that should be found for triggering an alert. Relevant only for rules of the kind SimpleLogAlert.
|
|
1962
|
+
"""
|
|
1959
1963
|
operator: NotRequired[pulumi.Input[Union[builtins.str, 'ConditionOperator']]]
|
|
1960
1964
|
"""
|
|
1961
1965
|
The criteria operator. Relevant and required only for rules of the kind LogAlert.
|
|
@@ -1989,6 +1993,7 @@ class ConditionArgs:
|
|
|
1989
1993
|
ignore_data_before: Optional[pulumi.Input[builtins.str]] = None,
|
|
1990
1994
|
metric_measure_column: Optional[pulumi.Input[builtins.str]] = None,
|
|
1991
1995
|
metric_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
1996
|
+
min_recurrence_count: Optional[pulumi.Input[builtins.float]] = None,
|
|
1992
1997
|
operator: Optional[pulumi.Input[Union[builtins.str, 'ConditionOperator']]] = None,
|
|
1993
1998
|
query: Optional[pulumi.Input[builtins.str]] = None,
|
|
1994
1999
|
resource_id_column: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1996,13 +2001,14 @@ class ConditionArgs:
|
|
|
1996
2001
|
time_aggregation: Optional[pulumi.Input[Union[builtins.str, 'TimeAggregation']]] = None):
|
|
1997
2002
|
"""
|
|
1998
2003
|
A condition of the scheduled query rule.
|
|
1999
|
-
:param pulumi.Input[builtins.str] alert_sensitivity: The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant
|
|
2004
|
+
:param pulumi.Input[builtins.str] alert_sensitivity: The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant only for dynamic threshold rules of the kind LogAlert.
|
|
2000
2005
|
:param pulumi.Input[Union[builtins.str, 'CriterionType']] criterion_type: Specifies the type of threshold criteria
|
|
2001
2006
|
:param pulumi.Input[Sequence[pulumi.Input['DimensionArgs']]] dimensions: List of Dimensions conditions
|
|
2002
2007
|
:param pulumi.Input['ConditionFailingPeriodsArgs'] failing_periods: The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
|
|
2003
2008
|
:param pulumi.Input[builtins.str] ignore_data_before: Use this option to set the date from which to start learning the metric historical data and calculate the dynamic thresholds (in ISO8601 format). Relevant only for dynamic threshold rules of the kind LogAlert.
|
|
2004
2009
|
:param pulumi.Input[builtins.str] metric_measure_column: The column containing the metric measure number. Relevant only for rules of the kind LogAlert.
|
|
2005
2010
|
:param pulumi.Input[builtins.str] metric_name: The name of the metric to be sent. Relevant and required only for rules of the kind LogToMetric.
|
|
2011
|
+
:param pulumi.Input[builtins.float] min_recurrence_count: The minimum results count that should be found for triggering an alert. Relevant only for rules of the kind SimpleLogAlert.
|
|
2006
2012
|
:param pulumi.Input[Union[builtins.str, 'ConditionOperator']] operator: The criteria operator. Relevant and required only for rules of the kind LogAlert.
|
|
2007
2013
|
:param pulumi.Input[builtins.str] query: Log query alert
|
|
2008
2014
|
:param pulumi.Input[builtins.str] resource_id_column: The column containing the resource id. The content of the column must be a uri formatted as resource id. Relevant only for rules of the kind LogAlert.
|
|
@@ -2023,6 +2029,8 @@ class ConditionArgs:
|
|
|
2023
2029
|
pulumi.set(__self__, "metric_measure_column", metric_measure_column)
|
|
2024
2030
|
if metric_name is not None:
|
|
2025
2031
|
pulumi.set(__self__, "metric_name", metric_name)
|
|
2032
|
+
if min_recurrence_count is not None:
|
|
2033
|
+
pulumi.set(__self__, "min_recurrence_count", min_recurrence_count)
|
|
2026
2034
|
if operator is not None:
|
|
2027
2035
|
pulumi.set(__self__, "operator", operator)
|
|
2028
2036
|
if query is not None:
|
|
@@ -2038,7 +2046,7 @@ class ConditionArgs:
|
|
|
2038
2046
|
@pulumi.getter(name="alertSensitivity")
|
|
2039
2047
|
def alert_sensitivity(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
2040
2048
|
"""
|
|
2041
|
-
The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant
|
|
2049
|
+
The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant only for dynamic threshold rules of the kind LogAlert.
|
|
2042
2050
|
"""
|
|
2043
2051
|
return pulumi.get(self, "alert_sensitivity")
|
|
2044
2052
|
|
|
@@ -2118,6 +2126,18 @@ class ConditionArgs:
|
|
|
2118
2126
|
def metric_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
2119
2127
|
pulumi.set(self, "metric_name", value)
|
|
2120
2128
|
|
|
2129
|
+
@property
|
|
2130
|
+
@pulumi.getter(name="minRecurrenceCount")
|
|
2131
|
+
def min_recurrence_count(self) -> Optional[pulumi.Input[builtins.float]]:
|
|
2132
|
+
"""
|
|
2133
|
+
The minimum results count that should be found for triggering an alert. Relevant only for rules of the kind SimpleLogAlert.
|
|
2134
|
+
"""
|
|
2135
|
+
return pulumi.get(self, "min_recurrence_count")
|
|
2136
|
+
|
|
2137
|
+
@min_recurrence_count.setter
|
|
2138
|
+
def min_recurrence_count(self, value: Optional[pulumi.Input[builtins.float]]):
|
|
2139
|
+
pulumi.set(self, "min_recurrence_count", value)
|
|
2140
|
+
|
|
2121
2141
|
@property
|
|
2122
2142
|
@pulumi.getter
|
|
2123
2143
|
def operator(self) -> Optional[pulumi.Input[Union[builtins.str, 'ConditionOperator']]]:
|
|
@@ -129,7 +129,7 @@ class GetScheduledQueryRuleResult:
|
|
|
129
129
|
@pulumi.getter(name="autoMitigate")
|
|
130
130
|
def auto_mitigate(self) -> Optional[builtins.bool]:
|
|
131
131
|
"""
|
|
132
|
-
The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of
|
|
132
|
+
The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
133
133
|
"""
|
|
134
134
|
return pulumi.get(self, "auto_mitigate")
|
|
135
135
|
|
|
@@ -281,7 +281,7 @@ class GetScheduledQueryRuleResult:
|
|
|
281
281
|
@pulumi.getter(name="resolveConfiguration")
|
|
282
282
|
def resolve_configuration(self) -> Optional['outputs.RuleResolveConfigurationResponse']:
|
|
283
283
|
"""
|
|
284
|
-
Defines the configuration for resolving fired alerts. Relevant only for rules of
|
|
284
|
+
Defines the configuration for resolving fired alerts. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
285
285
|
"""
|
|
286
286
|
return pulumi.get(self, "resolve_configuration")
|
|
287
287
|
|
|
@@ -393,9 +393,9 @@ def get_scheduled_query_rule(resource_group_name: Optional[builtins.str] = None,
|
|
|
393
393
|
"""
|
|
394
394
|
Retrieve an scheduled query rule definition.
|
|
395
395
|
|
|
396
|
-
Uses Azure REST API version
|
|
396
|
+
Uses Azure REST API version 2025-01-01-preview.
|
|
397
397
|
|
|
398
|
-
Other available API versions: 2023-12-01,
|
|
398
|
+
Other available API versions: 2023-12-01, 2024-01-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
399
399
|
|
|
400
400
|
|
|
401
401
|
:param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -443,9 +443,9 @@ def get_scheduled_query_rule_output(resource_group_name: Optional[pulumi.Input[b
|
|
|
443
443
|
"""
|
|
444
444
|
Retrieve an scheduled query rule definition.
|
|
445
445
|
|
|
446
|
-
Uses Azure REST API version
|
|
446
|
+
Uses Azure REST API version 2025-01-01-preview.
|
|
447
447
|
|
|
448
|
-
Other available API versions: 2023-12-01,
|
|
448
|
+
Other available API versions: 2023-12-01, 2024-01-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
449
449
|
|
|
450
450
|
|
|
451
451
|
:param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -1727,6 +1727,8 @@ class ConditionResponse(dict):
|
|
|
1727
1727
|
suggest = "metric_measure_column"
|
|
1728
1728
|
elif key == "metricName":
|
|
1729
1729
|
suggest = "metric_name"
|
|
1730
|
+
elif key == "minRecurrenceCount":
|
|
1731
|
+
suggest = "min_recurrence_count"
|
|
1730
1732
|
elif key == "resourceIdColumn":
|
|
1731
1733
|
suggest = "resource_id_column"
|
|
1732
1734
|
elif key == "timeAggregation":
|
|
@@ -1751,6 +1753,7 @@ class ConditionResponse(dict):
|
|
|
1751
1753
|
ignore_data_before: Optional[builtins.str] = None,
|
|
1752
1754
|
metric_measure_column: Optional[builtins.str] = None,
|
|
1753
1755
|
metric_name: Optional[builtins.str] = None,
|
|
1756
|
+
min_recurrence_count: Optional[builtins.float] = None,
|
|
1754
1757
|
operator: Optional[builtins.str] = None,
|
|
1755
1758
|
query: Optional[builtins.str] = None,
|
|
1756
1759
|
resource_id_column: Optional[builtins.str] = None,
|
|
@@ -1758,13 +1761,14 @@ class ConditionResponse(dict):
|
|
|
1758
1761
|
time_aggregation: Optional[builtins.str] = None):
|
|
1759
1762
|
"""
|
|
1760
1763
|
A condition of the scheduled query rule.
|
|
1761
|
-
:param builtins.str alert_sensitivity: The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant
|
|
1764
|
+
:param builtins.str alert_sensitivity: The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant only for dynamic threshold rules of the kind LogAlert.
|
|
1762
1765
|
:param builtins.str criterion_type: Specifies the type of threshold criteria
|
|
1763
1766
|
:param Sequence['DimensionResponse'] dimensions: List of Dimensions conditions
|
|
1764
1767
|
:param 'ConditionResponseFailingPeriods' failing_periods: The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
|
|
1765
1768
|
:param builtins.str ignore_data_before: Use this option to set the date from which to start learning the metric historical data and calculate the dynamic thresholds (in ISO8601 format). Relevant only for dynamic threshold rules of the kind LogAlert.
|
|
1766
1769
|
:param builtins.str metric_measure_column: The column containing the metric measure number. Relevant only for rules of the kind LogAlert.
|
|
1767
1770
|
:param builtins.str metric_name: The name of the metric to be sent. Relevant and required only for rules of the kind LogToMetric.
|
|
1771
|
+
:param builtins.float min_recurrence_count: The minimum results count that should be found for triggering an alert. Relevant only for rules of the kind SimpleLogAlert.
|
|
1768
1772
|
:param builtins.str operator: The criteria operator. Relevant and required only for rules of the kind LogAlert.
|
|
1769
1773
|
:param builtins.str query: Log query alert
|
|
1770
1774
|
:param builtins.str resource_id_column: The column containing the resource id. The content of the column must be a uri formatted as resource id. Relevant only for rules of the kind LogAlert.
|
|
@@ -1785,6 +1789,8 @@ class ConditionResponse(dict):
|
|
|
1785
1789
|
pulumi.set(__self__, "metric_measure_column", metric_measure_column)
|
|
1786
1790
|
if metric_name is not None:
|
|
1787
1791
|
pulumi.set(__self__, "metric_name", metric_name)
|
|
1792
|
+
if min_recurrence_count is not None:
|
|
1793
|
+
pulumi.set(__self__, "min_recurrence_count", min_recurrence_count)
|
|
1788
1794
|
if operator is not None:
|
|
1789
1795
|
pulumi.set(__self__, "operator", operator)
|
|
1790
1796
|
if query is not None:
|
|
@@ -1800,7 +1806,7 @@ class ConditionResponse(dict):
|
|
|
1800
1806
|
@pulumi.getter(name="alertSensitivity")
|
|
1801
1807
|
def alert_sensitivity(self) -> Optional[builtins.str]:
|
|
1802
1808
|
"""
|
|
1803
|
-
The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant
|
|
1809
|
+
The extent of deviation required to trigger an alert. Allowed values are 'Low', 'Medium' and 'High'. This will affect how tight the threshold is to the metric series pattern. Relevant only for dynamic threshold rules of the kind LogAlert.
|
|
1804
1810
|
"""
|
|
1805
1811
|
return pulumi.get(self, "alert_sensitivity")
|
|
1806
1812
|
|
|
@@ -1852,6 +1858,14 @@ class ConditionResponse(dict):
|
|
|
1852
1858
|
"""
|
|
1853
1859
|
return pulumi.get(self, "metric_name")
|
|
1854
1860
|
|
|
1861
|
+
@property
|
|
1862
|
+
@pulumi.getter(name="minRecurrenceCount")
|
|
1863
|
+
def min_recurrence_count(self) -> Optional[builtins.float]:
|
|
1864
|
+
"""
|
|
1865
|
+
The minimum results count that should be found for triggering an alert. Relevant only for rules of the kind SimpleLogAlert.
|
|
1866
|
+
"""
|
|
1867
|
+
return pulumi.get(self, "min_recurrence_count")
|
|
1868
|
+
|
|
1855
1869
|
@property
|
|
1856
1870
|
@pulumi.getter
|
|
1857
1871
|
def operator(self) -> Optional[builtins.str]:
|
|
@@ -52,7 +52,7 @@ class ScheduledQueryRuleArgs:
|
|
|
52
52
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] scopes: The list of resource id's that this scheduled query rule is scoped to.
|
|
54
54
|
:param pulumi.Input['ActionsArgs'] actions: Actions to invoke when the alert fires.
|
|
55
|
-
:param pulumi.Input[builtins.bool] auto_mitigate: The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of
|
|
55
|
+
:param pulumi.Input[builtins.bool] auto_mitigate: The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
56
56
|
:param pulumi.Input[builtins.bool] check_workspace_alerts_storage_configured: The flag which indicates whether this scheduled query rule should be stored in the customer's storage. The default is false. Relevant only for rules of the kind LogAlert.
|
|
57
57
|
:param pulumi.Input[builtins.str] description: The description of the scheduled query rule.
|
|
58
58
|
:param pulumi.Input[builtins.str] display_name: The display name of the alert rule
|
|
@@ -62,7 +62,7 @@ class ScheduledQueryRuleArgs:
|
|
|
62
62
|
:param pulumi.Input[builtins.str] location: The geo-location where the resource lives
|
|
63
63
|
:param pulumi.Input[builtins.str] mute_actions_duration: Mute actions for the chosen period of time (in ISO 8601 duration format) after the alert is fired. Relevant only for rules of the kind LogAlert.
|
|
64
64
|
:param pulumi.Input[builtins.str] override_query_time_range: If specified then overrides the query time range (default is WindowSize*NumberOfEvaluationPeriods). Relevant only for rules of the kind LogAlert.
|
|
65
|
-
:param pulumi.Input['RuleResolveConfigurationArgs'] resolve_configuration: Defines the configuration for resolving fired alerts. Relevant only for rules of
|
|
65
|
+
:param pulumi.Input['RuleResolveConfigurationArgs'] resolve_configuration: Defines the configuration for resolving fired alerts. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
66
66
|
:param pulumi.Input[builtins.str] rule_name: The name of the rule.
|
|
67
67
|
:param pulumi.Input[builtins.float] severity: Severity of the alert. Should be an integer between [0-4]. Value of 0 is severest. Relevant and required only for rules of the kind LogAlert.
|
|
68
68
|
:param pulumi.Input[builtins.bool] skip_query_validation: The flag which indicates whether the provided query should be validated or not. The default is false. Relevant only for rules of the kind LogAlert.
|
|
@@ -175,7 +175,7 @@ class ScheduledQueryRuleArgs:
|
|
|
175
175
|
@pulumi.getter(name="autoMitigate")
|
|
176
176
|
def auto_mitigate(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
177
177
|
"""
|
|
178
|
-
The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of
|
|
178
|
+
The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
179
179
|
"""
|
|
180
180
|
return pulumi.get(self, "auto_mitigate")
|
|
181
181
|
|
|
@@ -295,7 +295,7 @@ class ScheduledQueryRuleArgs:
|
|
|
295
295
|
@pulumi.getter(name="resolveConfiguration")
|
|
296
296
|
def resolve_configuration(self) -> Optional[pulumi.Input['RuleResolveConfigurationArgs']]:
|
|
297
297
|
"""
|
|
298
|
-
Defines the configuration for resolving fired alerts. Relevant only for rules of
|
|
298
|
+
Defines the configuration for resolving fired alerts. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
299
299
|
"""
|
|
300
300
|
return pulumi.get(self, "resolve_configuration")
|
|
301
301
|
|
|
@@ -408,14 +408,14 @@ class ScheduledQueryRule(pulumi.CustomResource):
|
|
|
408
408
|
"""
|
|
409
409
|
The scheduled query rule resource.
|
|
410
410
|
|
|
411
|
-
Uses Azure REST API version
|
|
411
|
+
Uses Azure REST API version 2025-01-01-preview.
|
|
412
412
|
|
|
413
|
-
Other available API versions: 2023-12-01,
|
|
413
|
+
Other available API versions: 2023-12-01, 2024-01-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
414
414
|
|
|
415
415
|
:param str resource_name: The name of the resource.
|
|
416
416
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
417
417
|
:param pulumi.Input[Union['ActionsArgs', 'ActionsArgsDict']] actions: Actions to invoke when the alert fires.
|
|
418
|
-
:param pulumi.Input[builtins.bool] auto_mitigate: The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of
|
|
418
|
+
:param pulumi.Input[builtins.bool] auto_mitigate: The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
419
419
|
:param pulumi.Input[builtins.bool] check_workspace_alerts_storage_configured: The flag which indicates whether this scheduled query rule should be stored in the customer's storage. The default is false. Relevant only for rules of the kind LogAlert.
|
|
420
420
|
:param pulumi.Input[Union['ScheduledQueryRuleCriteriaArgs', 'ScheduledQueryRuleCriteriaArgsDict']] criteria: The rule criteria that defines the conditions of the scheduled query rule.
|
|
421
421
|
:param pulumi.Input[builtins.str] description: The description of the scheduled query rule.
|
|
@@ -427,7 +427,7 @@ class ScheduledQueryRule(pulumi.CustomResource):
|
|
|
427
427
|
:param pulumi.Input[builtins.str] location: The geo-location where the resource lives
|
|
428
428
|
:param pulumi.Input[builtins.str] mute_actions_duration: Mute actions for the chosen period of time (in ISO 8601 duration format) after the alert is fired. Relevant only for rules of the kind LogAlert.
|
|
429
429
|
:param pulumi.Input[builtins.str] override_query_time_range: If specified then overrides the query time range (default is WindowSize*NumberOfEvaluationPeriods). Relevant only for rules of the kind LogAlert.
|
|
430
|
-
:param pulumi.Input[Union['RuleResolveConfigurationArgs', 'RuleResolveConfigurationArgsDict']] resolve_configuration: Defines the configuration for resolving fired alerts. Relevant only for rules of
|
|
430
|
+
:param pulumi.Input[Union['RuleResolveConfigurationArgs', 'RuleResolveConfigurationArgsDict']] resolve_configuration: Defines the configuration for resolving fired alerts. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
431
431
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
432
432
|
:param pulumi.Input[builtins.str] rule_name: The name of the rule.
|
|
433
433
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] scopes: The list of resource id's that this scheduled query rule is scoped to.
|
|
@@ -446,9 +446,9 @@ class ScheduledQueryRule(pulumi.CustomResource):
|
|
|
446
446
|
"""
|
|
447
447
|
The scheduled query rule resource.
|
|
448
448
|
|
|
449
|
-
Uses Azure REST API version
|
|
449
|
+
Uses Azure REST API version 2025-01-01-preview.
|
|
450
450
|
|
|
451
|
-
Other available API versions: 2023-12-01,
|
|
451
|
+
Other available API versions: 2023-12-01, 2024-01-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
452
452
|
|
|
453
453
|
:param str resource_name: The name of the resource.
|
|
454
454
|
:param ScheduledQueryRuleArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -600,7 +600,7 @@ class ScheduledQueryRule(pulumi.CustomResource):
|
|
|
600
600
|
@pulumi.getter(name="autoMitigate")
|
|
601
601
|
def auto_mitigate(self) -> pulumi.Output[Optional[builtins.bool]]:
|
|
602
602
|
"""
|
|
603
|
-
The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of
|
|
603
|
+
The flag that indicates whether the alert should be automatically resolved or not. The default is true. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
604
604
|
"""
|
|
605
605
|
return pulumi.get(self, "auto_mitigate")
|
|
606
606
|
|
|
@@ -744,7 +744,7 @@ class ScheduledQueryRule(pulumi.CustomResource):
|
|
|
744
744
|
@pulumi.getter(name="resolveConfiguration")
|
|
745
745
|
def resolve_configuration(self) -> pulumi.Output[Optional['outputs.RuleResolveConfigurationResponse']]:
|
|
746
746
|
"""
|
|
747
|
-
Defines the configuration for resolving fired alerts. Relevant only for rules of
|
|
747
|
+
Defines the configuration for resolving fired alerts. Relevant only for rules of kinds LogAlert and SimpleLogAlert.
|
|
748
748
|
"""
|
|
749
749
|
return pulumi.get(self, "resolve_configuration")
|
|
750
750
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pulumi_azure_native/__init__.py,sha256=aHU5oCOBAgdZVNnJ0clqVxdi60zBbIH53Bwji7Hbyz8,232894
|
|
2
2
|
pulumi_azure_native/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
3
|
pulumi_azure_native/provider.py,sha256=3bo8Um7FroZ6sORqR6tPwqSdXFRA6wBJ3RVARdOiZis,24254
|
|
4
|
-
pulumi_azure_native/pulumi-plugin.json,sha256=
|
|
4
|
+
pulumi_azure_native/pulumi-plugin.json,sha256=9lQbUKVnLWRYBsWnrmHUQ8d4D5fw18JdPoZrUSVzBFQ,88
|
|
5
5
|
pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pulumi_azure_native/aad/__init__.py,sha256=ccEtqbS_TALS7ZcGtiIgGedTaWNafb3Wg0cEv_wEDPU,458
|
|
7
7
|
pulumi_azure_native/aad/_enums.py,sha256=8OZ253rp_TZn_CKyOvqb274H8LTVILEWJJpGQYHOXVU,4441
|
|
@@ -3771,8 +3771,8 @@ pulumi_azure_native/mongocluster/outputs.py,sha256=4uY_dqVx07hO-b_xqN8_Vxnx1pNk7
|
|
|
3771
3771
|
pulumi_azure_native/mongocluster/private_endpoint_connection.py,sha256=dOTSFOAl5-IPv7umqFvyTYU1EeQKl5O9xfAUT1jjgAY,12772
|
|
3772
3772
|
pulumi_azure_native/mongocluster/user.py,sha256=Ibiy2i_80S43A876P-aLfoOmhQEmlnG-_3vuRtGH7Yg,10633
|
|
3773
3773
|
pulumi_azure_native/monitor/__init__.py,sha256=TKaZdILFjeJnkN6v6ghezwWhy7MFpZr5HKt5FvSiqnE,1731
|
|
3774
|
-
pulumi_azure_native/monitor/_enums.py,sha256=
|
|
3775
|
-
pulumi_azure_native/monitor/_inputs.py,sha256=
|
|
3774
|
+
pulumi_azure_native/monitor/_enums.py,sha256=ZcmdeLP0IHjZXI901QrycUMrPJl2BuCSfSqILwViplw,18274
|
|
3775
|
+
pulumi_azure_native/monitor/_inputs.py,sha256=M8B9J76NOzOP_gW4gl85PGk1icBVOVJLJ43jo8RmTIw,404119
|
|
3776
3776
|
pulumi_azure_native/monitor/action_group.py,sha256=cR909loyJJNMxi87pUlfvAqy7xfklxy2WMFZE-occ3Y,38672
|
|
3777
3777
|
pulumi_azure_native/monitor/activity_log_alert.py,sha256=WcXeO4suzRrT-wwv1UzN-p_kNRzuby6i69-dm4qBh6o,18506
|
|
3778
3778
|
pulumi_azure_native/monitor/autoscale_setting.py,sha256=sPvr-BcWdqxijuslrGJPww3wbc5gNNNsjjCxufaUKfk,20818
|
|
@@ -3795,18 +3795,18 @@ pulumi_azure_native/monitor/get_pipeline_group.py,sha256=C3CCwgH9CTNAO6sXsqvxXHU
|
|
|
3795
3795
|
pulumi_azure_native/monitor/get_private_endpoint_connection.py,sha256=HCQvf4SnlXikiyP00Ydv15fuQUPhIPg6O4GoFkyfV2U,9206
|
|
3796
3796
|
pulumi_azure_native/monitor/get_private_link_scope.py,sha256=hy7t0oHYhP81-16MiW_lPKmCauLoIFOO9Sfp5qGPqvo,9960
|
|
3797
3797
|
pulumi_azure_native/monitor/get_private_link_scoped_resource.py,sha256=QmKEYneP5pZ3HLTv1HNesquZmN6TQc4kMM8Jm2WlFUA,9784
|
|
3798
|
-
pulumi_azure_native/monitor/get_scheduled_query_rule.py,sha256=
|
|
3798
|
+
pulumi_azure_native/monitor/get_scheduled_query_rule.py,sha256=vFDLu6xhXCY-H0dmCnntBV2y-4I-8h7jzdds5AFoK4c,24213
|
|
3799
3799
|
pulumi_azure_native/monitor/get_subscription_diagnostic_setting.py,sha256=TruW769EWlINOFptlR_EuHcBKFPf_E0jzgZZKqgzpFk,10981
|
|
3800
3800
|
pulumi_azure_native/monitor/get_tenant_action_group.py,sha256=YFqTm4isQ3AwpFBSo7Ivd-TcJw-XmW_GMyrJ5x-A1u0,11077
|
|
3801
3801
|
pulumi_azure_native/monitor/list_diagnostic_settings_category.py,sha256=fwtx8EyJVz1r3O7YJ8dQ6OrhPaXcNhY47wDjOSiwYaA,3432
|
|
3802
3802
|
pulumi_azure_native/monitor/management_group_diagnostic_setting.py,sha256=XCeHyTlJCMflcjTvAl6tQ6x1i3M0qf-fWISWCux4CWM,19846
|
|
3803
3803
|
pulumi_azure_native/monitor/metric_alert.py,sha256=W6hMnvTxHI6cZfaQeyIOv88Hzsj9_X3RI9OwUVQImf0,28834
|
|
3804
|
-
pulumi_azure_native/monitor/outputs.py,sha256=
|
|
3804
|
+
pulumi_azure_native/monitor/outputs.py,sha256=_5omq2G93XvMb8PLYQv7I4Y0_ACxUISoHFZv6gedH6w,361041
|
|
3805
3805
|
pulumi_azure_native/monitor/pipeline_group.py,sha256=YIji1_5NRKPfC8r1KRL5vmwUjjtvksNQFi0QNgrCmKY,14426
|
|
3806
3806
|
pulumi_azure_native/monitor/private_endpoint_connection.py,sha256=wJjiqDQdj-w-E3EdJA6WknfTlBCZiFAW15pCrYi6Krg,13401
|
|
3807
3807
|
pulumi_azure_native/monitor/private_link_scope.py,sha256=WuOV4hfNdfmobiDa37ak3PiOuwDmuRIxJofEhuSE3XE,13819
|
|
3808
3808
|
pulumi_azure_native/monitor/private_link_scoped_resource.py,sha256=k9LwvXR-vrlv6gTHZ5zSWDOD7kBlY7JTiXlJvPhzbF4,14627
|
|
3809
|
-
pulumi_azure_native/monitor/scheduled_query_rule.py,sha256=
|
|
3809
|
+
pulumi_azure_native/monitor/scheduled_query_rule.py,sha256=CU8FdFrQGI3F9exw3Ecm9ORY4R8PgyN3PfqYMTnwRUg,44507
|
|
3810
3810
|
pulumi_azure_native/monitor/subscription_diagnostic_setting.py,sha256=YDrJt9c4deqppIrV1I4F5ua7CbW-z4FXji-dnJoGBr4,18657
|
|
3811
3811
|
pulumi_azure_native/monitor/tenant_action_group.py,sha256=idfDTAM2ZcC3D1bLticyWuDfivFg4CsyvaeA5nawcf4,22258
|
|
3812
3812
|
pulumi_azure_native/mysqldiscovery/__init__.py,sha256=rIskdpPY5Ygxd6qz4W9Cv9xG9xpfKDkWWN9dcqiDw4w,454
|
|
@@ -5872,7 +5872,7 @@ pulumi_azure_native/workloads/sap_instance.py,sha256=ULExy3GhjIxAsQmvq4FWrIvHD7-
|
|
|
5872
5872
|
pulumi_azure_native/workloads/sap_landscape_monitor.py,sha256=pWyrZsrAYRQDDD7eRZQbTTiNepu0_LQnfBt0ZHSSzAE,13248
|
|
5873
5873
|
pulumi_azure_native/workloads/sap_virtual_instance.py,sha256=HXoGvddemKCL2ux5DiKXbeQJjYIrsbWJY3mVLHzjmwk,25730
|
|
5874
5874
|
pulumi_azure_native/workloads/server_instance.py,sha256=YT7jlDPywuLH0g7msnYKsUNdT_2xUVvh0XujngLxFtM,14422
|
|
5875
|
-
pulumi_azure_native-3.8.
|
|
5876
|
-
pulumi_azure_native-3.8.
|
|
5877
|
-
pulumi_azure_native-3.8.
|
|
5878
|
-
pulumi_azure_native-3.8.
|
|
5875
|
+
pulumi_azure_native-3.8.0a1755616596.dist-info/METADATA,sha256=U_Esi7nOalDfE2yosS5SZv7XOFAqx93soCH7OeAWYv8,3637
|
|
5876
|
+
pulumi_azure_native-3.8.0a1755616596.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
5877
|
+
pulumi_azure_native-3.8.0a1755616596.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
5878
|
+
pulumi_azure_native-3.8.0a1755616596.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|