pulumi-newrelic 5.37.0a1733394031__py3-none-any.whl → 5.38.0__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/get_account.py +2 -2
- pulumi_newrelic/get_alert_channel.py +2 -2
- pulumi_newrelic/get_alert_policy.py +2 -2
- pulumi_newrelic/get_application.py +2 -2
- pulumi_newrelic/get_authentication_domain.py +2 -2
- pulumi_newrelic/get_cloud_account.py +2 -2
- pulumi_newrelic/get_entity.py +2 -2
- pulumi_newrelic/get_group.py +2 -2
- pulumi_newrelic/get_key_transaction.py +2 -2
- pulumi_newrelic/get_notification_destination.py +2 -2
- pulumi_newrelic/get_obfuscation_expression.py +2 -2
- pulumi_newrelic/get_service_level_alert_helper.py +2 -2
- pulumi_newrelic/get_test_grok_pattern.py +2 -2
- pulumi_newrelic/get_user.py +2 -2
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/synthetics/get_private_location.py +2 -2
- pulumi_newrelic/synthetics/get_secure_credential.py +2 -2
- {pulumi_newrelic-5.37.0a1733394031.dist-info → pulumi_newrelic-5.38.0.dist-info}/METADATA +4 -4
- {pulumi_newrelic-5.37.0a1733394031.dist-info → pulumi_newrelic-5.38.0.dist-info}/RECORD +22 -22
- {pulumi_newrelic-5.37.0a1733394031.dist-info → pulumi_newrelic-5.38.0.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.37.0a1733394031.dist-info → pulumi_newrelic-5.38.0.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/get_account.py
CHANGED
@@ -114,7 +114,7 @@ def get_account(account_id: Optional[str] = None,
|
|
114
114
|
def get_account_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
115
115
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
116
116
|
scope: Optional[pulumi.Input[Optional[str]]] = None,
|
117
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAccountResult]:
|
117
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountResult]:
|
118
118
|
"""
|
119
119
|
Use this data source to get information about a specific account in New Relic.
|
120
120
|
Accounts can be located by ID or name. At most one of the two attributes can
|
@@ -138,7 +138,7 @@ def get_account_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
138
138
|
__args__['accountId'] = account_id
|
139
139
|
__args__['name'] = name
|
140
140
|
__args__['scope'] = scope
|
141
|
-
opts = pulumi.
|
141
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
142
142
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getAccount:getAccount', __args__, opts=opts, typ=GetAccountResult)
|
143
143
|
return __ret__.apply(lambda __response__: GetAccountResult(
|
144
144
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -131,7 +131,7 @@ def get_alert_channel(account_id: Optional[str] = None,
|
|
131
131
|
type=pulumi.get(__ret__, 'type'))
|
132
132
|
def get_alert_channel_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
133
133
|
name: Optional[pulumi.Input[str]] = None,
|
134
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAlertChannelResult]:
|
134
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertChannelResult]:
|
135
135
|
"""
|
136
136
|
Use this data source to get information about a specific alert channel in New Relic that already exists.
|
137
137
|
|
@@ -144,7 +144,7 @@ def get_alert_channel_output(account_id: Optional[pulumi.Input[Optional[str]]] =
|
|
144
144
|
__args__ = dict()
|
145
145
|
__args__['accountId'] = account_id
|
146
146
|
__args__['name'] = name
|
147
|
-
opts = pulumi.
|
147
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
148
148
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getAlertChannel:getAlertChannel', __args__, opts=opts, typ=GetAlertChannelResult)
|
149
149
|
return __ret__.apply(lambda __response__: GetAlertChannelResult(
|
150
150
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -138,7 +138,7 @@ def get_alert_policy(account_id: Optional[str] = None,
|
|
138
138
|
def get_alert_policy_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
139
139
|
incident_preference: Optional[pulumi.Input[Optional[str]]] = None,
|
140
140
|
name: Optional[pulumi.Input[str]] = None,
|
141
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAlertPolicyResult]:
|
141
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAlertPolicyResult]:
|
142
142
|
"""
|
143
143
|
Use this data source to get information about a specific alert policy in New Relic that already exists.
|
144
144
|
|
@@ -154,7 +154,7 @@ def get_alert_policy_output(account_id: Optional[pulumi.Input[Optional[str]]] =
|
|
154
154
|
__args__['accountId'] = account_id
|
155
155
|
__args__['incidentPreference'] = incident_preference
|
156
156
|
__args__['name'] = name
|
157
|
-
opts = pulumi.
|
157
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
158
158
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getAlertPolicy:getAlertPolicy', __args__, opts=opts, typ=GetAlertPolicyResult)
|
159
159
|
return __ret__.apply(lambda __response__: GetAlertPolicyResult(
|
160
160
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -127,7 +127,7 @@ def get_application(name: Optional[str] = None,
|
|
127
127
|
instance_ids=pulumi.get(__ret__, 'instance_ids'),
|
128
128
|
name=pulumi.get(__ret__, 'name'))
|
129
129
|
def get_application_output(name: Optional[pulumi.Input[str]] = None,
|
130
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetApplicationResult]:
|
130
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetApplicationResult]:
|
131
131
|
"""
|
132
132
|
#### DEPRECATED! Use at your own risk. Use the `get_entity` data source instead. This feature may be removed in the next major release
|
133
133
|
|
@@ -162,7 +162,7 @@ def get_application_output(name: Optional[pulumi.Input[str]] = None,
|
|
162
162
|
"""
|
163
163
|
__args__ = dict()
|
164
164
|
__args__['name'] = name
|
165
|
-
opts = pulumi.
|
165
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
166
166
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getApplication:getApplication', __args__, opts=opts, typ=GetApplicationResult)
|
167
167
|
return __ret__.apply(lambda __response__: GetApplicationResult(
|
168
168
|
host_ids=pulumi.get(__response__, 'host_ids'),
|
@@ -85,7 +85,7 @@ def get_authentication_domain(name: Optional[str] = None,
|
|
85
85
|
id=pulumi.get(__ret__, 'id'),
|
86
86
|
name=pulumi.get(__ret__, 'name'))
|
87
87
|
def get_authentication_domain_output(name: Optional[pulumi.Input[str]] = None,
|
88
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAuthenticationDomainResult]:
|
88
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAuthenticationDomainResult]:
|
89
89
|
"""
|
90
90
|
Use this data source to fetch the ID of an authentication domain belonging to your account, matching the specified name.
|
91
91
|
|
@@ -104,7 +104,7 @@ def get_authentication_domain_output(name: Optional[pulumi.Input[str]] = None,
|
|
104
104
|
"""
|
105
105
|
__args__ = dict()
|
106
106
|
__args__['name'] = name
|
107
|
-
opts = pulumi.
|
107
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
108
108
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getAuthenticationDomain:getAuthenticationDomain', __args__, opts=opts, typ=GetAuthenticationDomainResult)
|
109
109
|
return __ret__.apply(lambda __response__: GetAuthenticationDomainResult(
|
110
110
|
id=pulumi.get(__response__, 'id'),
|
@@ -115,7 +115,7 @@ def get_cloud_account(account_id: Optional[str] = None,
|
|
115
115
|
def get_cloud_account_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
116
116
|
cloud_provider: Optional[pulumi.Input[str]] = None,
|
117
117
|
name: Optional[pulumi.Input[str]] = None,
|
118
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCloudAccountResult]:
|
118
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCloudAccountResult]:
|
119
119
|
"""
|
120
120
|
Use this data source to get information about a specific cloud account linked to New Relic.
|
121
121
|
Accounts can be located by a combination of New Relic Account ID, name and cloud provider (aws, gcp, azure, etc). Name and cloud provider are required attributes. If no account_id is specified on the resource the provider level account_id will be used.
|
@@ -140,7 +140,7 @@ def get_cloud_account_output(account_id: Optional[pulumi.Input[Optional[str]]] =
|
|
140
140
|
__args__['accountId'] = account_id
|
141
141
|
__args__['cloudProvider'] = cloud_provider
|
142
142
|
__args__['name'] = name
|
143
|
-
opts = pulumi.
|
143
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
144
144
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getCloudAccount:getCloudAccount', __args__, opts=opts, typ=GetCloudAccountResult)
|
145
145
|
return __ret__.apply(lambda __response__: GetCloudAccountResult(
|
146
146
|
account_id=pulumi.get(__response__, 'account_id'),
|
pulumi_newrelic/get_entity.py
CHANGED
@@ -220,7 +220,7 @@ def get_entity_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
220
220
|
name: Optional[pulumi.Input[str]] = None,
|
221
221
|
tags: Optional[pulumi.Input[Optional[Sequence[Union['GetEntityTagArgs', 'GetEntityTagArgsDict']]]]] = None,
|
222
222
|
type: Optional[pulumi.Input[Optional[str]]] = None,
|
223
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEntityResult]:
|
223
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEntityResult]:
|
224
224
|
"""
|
225
225
|
Use this data source to access information about an existing resource.
|
226
226
|
|
@@ -245,7 +245,7 @@ def get_entity_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
245
245
|
__args__['name'] = name
|
246
246
|
__args__['tags'] = tags
|
247
247
|
__args__['type'] = type
|
248
|
-
opts = pulumi.
|
248
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
249
249
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getEntity:getEntity', __args__, opts=opts, typ=GetEntityResult)
|
250
250
|
return __ret__.apply(lambda __response__: GetEntityResult(
|
251
251
|
account_id=pulumi.get(__response__, 'account_id'),
|
pulumi_newrelic/get_group.py
CHANGED
@@ -136,7 +136,7 @@ def get_group(authentication_domain_id: Optional[str] = None,
|
|
136
136
|
user_ids=pulumi.get(__ret__, 'user_ids'))
|
137
137
|
def get_group_output(authentication_domain_id: Optional[pulumi.Input[str]] = None,
|
138
138
|
name: Optional[pulumi.Input[str]] = None,
|
139
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetGroupResult]:
|
139
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetGroupResult]:
|
140
140
|
"""
|
141
141
|
The `Group` data source helps search for a group by its name and retrieve the ID of the matching group and other associated attributes.
|
142
142
|
|
@@ -181,7 +181,7 @@ def get_group_output(authentication_domain_id: Optional[pulumi.Input[str]] = Non
|
|
181
181
|
__args__ = dict()
|
182
182
|
__args__['authenticationDomainId'] = authentication_domain_id
|
183
183
|
__args__['name'] = name
|
184
|
-
opts = pulumi.
|
184
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
185
185
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getGroup:getGroup', __args__, opts=opts, typ=GetGroupResult)
|
186
186
|
return __ret__.apply(lambda __response__: GetGroupResult(
|
187
187
|
authentication_domain_id=pulumi.get(__response__, 'authentication_domain_id'),
|
@@ -158,7 +158,7 @@ def get_key_transaction(account_id: Optional[str] = None,
|
|
158
158
|
def get_key_transaction_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
159
159
|
guid: Optional[pulumi.Input[Optional[str]]] = None,
|
160
160
|
name: Optional[pulumi.Input[str]] = None,
|
161
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKeyTransactionResult]:
|
161
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetKeyTransactionResult]:
|
162
162
|
"""
|
163
163
|
Use this data source to get information about a specific key transaction in New Relic that already exists.
|
164
164
|
|
@@ -197,7 +197,7 @@ def get_key_transaction_output(account_id: Optional[pulumi.Input[Optional[str]]]
|
|
197
197
|
__args__['accountId'] = account_id
|
198
198
|
__args__['guid'] = guid
|
199
199
|
__args__['name'] = name
|
200
|
-
opts = pulumi.
|
200
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
201
201
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getKeyTransaction:getKeyTransaction', __args__, opts=opts, typ=GetKeyTransactionResult)
|
202
202
|
return __ret__.apply(lambda __response__: GetKeyTransactionResult(
|
203
203
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -178,7 +178,7 @@ def get_notification_destination_output(account_id: Optional[pulumi.Input[Option
|
|
178
178
|
id: Optional[pulumi.Input[Optional[str]]] = None,
|
179
179
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
180
180
|
secure_urls: Optional[pulumi.Input[Optional[Sequence[Union['GetNotificationDestinationSecureUrlArgs', 'GetNotificationDestinationSecureUrlArgsDict']]]]] = None,
|
181
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetNotificationDestinationResult]:
|
181
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNotificationDestinationResult]:
|
182
182
|
"""
|
183
183
|
Use this data source to access information about an existing resource.
|
184
184
|
|
@@ -194,7 +194,7 @@ def get_notification_destination_output(account_id: Optional[pulumi.Input[Option
|
|
194
194
|
__args__['id'] = id
|
195
195
|
__args__['name'] = name
|
196
196
|
__args__['secureUrls'] = secure_urls
|
197
|
-
opts = pulumi.
|
197
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
198
198
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getNotificationDestination:getNotificationDestination', __args__, opts=opts, typ=GetNotificationDestinationResult)
|
199
199
|
return __ret__.apply(lambda __response__: GetNotificationDestinationResult(
|
200
200
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -109,7 +109,7 @@ def get_obfuscation_expression(account_id: Optional[str] = None,
|
|
109
109
|
name=pulumi.get(__ret__, 'name'))
|
110
110
|
def get_obfuscation_expression_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
111
111
|
name: Optional[pulumi.Input[str]] = None,
|
112
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetObfuscationExpressionResult]:
|
112
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetObfuscationExpressionResult]:
|
113
113
|
"""
|
114
114
|
Use this data source to get information about a specific Obfuscation Expression in New Relic that already exists.
|
115
115
|
|
@@ -140,7 +140,7 @@ def get_obfuscation_expression_output(account_id: Optional[pulumi.Input[Optional
|
|
140
140
|
__args__ = dict()
|
141
141
|
__args__['accountId'] = account_id
|
142
142
|
__args__['name'] = name
|
143
|
-
opts = pulumi.
|
143
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
144
144
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getObfuscationExpression:getObfuscationExpression', __args__, opts=opts, typ=GetObfuscationExpressionResult)
|
145
145
|
return __ret__.apply(lambda __response__: GetObfuscationExpressionResult(
|
146
146
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -320,7 +320,7 @@ def get_service_level_alert_helper_output(alert_type: Optional[pulumi.Input[str]
|
|
320
320
|
sli_guid: Optional[pulumi.Input[str]] = None,
|
321
321
|
slo_period: Optional[pulumi.Input[int]] = None,
|
322
322
|
slo_target: Optional[pulumi.Input[float]] = None,
|
323
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceLevelAlertHelperResult]:
|
323
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServiceLevelAlertHelperResult]:
|
324
324
|
"""
|
325
325
|
Use this data source to obtain the necessary fields to set up alerts on your service levels. It can be used for a `custom` alert_type in order to set up an alert with custom tolerated budget consumption and custom evaluation period or for recommended ones like `fast_burn` or `slow_burn`. For more information check [the documentation](https://docs.newrelic.com/docs/service-level-management/alerts-slm/).
|
326
326
|
|
@@ -450,7 +450,7 @@ def get_service_level_alert_helper_output(alert_type: Optional[pulumi.Input[str]
|
|
450
450
|
__args__['sliGuid'] = sli_guid
|
451
451
|
__args__['sloPeriod'] = slo_period
|
452
452
|
__args__['sloTarget'] = slo_target
|
453
|
-
opts = pulumi.
|
453
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
454
454
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getServiceLevelAlertHelper:getServiceLevelAlertHelper', __args__, opts=opts, typ=GetServiceLevelAlertHelperResult)
|
455
455
|
return __ret__.apply(lambda __response__: GetServiceLevelAlertHelperResult(
|
456
456
|
alert_type=pulumi.get(__response__, 'alert_type'),
|
@@ -129,7 +129,7 @@ def get_test_grok_pattern(account_id: Optional[str] = None,
|
|
129
129
|
def get_test_grok_pattern_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
130
130
|
grok: Optional[pulumi.Input[str]] = None,
|
131
131
|
log_lines: Optional[pulumi.Input[Sequence[str]]] = None,
|
132
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTestGrokPatternResult]:
|
132
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTestGrokPatternResult]:
|
133
133
|
"""
|
134
134
|
## Example Usage
|
135
135
|
|
@@ -154,7 +154,7 @@ def get_test_grok_pattern_output(account_id: Optional[pulumi.Input[Optional[str]
|
|
154
154
|
__args__['accountId'] = account_id
|
155
155
|
__args__['grok'] = grok
|
156
156
|
__args__['logLines'] = log_lines
|
157
|
-
opts = pulumi.
|
157
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
158
158
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getTestGrokPattern:getTestGrokPattern', __args__, opts=opts, typ=GetTestGrokPatternResult)
|
159
159
|
return __ret__.apply(lambda __response__: GetTestGrokPatternResult(
|
160
160
|
account_id=pulumi.get(__response__, 'account_id'),
|
pulumi_newrelic/get_user.py
CHANGED
@@ -123,7 +123,7 @@ def get_user(authentication_domain_id: Optional[str] = None,
|
|
123
123
|
def get_user_output(authentication_domain_id: Optional[pulumi.Input[str]] = None,
|
124
124
|
email_id: Optional[pulumi.Input[Optional[str]]] = None,
|
125
125
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
126
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetUserResult]:
|
126
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUserResult]:
|
127
127
|
"""
|
128
128
|
The `User` data source helps search for a user by their name and/or email ID, and accordingly, fetch the ID of the matching user.
|
129
129
|
|
@@ -156,7 +156,7 @@ def get_user_output(authentication_domain_id: Optional[pulumi.Input[str]] = None
|
|
156
156
|
__args__['authenticationDomainId'] = authentication_domain_id
|
157
157
|
__args__['emailId'] = email_id
|
158
158
|
__args__['name'] = name
|
159
|
-
opts = pulumi.
|
159
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
160
160
|
__ret__ = pulumi.runtime.invoke_output('newrelic:index/getUser:getUser', __args__, opts=opts, typ=GetUserResult)
|
161
161
|
return __ret__.apply(lambda __response__: GetUserResult(
|
162
162
|
authentication_domain_id=pulumi.get(__response__, 'authentication_domain_id'),
|
@@ -128,7 +128,7 @@ def get_private_location(account_id: Optional[str] = None,
|
|
128
128
|
def get_private_location_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
129
129
|
keys: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
|
130
130
|
name: Optional[pulumi.Input[str]] = None,
|
131
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateLocationResult]:
|
131
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPrivateLocationResult]:
|
132
132
|
"""
|
133
133
|
Use this data source to get information about a specific Synthetics monitor private location in New Relic that already exists.
|
134
134
|
|
@@ -163,7 +163,7 @@ def get_private_location_output(account_id: Optional[pulumi.Input[Optional[str]]
|
|
163
163
|
__args__['accountId'] = account_id
|
164
164
|
__args__['keys'] = keys
|
165
165
|
__args__['name'] = name
|
166
|
-
opts = pulumi.
|
166
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
167
167
|
__ret__ = pulumi.runtime.invoke_output('newrelic:synthetics/getPrivateLocation:getPrivateLocation', __args__, opts=opts, typ=GetPrivateLocationResult)
|
168
168
|
return __ret__.apply(lambda __response__: GetPrivateLocationResult(
|
169
169
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -126,7 +126,7 @@ def get_secure_credential(account_id: Optional[str] = None,
|
|
126
126
|
last_updated=pulumi.get(__ret__, 'last_updated'))
|
127
127
|
def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[str]]] = None,
|
128
128
|
key: Optional[pulumi.Input[str]] = None,
|
129
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecureCredentialResult]:
|
129
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecureCredentialResult]:
|
130
130
|
"""
|
131
131
|
Use this data source to get information about a specific Synthetics secure credential in New Relic that already exists.
|
132
132
|
|
@@ -148,7 +148,7 @@ def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[str]
|
|
148
148
|
__args__ = dict()
|
149
149
|
__args__['accountId'] = account_id
|
150
150
|
__args__['key'] = key
|
151
|
-
opts = pulumi.
|
151
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
152
152
|
__ret__ = pulumi.runtime.invoke_output('newrelic:synthetics/getSecureCredential:getSecureCredential', __args__, opts=opts, typ=GetSecureCredentialResult)
|
153
153
|
return __ret__.apply(lambda __response__: GetSecureCredentialResult(
|
154
154
|
account_id=pulumi.get(__response__, 'account_id'),
|
@@ -1,15 +1,15 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: pulumi_newrelic
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.38.0
|
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
|
+
Requires-Python: >=3.9
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
Requires-Dist: parver>=0.2.1
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.142.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=
|
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
|
@@ -12,20 +12,20 @@ pulumi_newrelic/browser_application.py,sha256=e2q117v-Z0jkO8IM42_FIyRoXfi3vxRmnw
|
|
12
12
|
pulumi_newrelic/data_partition_rule.py,sha256=LSWS9PTDrxQT5g4MtATho2koW2NaA7ACYehXhGl2nZg,20607
|
13
13
|
pulumi_newrelic/entity_tags.py,sha256=tQC0ZH5lGkDdRydkTh49LKC4TvVNvYRactUl80qFl7s,10291
|
14
14
|
pulumi_newrelic/events_to_metrics_rule.py,sha256=gi1rxfZk5BkQy6YZEUCnxz7wdTuoGDU33QWW1UrkjXQ,16168
|
15
|
-
pulumi_newrelic/get_account.py,sha256=
|
16
|
-
pulumi_newrelic/get_alert_channel.py,sha256=
|
17
|
-
pulumi_newrelic/get_alert_policy.py,sha256=
|
18
|
-
pulumi_newrelic/get_application.py,sha256=
|
19
|
-
pulumi_newrelic/get_authentication_domain.py,sha256=
|
20
|
-
pulumi_newrelic/get_cloud_account.py,sha256=
|
21
|
-
pulumi_newrelic/get_entity.py,sha256=
|
22
|
-
pulumi_newrelic/get_group.py,sha256=
|
23
|
-
pulumi_newrelic/get_key_transaction.py,sha256=
|
24
|
-
pulumi_newrelic/get_notification_destination.py,sha256=
|
25
|
-
pulumi_newrelic/get_obfuscation_expression.py,sha256=
|
26
|
-
pulumi_newrelic/get_service_level_alert_helper.py,sha256=
|
27
|
-
pulumi_newrelic/get_test_grok_pattern.py,sha256
|
28
|
-
pulumi_newrelic/get_user.py,sha256=
|
15
|
+
pulumi_newrelic/get_account.py,sha256=wm7Go8m38m1efFN6BYO3SDGbtRi8olePar9rmhx_k4k,5405
|
16
|
+
pulumi_newrelic/get_alert_channel.py,sha256=YLE_cKmkta59SrMWPe51PNKS2R5NCgSN0_3w-IbmUiU,6262
|
17
|
+
pulumi_newrelic/get_alert_policy.py,sha256=shGUlMajOsA8f-26ka0be1vlVX5CQMflBtO3daGHtTg,9733
|
18
|
+
pulumi_newrelic/get_application.py,sha256=tuiIu3bevT6kjlF1e-1I_O609lEBNJZXxoftHHtBl24,5949
|
19
|
+
pulumi_newrelic/get_authentication_domain.py,sha256=iRyZZwzRWcD_goSgW6HkkTnLPOU7gi6FwU2XA_Bcqnc,4113
|
20
|
+
pulumi_newrelic/get_cloud_account.py,sha256=yryx1I4IAlSCj0i7_Nv5zUlJ0kiECFP8gW9_WxKoJ6o,5994
|
21
|
+
pulumi_newrelic/get_entity.py,sha256=0sKfbUi3l6UJloV_fb8e14OFqdHno-AqZTdWuKeiXr8,14278
|
22
|
+
pulumi_newrelic/get_group.py,sha256=dgZRsoOZ9QdSmUHwIU2Y_A8oLbIYWOfoa5LvjcczmNY,8562
|
23
|
+
pulumi_newrelic/get_key_transaction.py,sha256=za4GH-Djtpubh5kw167XBFW0_7ehK44dPJpLx6A0zgk,8316
|
24
|
+
pulumi_newrelic/get_notification_destination.py,sha256=oUUVQO-1RukbyQIzjOOeJoQczxZoolofCaO8ZARlpE0,9418
|
25
|
+
pulumi_newrelic/get_obfuscation_expression.py,sha256=2yCTCtJs6YfsmjI35jz4HK6E6kjSprgowymRDKgRa_Q,5587
|
26
|
+
pulumi_newrelic/get_service_level_alert_helper.py,sha256=_Ne2qJgU5cBifZrpeEJhG693PAytcgtrYEyKhPzEByk,21177
|
27
|
+
pulumi_newrelic/get_test_grok_pattern.py,sha256=-FQz3MXiLtZTP8_WKBF_I6jlrFPUO9v-H6HTxlBbKao,6388
|
28
|
+
pulumi_newrelic/get_user.py,sha256=SKr9IMLNV2zjZDczOjbIrZgHUf3354pWHcc2ovwxx5A,8095
|
29
29
|
pulumi_newrelic/group.py,sha256=mmXsfckBm6kZukT7eQX6UVbBSTDN-9YB69t8YuT09tc,15373
|
30
30
|
pulumi_newrelic/infra_alert_condition.py,sha256=KicN5-yNkDvxJV8M9oCSBn6hBC0ss5_oDFqoTFInlJU,58188
|
31
31
|
pulumi_newrelic/key_transaction.py,sha256=aNZHvMoYqe0TXLeQfqlPzBkMJNKasPcfLNdbzEqqrgQ,22875
|
@@ -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=JIOnI_lftVUwv5X5b6n8G2rg6LUE-UsKpdQ97s-7GrE,68
|
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
|
@@ -75,8 +75,8 @@ pulumi_newrelic/synthetics/_inputs.py,sha256=t6rumXJVnRfRj093NNi1EXCh98YsXg0TvO-
|
|
75
75
|
pulumi_newrelic/synthetics/alert_condition.py,sha256=aLL42c_oLJ4pGtMP3aMZVlDNqzvT3U8kaBxQmJ57O8I,21759
|
76
76
|
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=7jbVwvVgqaMLfU4L41069zifldHtKJiFJIOk7tj2qhk,37378
|
77
77
|
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=aUtMBRCcEMvimcIcvoib3Sw6UtAhVg9IXUZg4YUSdlE,39454
|
78
|
-
pulumi_newrelic/synthetics/get_private_location.py,sha256=
|
79
|
-
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=
|
78
|
+
pulumi_newrelic/synthetics/get_private_location.py,sha256=84JuemN2hx7YWXGIlkNDwjFc4qhJukrYkuF7UyvWSnM,6479
|
79
|
+
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=2wlyV4M-AHG9ZyL0qTU3lGCXbfiFlxfLVrI9GQk_0jo,6305
|
80
80
|
pulumi_newrelic/synthetics/monitor.py,sha256=-g3W_RUq1qz1PRsoAbdYuex53aMwLI1BG8FAeotEjy4,75202
|
81
81
|
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=-TcjxR-EXiwSMCZ6xVLT0cZ2HNPBvql4pCNQ2DLnInY,34834
|
82
82
|
pulumi_newrelic/synthetics/outputs.py,sha256=pDx2GOl0gpwiGLAFlK_6TB0qOUjIWLbK3DqabZ8dLxY,11391
|
@@ -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.
|
88
|
-
pulumi_newrelic-5.
|
89
|
-
pulumi_newrelic-5.
|
90
|
-
pulumi_newrelic-5.
|
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,,
|
{pulumi_newrelic-5.37.0a1733394031.dist-info → pulumi_newrelic-5.38.0.dist-info}/top_level.txt
RENAMED
File without changes
|