pulumi-newrelic 5.38.0__py3-none-any.whl → 5.38.0a1733795875__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -24,7 +24,6 @@ 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,
28
27
  description: Optional[pulumi.Input[str]] = None,
29
28
  name: Optional[pulumi.Input[str]] = None,
30
29
  schedule: Optional[pulumi.Input['AlertMutingRuleScheduleArgs']] = None):
@@ -33,7 +32,6 @@ class AlertMutingRuleArgs:
33
32
  :param pulumi.Input['AlertMutingRuleConditionArgs'] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
34
33
  :param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
35
34
  :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`.
37
35
  :param pulumi.Input[str] description: The description of the MutingRule.
38
36
  :param pulumi.Input[str] name: The name of the MutingRule.
39
37
  :param pulumi.Input['AlertMutingRuleScheduleArgs'] schedule: Specify a schedule for enabling the MutingRule. See Schedule below for details
@@ -42,8 +40,6 @@ class AlertMutingRuleArgs:
42
40
  pulumi.set(__self__, "enabled", enabled)
43
41
  if account_id is not None:
44
42
  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)
47
43
  if description is not None:
48
44
  pulumi.set(__self__, "description", description)
49
45
  if name is not None:
@@ -87,18 +83,6 @@ class AlertMutingRuleArgs:
87
83
  def account_id(self, value: Optional[pulumi.Input[str]]):
88
84
  pulumi.set(self, "account_id", value)
89
85
 
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
-
102
86
  @property
103
87
  @pulumi.getter
104
88
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -140,7 +124,6 @@ class AlertMutingRuleArgs:
140
124
  class _AlertMutingRuleState:
141
125
  def __init__(__self__, *,
142
126
  account_id: Optional[pulumi.Input[str]] = None,
143
- action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
144
127
  condition: Optional[pulumi.Input['AlertMutingRuleConditionArgs']] = None,
145
128
  description: Optional[pulumi.Input[str]] = None,
146
129
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -149,7 +132,6 @@ class _AlertMutingRuleState:
149
132
  """
150
133
  Input properties used for looking up and filtering AlertMutingRule resources.
151
134
  :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`.
153
135
  :param pulumi.Input['AlertMutingRuleConditionArgs'] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
154
136
  :param pulumi.Input[str] description: The description of the MutingRule.
155
137
  :param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
@@ -158,8 +140,6 @@ class _AlertMutingRuleState:
158
140
  """
159
141
  if account_id is not None:
160
142
  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)
163
143
  if condition is not None:
164
144
  pulumi.set(__self__, "condition", condition)
165
145
  if description is not None:
@@ -183,18 +163,6 @@ class _AlertMutingRuleState:
183
163
  def account_id(self, value: Optional[pulumi.Input[str]]):
184
164
  pulumi.set(self, "account_id", value)
185
165
 
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
-
198
166
  @property
199
167
  @pulumi.getter
200
168
  def condition(self) -> Optional[pulumi.Input['AlertMutingRuleConditionArgs']]:
@@ -262,7 +230,6 @@ class AlertMutingRule(pulumi.CustomResource):
262
230
  resource_name: str,
263
231
  opts: Optional[pulumi.ResourceOptions] = None,
264
232
  account_id: Optional[pulumi.Input[str]] = None,
265
- action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
266
233
  condition: Optional[pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']]] = None,
267
234
  description: Optional[pulumi.Input[str]] = None,
268
235
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -306,8 +273,7 @@ class AlertMutingRule(pulumi.CustomResource):
306
273
  "FRIDAY",
307
274
  ],
308
275
  "repeat_count": 42,
309
- },
310
- action_on_muting_rule_window_ended="CLOSE_ISSUES_ON_INACTIVE")
276
+ })
311
277
  ```
312
278
 
313
279
  ## Import
@@ -321,7 +287,6 @@ class AlertMutingRule(pulumi.CustomResource):
321
287
  :param str resource_name: The name of the resource.
322
288
  :param pulumi.ResourceOptions opts: Options for the resource.
323
289
  :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`.
325
290
  :param pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
326
291
  :param pulumi.Input[str] description: The description of the MutingRule.
327
292
  :param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
@@ -371,8 +336,7 @@ class AlertMutingRule(pulumi.CustomResource):
371
336
  "FRIDAY",
372
337
  ],
373
338
  "repeat_count": 42,
374
- },
375
- action_on_muting_rule_window_ended="CLOSE_ISSUES_ON_INACTIVE")
339
+ })
376
340
  ```
377
341
 
378
342
  ## Import
@@ -399,7 +363,6 @@ class AlertMutingRule(pulumi.CustomResource):
399
363
  resource_name: str,
400
364
  opts: Optional[pulumi.ResourceOptions] = None,
401
365
  account_id: Optional[pulumi.Input[str]] = None,
402
- action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
403
366
  condition: Optional[pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']]] = None,
404
367
  description: Optional[pulumi.Input[str]] = None,
405
368
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -415,7 +378,6 @@ class AlertMutingRule(pulumi.CustomResource):
415
378
  __props__ = AlertMutingRuleArgs.__new__(AlertMutingRuleArgs)
416
379
 
417
380
  __props__.__dict__["account_id"] = account_id
418
- __props__.__dict__["action_on_muting_rule_window_ended"] = action_on_muting_rule_window_ended
419
381
  if condition is None and not opts.urn:
420
382
  raise TypeError("Missing required property 'condition'")
421
383
  __props__.__dict__["condition"] = condition
@@ -436,7 +398,6 @@ class AlertMutingRule(pulumi.CustomResource):
436
398
  id: pulumi.Input[str],
437
399
  opts: Optional[pulumi.ResourceOptions] = None,
438
400
  account_id: Optional[pulumi.Input[str]] = None,
439
- action_on_muting_rule_window_ended: Optional[pulumi.Input[str]] = None,
440
401
  condition: Optional[pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']]] = None,
441
402
  description: Optional[pulumi.Input[str]] = None,
442
403
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -450,7 +411,6 @@ class AlertMutingRule(pulumi.CustomResource):
450
411
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
451
412
  :param pulumi.ResourceOptions opts: Options for the resource.
452
413
  :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`.
454
414
  :param pulumi.Input[Union['AlertMutingRuleConditionArgs', 'AlertMutingRuleConditionArgsDict']] condition: The condition that defines which incidents to target. See Nested condition blocks below for details.
455
415
  :param pulumi.Input[str] description: The description of the MutingRule.
456
416
  :param pulumi.Input[bool] enabled: Whether the MutingRule is enabled.
@@ -462,7 +422,6 @@ class AlertMutingRule(pulumi.CustomResource):
462
422
  __props__ = _AlertMutingRuleState.__new__(_AlertMutingRuleState)
463
423
 
464
424
  __props__.__dict__["account_id"] = account_id
465
- __props__.__dict__["action_on_muting_rule_window_ended"] = action_on_muting_rule_window_ended
466
425
  __props__.__dict__["condition"] = condition
467
426
  __props__.__dict__["description"] = description
468
427
  __props__.__dict__["enabled"] = enabled
@@ -478,14 +437,6 @@ class AlertMutingRule(pulumi.CustomResource):
478
437
  """
479
438
  return pulumi.get(self, "account_id")
480
439
 
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
-
489
440
  @property
490
441
  @pulumi.getter
491
442
  def condition(self) -> pulumi.Output['outputs.AlertMutingRuleCondition']:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "newrelic",
4
- "version": "5.38.0"
4
+ "version": "5.38.0-alpha.1733795875"
5
5
  }
@@ -1,15 +1,15 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.38.0
3
+ Version: 5.38.0a1733795875
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
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-newrelic
8
8
  Keywords: pulumi,new relic
9
- Requires-Python: >=3.9
9
+ Requires-Python: >=3.8
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.142.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.136.0
13
13
  Requires-Dist: semver>=2.8.1
14
14
  Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
15
15
 
@@ -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=Rn0k0cTpbsKkq_YuHHRmrLui-pP-J10acm49f7DeJms,22738
7
+ pulumi_newrelic/alert_muting_rule.py,sha256=XM6cL1REgXSizAc43bqTAo9gxwmvacNvfpS7pZWjFdo,19328
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=JIOnI_lftVUwv5X5b6n8G2rg6LUE-UsKpdQ97s-7GrE,68
45
+ pulumi_newrelic/pulumi-plugin.json,sha256=Fz0D9hxfOoiy4eYu8Lu1eO_YATr_yN6E433BMQ_XaeU,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.0.dist-info/METADATA,sha256=O-Iq12bTtl9_heUeYDpDAiXlhXzaQ3qLGG0C5OR9HcQ,3952
88
- pulumi_newrelic-5.38.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
89
- pulumi_newrelic-5.38.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
- pulumi_newrelic-5.38.0.dist-info/RECORD,,
87
+ pulumi_newrelic-5.38.0a1733795875.dist-info/METADATA,sha256=xyqgECoXN4pZM3J9tkabK1eq2UhDaR1RbHYXGZUh_uY,3963
88
+ pulumi_newrelic-5.38.0a1733795875.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
89
+ pulumi_newrelic-5.38.0a1733795875.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
90
+ pulumi_newrelic-5.38.0a1733795875.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5