pulumi-azure-native 2.21.1__py3-none-any.whl → 2.21.2a1702068757__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/insights/_inputs.py +0 -16
- pulumi_azure_native/insights/activity_log_alert.py +23 -51
- pulumi_azure_native/insights/get_activity_log_alert.py +6 -19
- pulumi_azure_native/insights/outputs.py +0 -14
- {pulumi_azure_native-2.21.1.dist-info → pulumi_azure_native-2.21.2a1702068757.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.1.dist-info → pulumi_azure_native-2.21.2a1702068757.dist-info}/RECORD +8 -8
- {pulumi_azure_native-2.21.1.dist-info → pulumi_azure_native-2.21.2a1702068757.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.1.dist-info → pulumi_azure_native-2.21.2a1702068757.dist-info}/top_level.txt +0 -0
|
@@ -236,17 +236,13 @@ class AccessModeSettingsArgs:
|
|
|
236
236
|
class ActionGroupArgs:
|
|
237
237
|
def __init__(__self__, *,
|
|
238
238
|
action_group_id: pulumi.Input[str],
|
|
239
|
-
action_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
240
239
|
webhook_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
241
240
|
"""
|
|
242
241
|
A pointer to an Azure Action Group.
|
|
243
242
|
:param pulumi.Input[str] action_group_id: The resource ID of the Action Group. This cannot be null or empty.
|
|
244
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] action_properties: Predefined list of properties and configuration items for the action group.
|
|
245
243
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] webhook_properties: the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
|
|
246
244
|
"""
|
|
247
245
|
pulumi.set(__self__, "action_group_id", action_group_id)
|
|
248
|
-
if action_properties is not None:
|
|
249
|
-
pulumi.set(__self__, "action_properties", action_properties)
|
|
250
246
|
if webhook_properties is not None:
|
|
251
247
|
pulumi.set(__self__, "webhook_properties", webhook_properties)
|
|
252
248
|
|
|
@@ -262,18 +258,6 @@ class ActionGroupArgs:
|
|
|
262
258
|
def action_group_id(self, value: pulumi.Input[str]):
|
|
263
259
|
pulumi.set(self, "action_group_id", value)
|
|
264
260
|
|
|
265
|
-
@property
|
|
266
|
-
@pulumi.getter(name="actionProperties")
|
|
267
|
-
def action_properties(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
268
|
-
"""
|
|
269
|
-
Predefined list of properties and configuration items for the action group.
|
|
270
|
-
"""
|
|
271
|
-
return pulumi.get(self, "action_properties")
|
|
272
|
-
|
|
273
|
-
@action_properties.setter
|
|
274
|
-
def action_properties(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
275
|
-
pulumi.set(self, "action_properties", value)
|
|
276
|
-
|
|
277
261
|
@property
|
|
278
262
|
@pulumi.getter(name="webhookProperties")
|
|
279
263
|
def webhook_properties(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
@@ -19,29 +19,28 @@ class ActivityLogAlertArgs:
|
|
|
19
19
|
actions: pulumi.Input['ActionListArgs'],
|
|
20
20
|
condition: pulumi.Input['AlertRuleAllOfConditionArgs'],
|
|
21
21
|
resource_group_name: pulumi.Input[str],
|
|
22
|
+
scopes: pulumi.Input[Sequence[pulumi.Input[str]]],
|
|
22
23
|
activity_log_alert_name: Optional[pulumi.Input[str]] = None,
|
|
23
24
|
description: Optional[pulumi.Input[str]] = None,
|
|
24
25
|
enabled: Optional[pulumi.Input[bool]] = None,
|
|
25
26
|
location: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
|
|
27
|
-
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
28
|
-
tenant_scope: Optional[pulumi.Input[str]] = None):
|
|
27
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
29
28
|
"""
|
|
30
29
|
The set of arguments for constructing a ActivityLogAlert resource.
|
|
31
30
|
:param pulumi.Input['ActionListArgs'] actions: The actions that will activate when the condition is met.
|
|
32
31
|
:param pulumi.Input['AlertRuleAllOfConditionArgs'] condition: The condition that will cause this alert to activate.
|
|
33
32
|
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
33
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
|
|
34
34
|
:param pulumi.Input[str] activity_log_alert_name: The name of the Activity Log Alert rule.
|
|
35
35
|
:param pulumi.Input[str] description: A description of this Activity Log Alert rule.
|
|
36
36
|
:param pulumi.Input[bool] enabled: Indicates whether this Activity Log Alert rule is enabled. If an Activity Log Alert rule is not enabled, then none of its actions will be activated.
|
|
37
37
|
:param pulumi.Input[str] location: The location of the resource. Since Azure Activity Log Alerts is a global service, the location of the rules should always be 'global'.
|
|
38
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
|
|
39
38
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tags of the resource.
|
|
40
|
-
:param pulumi.Input[str] tenant_scope: The tenant GUID. Must be provided for tenant-level and management group events rules.
|
|
41
39
|
"""
|
|
42
40
|
pulumi.set(__self__, "actions", actions)
|
|
43
41
|
pulumi.set(__self__, "condition", condition)
|
|
44
42
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
43
|
+
pulumi.set(__self__, "scopes", scopes)
|
|
45
44
|
if activity_log_alert_name is not None:
|
|
46
45
|
pulumi.set(__self__, "activity_log_alert_name", activity_log_alert_name)
|
|
47
46
|
if description is not None:
|
|
@@ -54,12 +53,8 @@ class ActivityLogAlertArgs:
|
|
|
54
53
|
location = 'global'
|
|
55
54
|
if location is not None:
|
|
56
55
|
pulumi.set(__self__, "location", location)
|
|
57
|
-
if scopes is not None:
|
|
58
|
-
pulumi.set(__self__, "scopes", scopes)
|
|
59
56
|
if tags is not None:
|
|
60
57
|
pulumi.set(__self__, "tags", tags)
|
|
61
|
-
if tenant_scope is not None:
|
|
62
|
-
pulumi.set(__self__, "tenant_scope", tenant_scope)
|
|
63
58
|
|
|
64
59
|
@property
|
|
65
60
|
@pulumi.getter
|
|
@@ -97,6 +92,18 @@ class ActivityLogAlertArgs:
|
|
|
97
92
|
def resource_group_name(self, value: pulumi.Input[str]):
|
|
98
93
|
pulumi.set(self, "resource_group_name", value)
|
|
99
94
|
|
|
95
|
+
@property
|
|
96
|
+
@pulumi.getter
|
|
97
|
+
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
98
|
+
"""
|
|
99
|
+
A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "scopes")
|
|
102
|
+
|
|
103
|
+
@scopes.setter
|
|
104
|
+
def scopes(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
105
|
+
pulumi.set(self, "scopes", value)
|
|
106
|
+
|
|
100
107
|
@property
|
|
101
108
|
@pulumi.getter(name="activityLogAlertName")
|
|
102
109
|
def activity_log_alert_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -145,18 +152,6 @@ class ActivityLogAlertArgs:
|
|
|
145
152
|
def location(self, value: Optional[pulumi.Input[str]]):
|
|
146
153
|
pulumi.set(self, "location", value)
|
|
147
154
|
|
|
148
|
-
@property
|
|
149
|
-
@pulumi.getter
|
|
150
|
-
def scopes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
151
|
-
"""
|
|
152
|
-
A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
|
|
153
|
-
"""
|
|
154
|
-
return pulumi.get(self, "scopes")
|
|
155
|
-
|
|
156
|
-
@scopes.setter
|
|
157
|
-
def scopes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
158
|
-
pulumi.set(self, "scopes", value)
|
|
159
|
-
|
|
160
155
|
@property
|
|
161
156
|
@pulumi.getter
|
|
162
157
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
@@ -169,18 +164,6 @@ class ActivityLogAlertArgs:
|
|
|
169
164
|
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
170
165
|
pulumi.set(self, "tags", value)
|
|
171
166
|
|
|
172
|
-
@property
|
|
173
|
-
@pulumi.getter(name="tenantScope")
|
|
174
|
-
def tenant_scope(self) -> Optional[pulumi.Input[str]]:
|
|
175
|
-
"""
|
|
176
|
-
The tenant GUID. Must be provided for tenant-level and management group events rules.
|
|
177
|
-
"""
|
|
178
|
-
return pulumi.get(self, "tenant_scope")
|
|
179
|
-
|
|
180
|
-
@tenant_scope.setter
|
|
181
|
-
def tenant_scope(self, value: Optional[pulumi.Input[str]]):
|
|
182
|
-
pulumi.set(self, "tenant_scope", value)
|
|
183
|
-
|
|
184
167
|
|
|
185
168
|
class ActivityLogAlert(pulumi.CustomResource):
|
|
186
169
|
@overload
|
|
@@ -196,13 +179,12 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
196
179
|
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
197
180
|
scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
198
181
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
199
|
-
tenant_scope: Optional[pulumi.Input[str]] = None,
|
|
200
182
|
__props__=None):
|
|
201
183
|
"""
|
|
202
184
|
An Activity Log Alert rule resource.
|
|
203
|
-
Azure REST API version:
|
|
185
|
+
Azure REST API version: 2020-10-01. Prior API version in Azure Native 1.x: 2020-10-01.
|
|
204
186
|
|
|
205
|
-
Other available API versions: 2017-04-01,
|
|
187
|
+
Other available API versions: 2017-04-01, 2023-01-01-preview.
|
|
206
188
|
|
|
207
189
|
:param str resource_name: The name of the resource.
|
|
208
190
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -215,7 +197,6 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
215
197
|
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
216
198
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
|
|
217
199
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tags of the resource.
|
|
218
|
-
:param pulumi.Input[str] tenant_scope: The tenant GUID. Must be provided for tenant-level and management group events rules.
|
|
219
200
|
"""
|
|
220
201
|
...
|
|
221
202
|
@overload
|
|
@@ -225,9 +206,9 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
225
206
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
226
207
|
"""
|
|
227
208
|
An Activity Log Alert rule resource.
|
|
228
|
-
Azure REST API version:
|
|
209
|
+
Azure REST API version: 2020-10-01. Prior API version in Azure Native 1.x: 2020-10-01.
|
|
229
210
|
|
|
230
|
-
Other available API versions: 2017-04-01,
|
|
211
|
+
Other available API versions: 2017-04-01, 2023-01-01-preview.
|
|
231
212
|
|
|
232
213
|
:param str resource_name: The name of the resource.
|
|
233
214
|
:param ActivityLogAlertArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -253,7 +234,6 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
253
234
|
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
254
235
|
scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
255
236
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
256
|
-
tenant_scope: Optional[pulumi.Input[str]] = None,
|
|
257
237
|
__props__=None):
|
|
258
238
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
259
239
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -280,9 +260,10 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
280
260
|
if resource_group_name is None and not opts.urn:
|
|
281
261
|
raise TypeError("Missing required property 'resource_group_name'")
|
|
282
262
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
263
|
+
if scopes is None and not opts.urn:
|
|
264
|
+
raise TypeError("Missing required property 'scopes'")
|
|
283
265
|
__props__.__dict__["scopes"] = scopes
|
|
284
266
|
__props__.__dict__["tags"] = tags
|
|
285
|
-
__props__.__dict__["tenant_scope"] = tenant_scope
|
|
286
267
|
__props__.__dict__["name"] = None
|
|
287
268
|
__props__.__dict__["type"] = None
|
|
288
269
|
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:insights/v20170401:ActivityLogAlert"), pulumi.Alias(type_="azure-native:insights/v20201001:ActivityLogAlert"), pulumi.Alias(type_="azure-native:insights/v20230101preview:ActivityLogAlert")])
|
|
@@ -317,7 +298,6 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
317
298
|
__props__.__dict__["name"] = None
|
|
318
299
|
__props__.__dict__["scopes"] = None
|
|
319
300
|
__props__.__dict__["tags"] = None
|
|
320
|
-
__props__.__dict__["tenant_scope"] = None
|
|
321
301
|
__props__.__dict__["type"] = None
|
|
322
302
|
return ActivityLogAlert(resource_name, opts=opts, __props__=__props__)
|
|
323
303
|
|
|
@@ -371,7 +351,7 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
371
351
|
|
|
372
352
|
@property
|
|
373
353
|
@pulumi.getter
|
|
374
|
-
def scopes(self) -> pulumi.Output[
|
|
354
|
+
def scopes(self) -> pulumi.Output[Sequence[str]]:
|
|
375
355
|
"""
|
|
376
356
|
A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
|
|
377
357
|
"""
|
|
@@ -385,14 +365,6 @@ class ActivityLogAlert(pulumi.CustomResource):
|
|
|
385
365
|
"""
|
|
386
366
|
return pulumi.get(self, "tags")
|
|
387
367
|
|
|
388
|
-
@property
|
|
389
|
-
@pulumi.getter(name="tenantScope")
|
|
390
|
-
def tenant_scope(self) -> pulumi.Output[Optional[str]]:
|
|
391
|
-
"""
|
|
392
|
-
The tenant GUID. Must be provided for tenant-level and management group events rules.
|
|
393
|
-
"""
|
|
394
|
-
return pulumi.get(self, "tenant_scope")
|
|
395
|
-
|
|
396
368
|
@property
|
|
397
369
|
@pulumi.getter
|
|
398
370
|
def type(self) -> pulumi.Output[str]:
|
|
@@ -22,7 +22,7 @@ class GetActivityLogAlertResult:
|
|
|
22
22
|
"""
|
|
23
23
|
An Activity Log Alert rule resource.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, actions=None, condition=None, description=None, enabled=None, id=None, location=None, name=None, scopes=None, tags=None,
|
|
25
|
+
def __init__(__self__, actions=None, condition=None, description=None, enabled=None, id=None, location=None, name=None, scopes=None, tags=None, type=None):
|
|
26
26
|
if actions and not isinstance(actions, dict):
|
|
27
27
|
raise TypeError("Expected argument 'actions' to be a dict")
|
|
28
28
|
pulumi.set(__self__, "actions", actions)
|
|
@@ -50,9 +50,6 @@ class GetActivityLogAlertResult:
|
|
|
50
50
|
if tags and not isinstance(tags, dict):
|
|
51
51
|
raise TypeError("Expected argument 'tags' to be a dict")
|
|
52
52
|
pulumi.set(__self__, "tags", tags)
|
|
53
|
-
if tenant_scope and not isinstance(tenant_scope, str):
|
|
54
|
-
raise TypeError("Expected argument 'tenant_scope' to be a str")
|
|
55
|
-
pulumi.set(__self__, "tenant_scope", tenant_scope)
|
|
56
53
|
if type and not isinstance(type, str):
|
|
57
54
|
raise TypeError("Expected argument 'type' to be a str")
|
|
58
55
|
pulumi.set(__self__, "type", type)
|
|
@@ -115,7 +112,7 @@ class GetActivityLogAlertResult:
|
|
|
115
112
|
|
|
116
113
|
@property
|
|
117
114
|
@pulumi.getter
|
|
118
|
-
def scopes(self) ->
|
|
115
|
+
def scopes(self) -> Sequence[str]:
|
|
119
116
|
"""
|
|
120
117
|
A list of resource IDs that will be used as prefixes. The alert will only apply to Activity Log events with resource IDs that fall under one of these prefixes. This list must include at least one item.
|
|
121
118
|
"""
|
|
@@ -129,14 +126,6 @@ class GetActivityLogAlertResult:
|
|
|
129
126
|
"""
|
|
130
127
|
return pulumi.get(self, "tags")
|
|
131
128
|
|
|
132
|
-
@property
|
|
133
|
-
@pulumi.getter(name="tenantScope")
|
|
134
|
-
def tenant_scope(self) -> Optional[str]:
|
|
135
|
-
"""
|
|
136
|
-
The tenant GUID. Must be provided for tenant-level and management group events rules.
|
|
137
|
-
"""
|
|
138
|
-
return pulumi.get(self, "tenant_scope")
|
|
139
|
-
|
|
140
129
|
@property
|
|
141
130
|
@pulumi.getter
|
|
142
131
|
def type(self) -> str:
|
|
@@ -161,7 +150,6 @@ class AwaitableGetActivityLogAlertResult(GetActivityLogAlertResult):
|
|
|
161
150
|
name=self.name,
|
|
162
151
|
scopes=self.scopes,
|
|
163
152
|
tags=self.tags,
|
|
164
|
-
tenant_scope=self.tenant_scope,
|
|
165
153
|
type=self.type)
|
|
166
154
|
|
|
167
155
|
|
|
@@ -170,9 +158,9 @@ def get_activity_log_alert(activity_log_alert_name: Optional[str] = None,
|
|
|
170
158
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetActivityLogAlertResult:
|
|
171
159
|
"""
|
|
172
160
|
Get an Activity Log Alert rule.
|
|
173
|
-
Azure REST API version:
|
|
161
|
+
Azure REST API version: 2020-10-01.
|
|
174
162
|
|
|
175
|
-
Other available API versions: 2017-04-01,
|
|
163
|
+
Other available API versions: 2017-04-01, 2023-01-01-preview.
|
|
176
164
|
|
|
177
165
|
|
|
178
166
|
:param str activity_log_alert_name: The name of the Activity Log Alert rule.
|
|
@@ -194,7 +182,6 @@ def get_activity_log_alert(activity_log_alert_name: Optional[str] = None,
|
|
|
194
182
|
name=pulumi.get(__ret__, 'name'),
|
|
195
183
|
scopes=pulumi.get(__ret__, 'scopes'),
|
|
196
184
|
tags=pulumi.get(__ret__, 'tags'),
|
|
197
|
-
tenant_scope=pulumi.get(__ret__, 'tenant_scope'),
|
|
198
185
|
type=pulumi.get(__ret__, 'type'))
|
|
199
186
|
|
|
200
187
|
|
|
@@ -204,9 +191,9 @@ def get_activity_log_alert_output(activity_log_alert_name: Optional[pulumi.Input
|
|
|
204
191
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetActivityLogAlertResult]:
|
|
205
192
|
"""
|
|
206
193
|
Get an Activity Log Alert rule.
|
|
207
|
-
Azure REST API version:
|
|
194
|
+
Azure REST API version: 2020-10-01.
|
|
208
195
|
|
|
209
|
-
Other available API versions: 2017-04-01,
|
|
196
|
+
Other available API versions: 2017-04-01, 2023-01-01-preview.
|
|
210
197
|
|
|
211
198
|
|
|
212
199
|
:param str activity_log_alert_name: The name of the Activity Log Alert rule.
|
|
@@ -284,8 +284,6 @@ class ActionGroupResponse(dict):
|
|
|
284
284
|
suggest = None
|
|
285
285
|
if key == "actionGroupId":
|
|
286
286
|
suggest = "action_group_id"
|
|
287
|
-
elif key == "actionProperties":
|
|
288
|
-
suggest = "action_properties"
|
|
289
287
|
elif key == "webhookProperties":
|
|
290
288
|
suggest = "webhook_properties"
|
|
291
289
|
|
|
@@ -302,17 +300,13 @@ class ActionGroupResponse(dict):
|
|
|
302
300
|
|
|
303
301
|
def __init__(__self__, *,
|
|
304
302
|
action_group_id: str,
|
|
305
|
-
action_properties: Optional[Mapping[str, str]] = None,
|
|
306
303
|
webhook_properties: Optional[Mapping[str, str]] = None):
|
|
307
304
|
"""
|
|
308
305
|
A pointer to an Azure Action Group.
|
|
309
306
|
:param str action_group_id: The resource ID of the Action Group. This cannot be null or empty.
|
|
310
|
-
:param Mapping[str, str] action_properties: Predefined list of properties and configuration items for the action group.
|
|
311
307
|
:param Mapping[str, str] webhook_properties: the dictionary of custom properties to include with the post operation. These data are appended to the webhook payload.
|
|
312
308
|
"""
|
|
313
309
|
pulumi.set(__self__, "action_group_id", action_group_id)
|
|
314
|
-
if action_properties is not None:
|
|
315
|
-
pulumi.set(__self__, "action_properties", action_properties)
|
|
316
310
|
if webhook_properties is not None:
|
|
317
311
|
pulumi.set(__self__, "webhook_properties", webhook_properties)
|
|
318
312
|
|
|
@@ -324,14 +318,6 @@ class ActionGroupResponse(dict):
|
|
|
324
318
|
"""
|
|
325
319
|
return pulumi.get(self, "action_group_id")
|
|
326
320
|
|
|
327
|
-
@property
|
|
328
|
-
@pulumi.getter(name="actionProperties")
|
|
329
|
-
def action_properties(self) -> Optional[Mapping[str, str]]:
|
|
330
|
-
"""
|
|
331
|
-
Predefined list of properties and configuration items for the action group.
|
|
332
|
-
"""
|
|
333
|
-
return pulumi.get(self, "action_properties")
|
|
334
|
-
|
|
335
321
|
@property
|
|
336
322
|
@pulumi.getter(name="webhookProperties")
|
|
337
323
|
def webhook_properties(self) -> Optional[Mapping[str, str]]:
|
{pulumi_azure_native-2.21.1.dist-info → pulumi_azure_native-2.21.2a1702068757.dist-info}/RECORD
RENAMED
|
@@ -8423,9 +8423,9 @@ pulumi_azure_native/importexport/v20210101/list_bit_locker_key.py,sha256=JF729oP
|
|
|
8423
8423
|
pulumi_azure_native/importexport/v20210101/outputs.py,sha256=wJaPssumBTePlRb-L5w4NmfGQ_MgZemovG5hlMKGcgE,52502
|
|
8424
8424
|
pulumi_azure_native/insights/__init__.py,sha256=fQngWQad-FrWOezR_VzkMsa_exu_0tRKSxn3CBNDcm8,9982
|
|
8425
8425
|
pulumi_azure_native/insights/_enums.py,sha256=qtBU813rlcRjkfiogJDVNRHPnWgUJ20u3DhOybeEnv0,13689
|
|
8426
|
-
pulumi_azure_native/insights/_inputs.py,sha256=
|
|
8426
|
+
pulumi_azure_native/insights/_inputs.py,sha256=0AFrNMSdq6vl4H4vpVUvPaFSMzBrNysTTu7tPfdINsg,306331
|
|
8427
8427
|
pulumi_azure_native/insights/action_group.py,sha256=nAD71UUuGB6UX8hTEKUODr9UkUOuGFTGBK9iRM1rXQE,32647
|
|
8428
|
-
pulumi_azure_native/insights/activity_log_alert.py,sha256=
|
|
8428
|
+
pulumi_azure_native/insights/activity_log_alert.py,sha256=H44KTJFoMqEO06As3xO_MWdqKPOZ5CDLPwiGaEowJCU,17288
|
|
8429
8429
|
pulumi_azure_native/insights/alert_rule.py,sha256=IKC2kK5_7qKXuwszGoqP78ckDsm1QidKQkdUU6egT-E,19260
|
|
8430
8430
|
pulumi_azure_native/insights/analytics_item.py,sha256=bjQoUKpG9Q72Vd48oKiD4DejzaYT_DMKMUJVjvIOUKc,17149
|
|
8431
8431
|
pulumi_azure_native/insights/autoscale_setting.py,sha256=RW49qMGwh2E4Uaw2h4P9cwawR-E4Sg_JlVKT-PUF3jA,21226
|
|
@@ -8439,7 +8439,7 @@ pulumi_azure_native/insights/diagnostic_setting.py,sha256=6aNeQVYHe3DUcmdzZPtw8r
|
|
|
8439
8439
|
pulumi_azure_native/insights/export_configuration.py,sha256=S-pt6_uaywlXeBJdoSv9MNpCxUwwHpsUbQsKSKA0sAQ,24676
|
|
8440
8440
|
pulumi_azure_native/insights/favorite.py,sha256=VBv7ddblCpGzjhwkzdvZUeTvfaNjRH_W9W0cvrys6IA,19132
|
|
8441
8441
|
pulumi_azure_native/insights/get_action_group.py,sha256=kL8krrf0_oL5pMjVbZMK9-d7R1ewoT31_2U_QgmpxuE,13128
|
|
8442
|
-
pulumi_azure_native/insights/get_activity_log_alert.py,sha256=
|
|
8442
|
+
pulumi_azure_native/insights/get_activity_log_alert.py,sha256=XFdx6RP_-A49D8SZGTmQJiH38rTNTrQXENHwVYF6GkY,7449
|
|
8443
8443
|
pulumi_azure_native/insights/get_alert_rule.py,sha256=YxgW1h2K4_uuc6IyFtcV0bdRD8IhYE-83gWLbFYmU6U,7994
|
|
8444
8444
|
pulumi_azure_native/insights/get_analytics_item.py,sha256=SkhJhnhZ_DsF72x_83sCQGgdyjbqMkk-WiJhJdq1oeI,8215
|
|
8445
8445
|
pulumi_azure_native/insights/get_autoscale_setting.py,sha256=CcokensUJosgi9qSy03AWvKKVBKMGOLZv04l96fNMKE,9157
|
|
@@ -8480,7 +8480,7 @@ pulumi_azure_native/insights/log_profile.py,sha256=agDRTCJfbHipS1JMaA1vy8MAHEPCw
|
|
|
8480
8480
|
pulumi_azure_native/insights/management_group_diagnostic_setting.py,sha256=wVSKEodD35nV7V_j8BE3aYzSRmaf3xg8iViUv6gdMX8,18524
|
|
8481
8481
|
pulumi_azure_native/insights/metric_alert.py,sha256=0LZn3M7jzfCAbBl8rXOdjtr9HATFmVPO8-Rs-tWOMqk,26549
|
|
8482
8482
|
pulumi_azure_native/insights/my_workbook.py,sha256=E-9yXDHPp9phUgQgsr8My5SGb7V2mvChazmwP7Ti3pA,22314
|
|
8483
|
-
pulumi_azure_native/insights/outputs.py,sha256=
|
|
8483
|
+
pulumi_azure_native/insights/outputs.py,sha256=ed6MeIaXWKbZahuwVJE4Ak9M0_pDP9Y1XJxzKfvp2Cw,359619
|
|
8484
8484
|
pulumi_azure_native/insights/private_endpoint_connection.py,sha256=ZUVn_pcnFpbZlpzOEkVCFkx1zv5buyZxwT9Qigx10Ps,11510
|
|
8485
8485
|
pulumi_azure_native/insights/private_link_scope.py,sha256=Uz6_BzmHgDYkAqee0eLzvq-co-72euKjhzFh7_PQ7LY,12030
|
|
8486
8486
|
pulumi_azure_native/insights/private_link_scoped_resource.py,sha256=kDbmTOUxwMMySjUtjvBhXqFYu8vi6Ap4-vT-AVk0z8o,9732
|
|
@@ -18801,7 +18801,7 @@ pulumi_azure_native/workloads/v20231001preview/sap_central_instance.py,sha256=Ke
|
|
|
18801
18801
|
pulumi_azure_native/workloads/v20231001preview/sap_database_instance.py,sha256=-aR0aCgupI8LNymrLC6Llgkky68v4ZTd2mawd9Lj13U,13907
|
|
18802
18802
|
pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py,sha256=kh_uPVrU8zJqqfe7v2--2sR1w5evu1dVlo0K44bTAQ0,11157
|
|
18803
18803
|
pulumi_azure_native/workloads/v20231001preview/sap_virtual_instance.py,sha256=dMa-ylYX90O5UGT8A5yheKhQqS2_1pLbw3OhbgCfLMQ,24031
|
|
18804
|
-
pulumi_azure_native-2.21.
|
|
18805
|
-
pulumi_azure_native-2.21.
|
|
18806
|
-
pulumi_azure_native-2.21.
|
|
18807
|
-
pulumi_azure_native-2.21.
|
|
18804
|
+
pulumi_azure_native-2.21.2a1702068757.dist-info/METADATA,sha256=1w7jO__Q_rsOrllRg04SlUtVpKqwlXdgpftQZRtxD7w,3567
|
|
18805
|
+
pulumi_azure_native-2.21.2a1702068757.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
18806
|
+
pulumi_azure_native-2.21.2a1702068757.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
18807
|
+
pulumi_azure_native-2.21.2a1702068757.dist-info/RECORD,,
|
{pulumi_azure_native-2.21.1.dist-info → pulumi_azure_native-2.21.2a1702068757.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|