pulumi-newrelic 5.38.0a1736315878__py3-none-any.whl → 5.38.0a1736415260__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_newrelic/alert_muting_rule.py +51 -2
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.38.0a1736315878.dist-info → pulumi_newrelic-5.38.0a1736415260.dist-info}/METADATA +2 -2
- {pulumi_newrelic-5.38.0a1736315878.dist-info → pulumi_newrelic-5.38.0a1736415260.dist-info}/RECORD +6 -6
- {pulumi_newrelic-5.38.0a1736315878.dist-info → pulumi_newrelic-5.38.0a1736415260.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.38.0a1736315878.dist-info → pulumi_newrelic-5.38.0a1736415260.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,7 @@ class AlertMutingRuleArgs:
|
|
24
24
|
condition: pulumi.Input['AlertMutingRuleConditionArgs'],
|
25
25
|
enabled: pulumi.Input[bool],
|
26
26
|
account_id: Optional[pulumi.Input[str]] = None,
|
27
|
+
action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
|
27
28
|
description: Optional[pulumi.Input[str]] = None,
|
28
29
|
name: Optional[pulumi.Input[str]] = None,
|
29
30
|
schedule: Optional[pulumi.Input['AlertMutingRuleScheduleArgs']] = None):
|
@@ -32,6 +33,7 @@ class AlertMutingRuleArgs:
|
|
32
33
|
:param pulumi.Input['AlertMutingRuleConditionArgs'] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
|
33
34
|
:param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
|
34
35
|
:param pulumi.Input[str] account_id: The account id of the MutingRule.
|
36
|
+
:param pulumi.Input[str] action_on_muting_rule_window_ended: The action when the muting rule window is ended or disabled. Valid values are `CLOSE_ISSUES_ON_INACTIVE`, `DO_NOTHING`.
|
35
37
|
:param pulumi.Input[str] description: The description of the MutingRule.
|
36
38
|
:param pulumi.Input[str] name: The name of the MutingRule.
|
37
39
|
:param pulumi.Input['AlertMutingRuleScheduleArgs'] schedule: Specify a schedule for enabling the MutingRule. See Schedule below for details
|
@@ -40,6 +42,8 @@ class AlertMutingRuleArgs:
|
|
40
42
|
pulumi.set(__self__, "enabled", enabled)
|
41
43
|
if account_id is not None:
|
42
44
|
pulumi.set(__self__, "account_id", account_id)
|
45
|
+
if action_on_muting_rule_window_ended is not None:
|
46
|
+
pulumi.set(__self__, "action_on_muting_rule_window_ended", action_on_muting_rule_window_ended)
|
43
47
|
if description is not None:
|
44
48
|
pulumi.set(__self__, "description", description)
|
45
49
|
if name is not None:
|
@@ -83,6 +87,18 @@ class AlertMutingRuleArgs:
|
|
83
87
|
def account_id(self, value: Optional[pulumi.Input[str]]):
|
84
88
|
pulumi.set(self, "account_id", value)
|
85
89
|
|
90
|
+
@property
|
91
|
+
@pulumi.getter(name="actionOnMutingRuleWindowEnded")
|
92
|
+
def action_on_muting_rule_window_ended(self) -> Optional[pulumi.Input[str]]:
|
93
|
+
"""
|
94
|
+
The action when the muting rule window is ended or disabled. Valid values are `CLOSE_ISSUES_ON_INACTIVE`, `DO_NOTHING`.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "action_on_muting_rule_window_ended")
|
97
|
+
|
98
|
+
@action_on_muting_rule_window_ended.setter
|
99
|
+
def action_on_muting_rule_window_ended(self, value: Optional[pulumi.Input[str]]):
|
100
|
+
pulumi.set(self, "action_on_muting_rule_window_ended", value)
|
101
|
+
|
86
102
|
@property
|
87
103
|
@pulumi.getter
|
88
104
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -124,6 +140,7 @@ class AlertMutingRuleArgs:
|
|
124
140
|
class _AlertMutingRuleState:
|
125
141
|
def __init__(__self__, *,
|
126
142
|
account_id: Optional[pulumi.Input[str]] = None,
|
143
|
+
action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
|
127
144
|
condition: Optional[pulumi.Input['AlertMutingRuleConditionArgs']] = None,
|
128
145
|
description: Optional[pulumi.Input[str]] = None,
|
129
146
|
enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -132,6 +149,7 @@ class _AlertMutingRuleState:
|
|
132
149
|
"""
|
133
150
|
Input properties used for looking up and filtering AlertMutingRule resources.
|
134
151
|
:param pulumi.Input[str] account_id: The account id of the MutingRule.
|
152
|
+
:param pulumi.Input[str] action_on_muting_rule_window_ended: The action when the muting rule window is ended or disabled. Valid values are `CLOSE_ISSUES_ON_INACTIVE`, `DO_NOTHING`.
|
135
153
|
:param pulumi.Input['AlertMutingRuleConditionArgs'] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
|
136
154
|
:param pulumi.Input[str] description: The description of the MutingRule.
|
137
155
|
:param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
|
@@ -140,6 +158,8 @@ class _AlertMutingRuleState:
|
|
140
158
|
"""
|
141
159
|
if account_id is not None:
|
142
160
|
pulumi.set(__self__, "account_id", account_id)
|
161
|
+
if action_on_muting_rule_window_ended is not None:
|
162
|
+
pulumi.set(__self__, "action_on_muting_rule_window_ended", action_on_muting_rule_window_ended)
|
143
163
|
if condition is not None:
|
144
164
|
pulumi.set(__self__, "condition", condition)
|
145
165
|
if description is not None:
|
@@ -163,6 +183,18 @@ class _AlertMutingRuleState:
|
|
163
183
|
def account_id(self, value: Optional[pulumi.Input[str]]):
|
164
184
|
pulumi.set(self, "account_id", value)
|
165
185
|
|
186
|
+
@property
|
187
|
+
@pulumi.getter(name="actionOnMutingRuleWindowEnded")
|
188
|
+
def action_on_muting_rule_window_ended(self) -> Optional[pulumi.Input[str]]:
|
189
|
+
"""
|
190
|
+
The action when the muting rule window is ended or disabled. Valid values are `CLOSE_ISSUES_ON_INACTIVE`, `DO_NOTHING`.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "action_on_muting_rule_window_ended")
|
193
|
+
|
194
|
+
@action_on_muting_rule_window_ended.setter
|
195
|
+
def action_on_muting_rule_window_ended(self, value: Optional[pulumi.Input[str]]):
|
196
|
+
pulumi.set(self, "action_on_muting_rule_window_ended", value)
|
197
|
+
|
166
198
|
@property
|
167
199
|
@pulumi.getter
|
168
200
|
def condition(self) -> Optional[pulumi.Input['AlertMutingRuleConditionArgs']]:
|
@@ -230,6 +262,7 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
230
262
|
resource_name: str,
|
231
263
|
opts: Optional[pulumi.ResourceOptions] = None,
|
232
264
|
account_id: Optional[pulumi.Input[str]] = None,
|
265
|
+
action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
|
233
266
|
condition: Optional[pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']]] = None,
|
234
267
|
description: Optional[pulumi.Input[str]] = None,
|
235
268
|
enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -273,7 +306,8 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
273
306
|
"FRIDAY",
|
274
307
|
],
|
275
308
|
"repeat_count": 42,
|
276
|
-
}
|
309
|
+
},
|
310
|
+
action_on_muting_rule_window_ended="CLOSE_ISSUES_ON_INACTIVE")
|
277
311
|
```
|
278
312
|
|
279
313
|
## Import
|
@@ -287,6 +321,7 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
287
321
|
:param str resource_name: The name of the resource.
|
288
322
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
289
323
|
:param pulumi.Input[str] account_id: The account id of the MutingRule.
|
324
|
+
:param pulumi.Input[str] action_on_muting_rule_window_ended: The action when the muting rule window is ended or disabled. Valid values are `CLOSE_ISSUES_ON_INACTIVE`, `DO_NOTHING`.
|
290
325
|
:param pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
|
291
326
|
:param pulumi.Input[str] description: The description of the MutingRule.
|
292
327
|
:param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
|
@@ -336,7 +371,8 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
336
371
|
"FRIDAY",
|
337
372
|
],
|
338
373
|
"repeat_count": 42,
|
339
|
-
}
|
374
|
+
},
|
375
|
+
action_on_muting_rule_window_ended="CLOSE_ISSUES_ON_INACTIVE")
|
340
376
|
```
|
341
377
|
|
342
378
|
## Import
|
@@ -363,6 +399,7 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
363
399
|
resource_name: str,
|
364
400
|
opts: Optional[pulumi.ResourceOptions] = None,
|
365
401
|
account_id: Optional[pulumi.Input[str]] = None,
|
402
|
+
action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
|
366
403
|
condition: Optional[pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']]] = None,
|
367
404
|
description: Optional[pulumi.Input[str]] = None,
|
368
405
|
enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -378,6 +415,7 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
378
415
|
__props__ = AlertMutingRuleArgs.__new__(AlertMutingRuleArgs)
|
379
416
|
|
380
417
|
__props__.__dict__["account_id"] = account_id
|
418
|
+
__props__.__dict__["action_on_muting_rule_window_ended"] = action_on_muting_rule_window_ended
|
381
419
|
if condition is None and not opts.urn:
|
382
420
|
raise TypeError("Missing required property 'condition'")
|
383
421
|
__props__.__dict__["condition"] = condition
|
@@ -398,6 +436,7 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
398
436
|
id: pulumi.Input[str],
|
399
437
|
opts: Optional[pulumi.ResourceOptions] = None,
|
400
438
|
account_id: Optional[pulumi.Input[str]] = None,
|
439
|
+
action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
|
401
440
|
condition: Optional[pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']]] = None,
|
402
441
|
description: Optional[pulumi.Input[str]] = None,
|
403
442
|
enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -411,6 +450,7 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
411
450
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
412
451
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
413
452
|
:param pulumi.Input[str] account_id: The account id of the MutingRule.
|
453
|
+
:param pulumi.Input[str] action_on_muting_rule_window_ended: The action when the muting rule window is ended or disabled. Valid values are `CLOSE_ISSUES_ON_INACTIVE`, `DO_NOTHING`.
|
414
454
|
:param pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
|
415
455
|
:param pulumi.Input[str] description: The description of the MutingRule.
|
416
456
|
:param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
|
@@ -422,6 +462,7 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
422
462
|
__props__ = _AlertMutingRuleState.__new__(_AlertMutingRuleState)
|
423
463
|
|
424
464
|
__props__.__dict__["account_id"] = account_id
|
465
|
+
__props__.__dict__["action_on_muting_rule_window_ended"] = action_on_muting_rule_window_ended
|
425
466
|
__props__.__dict__["condition"] = condition
|
426
467
|
__props__.__dict__["description"] = description
|
427
468
|
__props__.__dict__["enabled"] = enabled
|
@@ -437,6 +478,14 @@ class AlertMutingRule(pulumi.CustomResource):
|
|
437
478
|
"""
|
438
479
|
return pulumi.get(self, "account_id")
|
439
480
|
|
481
|
+
@property
|
482
|
+
@pulumi.getter(name="actionOnMutingRuleWindowEnded")
|
483
|
+
def action_on_muting_rule_window_ended(self) -> pulumi.Output[str]:
|
484
|
+
"""
|
485
|
+
The action when the muting rule window is ended or disabled. Valid values are `CLOSE_ISSUES_ON_INACTIVE`, `DO_NOTHING`.
|
486
|
+
"""
|
487
|
+
return pulumi.get(self, "action_on_muting_rule_window_ended")
|
488
|
+
|
440
489
|
@property
|
441
490
|
@pulumi.getter
|
442
491
|
def condition(self) -> pulumi.Output['outputs.AlertMutingRuleCondition']:
|
{pulumi_newrelic-5.38.0a1736315878.dist-info → pulumi_newrelic-5.38.0a1736415260.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: pulumi_newrelic
|
3
|
-
Version: 5.38.
|
3
|
+
Version: 5.38.0a1736415260
|
4
4
|
Summary: A Pulumi package for creating and managing New Relic resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
{pulumi_newrelic-5.38.0a1736315878.dist-info → pulumi_newrelic-5.38.0a1736415260.dist-info}/RECORD
RENAMED
@@ -4,7 +4,7 @@ pulumi_newrelic/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg
|
|
4
4
|
pulumi_newrelic/account_management.py,sha256=qFD7xsT6kNFNY3ZEO-15E4T6mSIOQ6uw_Goqf7-NkTU,8963
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=QNF_jzaDJLKD78qxtBnDpRaAVMJigmGYQtSWuCEIC7g,21825
|
6
6
|
pulumi_newrelic/alert_condition.py,sha256=1Z6zrlx82N6hrQDpIMCAATUx4YH8oXiS1pNmGiW94bQ,46708
|
7
|
-
pulumi_newrelic/alert_muting_rule.py,sha256=
|
7
|
+
pulumi_newrelic/alert_muting_rule.py,sha256=Rn0k0cTpbsKkq_YuHHRmrLui-pP-J10acm49f7DeJms,22738
|
8
8
|
pulumi_newrelic/alert_policy.py,sha256=YSHSasCpx-QmCs5B4co0z_-EpS_5jCI-WhxFtjZJn5A,26280
|
9
9
|
pulumi_newrelic/alert_policy_channel.py,sha256=yabTDFEaKswzQVKdPX_fxqaqV8OyilM0xBljXo1wHAU,16243
|
10
10
|
pulumi_newrelic/api_access_key.py,sha256=H2riFt5pmzeWpOqcDLnMloPKaR8-VRcrCfoNm07VDNM,22431
|
@@ -42,7 +42,7 @@ pulumi_newrelic/one_dashboard_json.py,sha256=EZqg6akwsh-SqsRjCmQzDjgsjvbIfKsX2zt
|
|
42
42
|
pulumi_newrelic/one_dashboard_raw.py,sha256=__3ZuSPVubBaC5iPa9V6q1SG7lHFcpNdVsLXQie5c7U,23668
|
43
43
|
pulumi_newrelic/outputs.py,sha256=Mh-9t88XHsd4htBHR3sLxthqA6DQGhJORj80ZhkBZcM,576713
|
44
44
|
pulumi_newrelic/provider.py,sha256=OjBqZT1L0Jt_1-c3zMSSGA03zIZjgif7RrThna-ojng,18493
|
45
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
45
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=pIoPi36seUHOXvJxFj-QkH0qf9Sx-9tmiEpFBRfrczQ,85
|
46
46
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
pulumi_newrelic/service_level.py,sha256=Dk_AoEFTmaJAg5v8SKBN4-a4T-MGXDbPubxsnB98sFk,28980
|
48
48
|
pulumi_newrelic/user.py,sha256=guVvPGAeuR-mQ6_bA_MvBP7GY2grEmnbdNkc_5hs1us,19116
|
@@ -84,7 +84,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=-pj6W9dg9fB-jtnrTH8wnd7o_j
|
|
84
84
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=fwRaviLtkQ0ViK3V1W98npxcN_qBXFevwuHgHArl3m0,66220
|
85
85
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=EilBGvvvqmADHo1VPeWfQkCdc2GYRO8Dq9-lktE7Y3M,15776
|
86
86
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=7tqzQ9InEMRdfAr9K_vpLm-OCPHyIKEH4f8CT2BxaLQ,49116
|
87
|
-
pulumi_newrelic-5.38.
|
88
|
-
pulumi_newrelic-5.38.
|
89
|
-
pulumi_newrelic-5.38.
|
90
|
-
pulumi_newrelic-5.38.
|
87
|
+
pulumi_newrelic-5.38.0a1736415260.dist-info/METADATA,sha256=JbYYvRijUdGtN3pSU18k4PEOW8xFKMAtbKIe3YXZeLU,3963
|
88
|
+
pulumi_newrelic-5.38.0a1736415260.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
89
|
+
pulumi_newrelic-5.38.0a1736415260.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
90
|
+
pulumi_newrelic-5.38.0a1736415260.dist-info/RECORD,,
|
File without changes
|