pulumi-newrelic 5.24.1__py3-none-any.whl → 5.25.0__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.
- pulumi_newrelic/_inputs.py +449 -43
- pulumi_newrelic/account_management.py +14 -14
- pulumi_newrelic/alert_channel.py +28 -28
- pulumi_newrelic/alert_condition.py +125 -84
- pulumi_newrelic/alert_muting_rule.py +21 -21
- pulumi_newrelic/alert_policy.py +27 -21
- pulumi_newrelic/entity_tags.py +7 -7
- pulumi_newrelic/get_alert_policy.py +9 -0
- pulumi_newrelic/get_service_level_alert_helper.py +18 -0
- pulumi_newrelic/infra_alert_condition.py +105 -126
- pulumi_newrelic/insights/event.py +13 -0
- pulumi_newrelic/notification_destination.py +14 -10
- pulumi_newrelic/nrql_drop_rule.py +28 -28
- pulumi_newrelic/one_dashboard.py +48 -42
- pulumi_newrelic/outputs.py +448 -43
- pulumi_newrelic/plugins/_inputs.py +8 -8
- pulumi_newrelic/plugins/outputs.py +8 -8
- pulumi_newrelic/plugins/workload.py +28 -28
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/service_level.py +79 -0
- pulumi_newrelic/synthetics/alert_condition.py +42 -14
- pulumi_newrelic/synthetics/get_secure_credential.py +8 -0
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +63 -49
- pulumi_newrelic/synthetics/secure_credential.py +14 -21
- {pulumi_newrelic-5.24.1.dist-info → pulumi_newrelic-5.25.0.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.24.1.dist-info → pulumi_newrelic-5.25.0.dist-info}/RECORD +28 -28
- {pulumi_newrelic-5.24.1.dist-info → pulumi_newrelic-5.25.0.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.24.1.dist-info → pulumi_newrelic-5.25.0.dist-info}/top_level.txt +0 -0
@@ -102,6 +102,10 @@ def get_secure_credential(account_id: Optional[str] = None,
|
|
102
102
|
|
103
103
|
foo = newrelic.synthetics.get_secure_credential(key="MY_KEY")
|
104
104
|
```
|
105
|
+
|
106
|
+
|
107
|
+
:param str account_id: The account in New Relic associated with the secure credential. Defaults to the account associated with the API key used.
|
108
|
+
:param str key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
105
109
|
"""
|
106
110
|
__args__ = dict()
|
107
111
|
__args__['accountId'] = account_id
|
@@ -134,5 +138,9 @@ def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[str]
|
|
134
138
|
|
135
139
|
foo = newrelic.synthetics.get_secure_credential(key="MY_KEY")
|
136
140
|
```
|
141
|
+
|
142
|
+
|
143
|
+
:param str account_id: The account in New Relic associated with the secure credential. Defaults to the account associated with the API key used.
|
144
|
+
:param str key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
137
145
|
"""
|
138
146
|
...
|
@@ -26,15 +26,17 @@ class MultiLocationAlertConditionArgs:
|
|
26
26
|
warning: Optional[pulumi.Input['MultiLocationAlertConditionWarningArgs']] = None):
|
27
27
|
"""
|
28
28
|
The set of arguments for constructing a MultiLocationAlertCondition resource.
|
29
|
-
:param pulumi.Input['MultiLocationAlertConditionCriticalArgs'] critical: A condition term with priority set to critical.
|
30
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
29
|
+
:param pulumi.Input['MultiLocationAlertConditionCriticalArgs'] critical: A condition term with the priority set to critical.
|
30
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The Monitor GUID's of the Synthetics monitors to alert on.
|
31
31
|
:param pulumi.Input[str] policy_id: The ID of the policy where this condition will be used.
|
32
|
-
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition.
|
33
|
-
:param pulumi.Input[str] name: The title of
|
32
|
+
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition. Defaults to true.
|
33
|
+
:param pulumi.Input[str] name: The title of the condition.
|
34
34
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
35
|
-
:param pulumi.Input[int] violation_time_limit_seconds:
|
36
|
-
|
37
|
-
|
35
|
+
:param pulumi.Input[int] violation_time_limit_seconds: The maximum number of seconds a violation can remain open before being closed by the system. The value must be between 300 seconds (5 minutes) to 2592000 seconds (30 days), both inclusive. Defaults to 259200 seconds (3 days) if this argument is not specified in the configuration, in accordance with the characteristics of this field in NerdGraph, as specified in the [docs](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/advanced-alerts/rest-api-alerts/alerts-conditions-api-field-names/#violation_time_limit_seconds).
|
36
|
+
:param pulumi.Input['MultiLocationAlertConditionWarningArgs'] warning: A condition term with the priority set to warning.
|
37
|
+
|
38
|
+
|
39
|
+
> **WARNING:** This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
|
38
40
|
"""
|
39
41
|
pulumi.set(__self__, "critical", critical)
|
40
42
|
pulumi.set(__self__, "entities", entities)
|
@@ -54,7 +56,7 @@ class MultiLocationAlertConditionArgs:
|
|
54
56
|
@pulumi.getter
|
55
57
|
def critical(self) -> pulumi.Input['MultiLocationAlertConditionCriticalArgs']:
|
56
58
|
"""
|
57
|
-
A condition term with priority set to critical.
|
59
|
+
A condition term with the priority set to critical.
|
58
60
|
"""
|
59
61
|
return pulumi.get(self, "critical")
|
60
62
|
|
@@ -66,7 +68,7 @@ class MultiLocationAlertConditionArgs:
|
|
66
68
|
@pulumi.getter
|
67
69
|
def entities(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
68
70
|
"""
|
69
|
-
The
|
71
|
+
The Monitor GUID's of the Synthetics monitors to alert on.
|
70
72
|
"""
|
71
73
|
return pulumi.get(self, "entities")
|
72
74
|
|
@@ -90,7 +92,7 @@ class MultiLocationAlertConditionArgs:
|
|
90
92
|
@pulumi.getter
|
91
93
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
92
94
|
"""
|
93
|
-
Set whether to enable the alert condition.
|
95
|
+
Set whether to enable the alert condition. Defaults to true.
|
94
96
|
"""
|
95
97
|
return pulumi.get(self, "enabled")
|
96
98
|
|
@@ -102,7 +104,7 @@ class MultiLocationAlertConditionArgs:
|
|
102
104
|
@pulumi.getter
|
103
105
|
def name(self) -> Optional[pulumi.Input[str]]:
|
104
106
|
"""
|
105
|
-
The title of
|
107
|
+
The title of the condition.
|
106
108
|
"""
|
107
109
|
return pulumi.get(self, "name")
|
108
110
|
|
@@ -126,8 +128,7 @@ class MultiLocationAlertConditionArgs:
|
|
126
128
|
@pulumi.getter(name="violationTimeLimitSeconds")
|
127
129
|
def violation_time_limit_seconds(self) -> Optional[pulumi.Input[int]]:
|
128
130
|
"""
|
129
|
-
|
130
|
-
select. Must be in the range of 300 to 2592000 (inclusive)
|
131
|
+
The maximum number of seconds a violation can remain open before being closed by the system. The value must be between 300 seconds (5 minutes) to 2592000 seconds (30 days), both inclusive. Defaults to 259200 seconds (3 days) if this argument is not specified in the configuration, in accordance with the characteristics of this field in NerdGraph, as specified in the [docs](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/advanced-alerts/rest-api-alerts/alerts-conditions-api-field-names/#violation_time_limit_seconds).
|
131
132
|
"""
|
132
133
|
return pulumi.get(self, "violation_time_limit_seconds")
|
133
134
|
|
@@ -139,7 +140,10 @@ class MultiLocationAlertConditionArgs:
|
|
139
140
|
@pulumi.getter
|
140
141
|
def warning(self) -> Optional[pulumi.Input['MultiLocationAlertConditionWarningArgs']]:
|
141
142
|
"""
|
142
|
-
A condition term with priority set to warning.
|
143
|
+
A condition term with the priority set to warning.
|
144
|
+
|
145
|
+
|
146
|
+
> **WARNING:** This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
|
143
147
|
"""
|
144
148
|
return pulumi.get(self, "warning")
|
145
149
|
|
@@ -162,16 +166,18 @@ class _MultiLocationAlertConditionState:
|
|
162
166
|
warning: Optional[pulumi.Input['MultiLocationAlertConditionWarningArgs']] = None):
|
163
167
|
"""
|
164
168
|
Input properties used for looking up and filtering MultiLocationAlertCondition resources.
|
165
|
-
:param pulumi.Input['MultiLocationAlertConditionCriticalArgs'] critical: A condition term with priority set to critical.
|
166
|
-
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition.
|
167
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
169
|
+
:param pulumi.Input['MultiLocationAlertConditionCriticalArgs'] critical: A condition term with the priority set to critical.
|
170
|
+
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition. Defaults to true.
|
171
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The Monitor GUID's of the Synthetics monitors to alert on.
|
168
172
|
:param pulumi.Input[str] entity_guid: The unique entity identifier of the condition in New Relic.
|
169
|
-
:param pulumi.Input[str] name: The title of
|
173
|
+
:param pulumi.Input[str] name: The title of the condition.
|
170
174
|
:param pulumi.Input[str] policy_id: The ID of the policy where this condition will be used.
|
171
175
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
172
|
-
:param pulumi.Input[int] violation_time_limit_seconds:
|
173
|
-
|
174
|
-
|
176
|
+
:param pulumi.Input[int] violation_time_limit_seconds: The maximum number of seconds a violation can remain open before being closed by the system. The value must be between 300 seconds (5 minutes) to 2592000 seconds (30 days), both inclusive. Defaults to 259200 seconds (3 days) if this argument is not specified in the configuration, in accordance with the characteristics of this field in NerdGraph, as specified in the [docs](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/advanced-alerts/rest-api-alerts/alerts-conditions-api-field-names/#violation_time_limit_seconds).
|
177
|
+
:param pulumi.Input['MultiLocationAlertConditionWarningArgs'] warning: A condition term with the priority set to warning.
|
178
|
+
|
179
|
+
|
180
|
+
> **WARNING:** This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
|
175
181
|
"""
|
176
182
|
if critical is not None:
|
177
183
|
pulumi.set(__self__, "critical", critical)
|
@@ -196,7 +202,7 @@ class _MultiLocationAlertConditionState:
|
|
196
202
|
@pulumi.getter
|
197
203
|
def critical(self) -> Optional[pulumi.Input['MultiLocationAlertConditionCriticalArgs']]:
|
198
204
|
"""
|
199
|
-
A condition term with priority set to critical.
|
205
|
+
A condition term with the priority set to critical.
|
200
206
|
"""
|
201
207
|
return pulumi.get(self, "critical")
|
202
208
|
|
@@ -208,7 +214,7 @@ class _MultiLocationAlertConditionState:
|
|
208
214
|
@pulumi.getter
|
209
215
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
210
216
|
"""
|
211
|
-
Set whether to enable the alert condition.
|
217
|
+
Set whether to enable the alert condition. Defaults to true.
|
212
218
|
"""
|
213
219
|
return pulumi.get(self, "enabled")
|
214
220
|
|
@@ -220,7 +226,7 @@ class _MultiLocationAlertConditionState:
|
|
220
226
|
@pulumi.getter
|
221
227
|
def entities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
222
228
|
"""
|
223
|
-
The
|
229
|
+
The Monitor GUID's of the Synthetics monitors to alert on.
|
224
230
|
"""
|
225
231
|
return pulumi.get(self, "entities")
|
226
232
|
|
@@ -244,7 +250,7 @@ class _MultiLocationAlertConditionState:
|
|
244
250
|
@pulumi.getter
|
245
251
|
def name(self) -> Optional[pulumi.Input[str]]:
|
246
252
|
"""
|
247
|
-
The title of
|
253
|
+
The title of the condition.
|
248
254
|
"""
|
249
255
|
return pulumi.get(self, "name")
|
250
256
|
|
@@ -280,8 +286,7 @@ class _MultiLocationAlertConditionState:
|
|
280
286
|
@pulumi.getter(name="violationTimeLimitSeconds")
|
281
287
|
def violation_time_limit_seconds(self) -> Optional[pulumi.Input[int]]:
|
282
288
|
"""
|
283
|
-
|
284
|
-
select. Must be in the range of 300 to 2592000 (inclusive)
|
289
|
+
The maximum number of seconds a violation can remain open before being closed by the system. The value must be between 300 seconds (5 minutes) to 2592000 seconds (30 days), both inclusive. Defaults to 259200 seconds (3 days) if this argument is not specified in the configuration, in accordance with the characteristics of this field in NerdGraph, as specified in the [docs](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/advanced-alerts/rest-api-alerts/alerts-conditions-api-field-names/#violation_time_limit_seconds).
|
285
290
|
"""
|
286
291
|
return pulumi.get(self, "violation_time_limit_seconds")
|
287
292
|
|
@@ -293,7 +298,10 @@ class _MultiLocationAlertConditionState:
|
|
293
298
|
@pulumi.getter
|
294
299
|
def warning(self) -> Optional[pulumi.Input['MultiLocationAlertConditionWarningArgs']]:
|
295
300
|
"""
|
296
|
-
A condition term with priority set to warning.
|
301
|
+
A condition term with the priority set to warning.
|
302
|
+
|
303
|
+
|
304
|
+
> **WARNING:** This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
|
297
305
|
"""
|
298
306
|
return pulumi.get(self, "warning")
|
299
307
|
|
@@ -421,15 +429,17 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
421
429
|
|
422
430
|
:param str resource_name: The name of the resource.
|
423
431
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
424
|
-
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionCriticalArgs']] critical: A condition term with priority set to critical.
|
425
|
-
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition.
|
426
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
427
|
-
:param pulumi.Input[str] name: The title of
|
432
|
+
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionCriticalArgs']] critical: A condition term with the priority set to critical.
|
433
|
+
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition. Defaults to true.
|
434
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The Monitor GUID's of the Synthetics monitors to alert on.
|
435
|
+
:param pulumi.Input[str] name: The title of the condition.
|
428
436
|
:param pulumi.Input[str] policy_id: The ID of the policy where this condition will be used.
|
429
437
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
430
|
-
:param pulumi.Input[int] violation_time_limit_seconds:
|
431
|
-
|
432
|
-
|
438
|
+
:param pulumi.Input[int] violation_time_limit_seconds: The maximum number of seconds a violation can remain open before being closed by the system. The value must be between 300 seconds (5 minutes) to 2592000 seconds (30 days), both inclusive. Defaults to 259200 seconds (3 days) if this argument is not specified in the configuration, in accordance with the characteristics of this field in NerdGraph, as specified in the [docs](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/advanced-alerts/rest-api-alerts/alerts-conditions-api-field-names/#violation_time_limit_seconds).
|
439
|
+
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionWarningArgs']] warning: A condition term with the priority set to warning.
|
440
|
+
|
441
|
+
|
442
|
+
> **WARNING:** This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
|
433
443
|
"""
|
434
444
|
...
|
435
445
|
@overload
|
@@ -613,16 +623,18 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
613
623
|
:param str resource_name: The unique name of the resulting resource.
|
614
624
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
615
625
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
616
|
-
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionCriticalArgs']] critical: A condition term with priority set to critical.
|
617
|
-
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition.
|
618
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
626
|
+
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionCriticalArgs']] critical: A condition term with the priority set to critical.
|
627
|
+
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition. Defaults to true.
|
628
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The Monitor GUID's of the Synthetics monitors to alert on.
|
619
629
|
:param pulumi.Input[str] entity_guid: The unique entity identifier of the condition in New Relic.
|
620
|
-
:param pulumi.Input[str] name: The title of
|
630
|
+
:param pulumi.Input[str] name: The title of the condition.
|
621
631
|
:param pulumi.Input[str] policy_id: The ID of the policy where this condition will be used.
|
622
632
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
623
|
-
:param pulumi.Input[int] violation_time_limit_seconds:
|
624
|
-
|
625
|
-
|
633
|
+
:param pulumi.Input[int] violation_time_limit_seconds: The maximum number of seconds a violation can remain open before being closed by the system. The value must be between 300 seconds (5 minutes) to 2592000 seconds (30 days), both inclusive. Defaults to 259200 seconds (3 days) if this argument is not specified in the configuration, in accordance with the characteristics of this field in NerdGraph, as specified in the [docs](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/advanced-alerts/rest-api-alerts/alerts-conditions-api-field-names/#violation_time_limit_seconds).
|
634
|
+
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionWarningArgs']] warning: A condition term with the priority set to warning.
|
635
|
+
|
636
|
+
|
637
|
+
> **WARNING:** This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
|
626
638
|
"""
|
627
639
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
628
640
|
|
@@ -643,7 +655,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
643
655
|
@pulumi.getter
|
644
656
|
def critical(self) -> pulumi.Output['outputs.MultiLocationAlertConditionCritical']:
|
645
657
|
"""
|
646
|
-
A condition term with priority set to critical.
|
658
|
+
A condition term with the priority set to critical.
|
647
659
|
"""
|
648
660
|
return pulumi.get(self, "critical")
|
649
661
|
|
@@ -651,7 +663,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
651
663
|
@pulumi.getter
|
652
664
|
def enabled(self) -> pulumi.Output[Optional[bool]]:
|
653
665
|
"""
|
654
|
-
Set whether to enable the alert condition.
|
666
|
+
Set whether to enable the alert condition. Defaults to true.
|
655
667
|
"""
|
656
668
|
return pulumi.get(self, "enabled")
|
657
669
|
|
@@ -659,7 +671,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
659
671
|
@pulumi.getter
|
660
672
|
def entities(self) -> pulumi.Output[Sequence[str]]:
|
661
673
|
"""
|
662
|
-
The
|
674
|
+
The Monitor GUID's of the Synthetics monitors to alert on.
|
663
675
|
"""
|
664
676
|
return pulumi.get(self, "entities")
|
665
677
|
|
@@ -675,7 +687,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
675
687
|
@pulumi.getter
|
676
688
|
def name(self) -> pulumi.Output[str]:
|
677
689
|
"""
|
678
|
-
The title of
|
690
|
+
The title of the condition.
|
679
691
|
"""
|
680
692
|
return pulumi.get(self, "name")
|
681
693
|
|
@@ -699,8 +711,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
699
711
|
@pulumi.getter(name="violationTimeLimitSeconds")
|
700
712
|
def violation_time_limit_seconds(self) -> pulumi.Output[Optional[int]]:
|
701
713
|
"""
|
702
|
-
|
703
|
-
select. Must be in the range of 300 to 2592000 (inclusive)
|
714
|
+
The maximum number of seconds a violation can remain open before being closed by the system. The value must be between 300 seconds (5 minutes) to 2592000 seconds (30 days), both inclusive. Defaults to 259200 seconds (3 days) if this argument is not specified in the configuration, in accordance with the characteristics of this field in NerdGraph, as specified in the [docs](https://docs.newrelic.com/docs/alerts-applied-intelligence/new-relic-alerts/advanced-alerts/rest-api-alerts/alerts-conditions-api-field-names/#violation_time_limit_seconds).
|
704
715
|
"""
|
705
716
|
return pulumi.get(self, "violation_time_limit_seconds")
|
706
717
|
|
@@ -708,7 +719,10 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
708
719
|
@pulumi.getter
|
709
720
|
def warning(self) -> pulumi.Output[Optional['outputs.MultiLocationAlertConditionWarning']]:
|
710
721
|
"""
|
711
|
-
A condition term with priority set to warning.
|
722
|
+
A condition term with the priority set to warning.
|
723
|
+
|
724
|
+
|
725
|
+
> **WARNING:** This resource will use the account ID linked to your API key. At the moment it is not possible to dynamically set the account ID.
|
712
726
|
"""
|
713
727
|
return pulumi.get(self, "warning")
|
714
728
|
|
@@ -21,10 +21,9 @@ class SecureCredentialArgs:
|
|
21
21
|
last_updated: Optional[pulumi.Input[str]] = None):
|
22
22
|
"""
|
23
23
|
The set of arguments for constructing a SecureCredential resource.
|
24
|
-
:param pulumi.Input[str] key: The secure credential's key name.
|
25
|
-
key to the underlying API.
|
24
|
+
:param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
26
25
|
:param pulumi.Input[str] value: The secure credential's value.
|
27
|
-
:param pulumi.Input[str] account_id:
|
26
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
|
28
27
|
:param pulumi.Input[str] description: The secure credential's description.
|
29
28
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
30
29
|
"""
|
@@ -41,8 +40,7 @@ class SecureCredentialArgs:
|
|
41
40
|
@pulumi.getter
|
42
41
|
def key(self) -> pulumi.Input[str]:
|
43
42
|
"""
|
44
|
-
The secure credential's key name.
|
45
|
-
key to the underlying API.
|
43
|
+
The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
46
44
|
"""
|
47
45
|
return pulumi.get(self, "key")
|
48
46
|
|
@@ -66,7 +64,7 @@ class SecureCredentialArgs:
|
|
66
64
|
@pulumi.getter(name="accountId")
|
67
65
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
68
66
|
"""
|
69
|
-
|
67
|
+
Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
|
70
68
|
"""
|
71
69
|
return pulumi.get(self, "account_id")
|
72
70
|
|
@@ -109,10 +107,9 @@ class _SecureCredentialState:
|
|
109
107
|
value: Optional[pulumi.Input[str]] = None):
|
110
108
|
"""
|
111
109
|
Input properties used for looking up and filtering SecureCredential resources.
|
112
|
-
:param pulumi.Input[str] account_id:
|
110
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
|
113
111
|
:param pulumi.Input[str] description: The secure credential's description.
|
114
|
-
:param pulumi.Input[str] key: The secure credential's key name.
|
115
|
-
key to the underlying API.
|
112
|
+
:param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
116
113
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
117
114
|
:param pulumi.Input[str] value: The secure credential's value.
|
118
115
|
"""
|
@@ -131,7 +128,7 @@ class _SecureCredentialState:
|
|
131
128
|
@pulumi.getter(name="accountId")
|
132
129
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
133
130
|
"""
|
134
|
-
|
131
|
+
Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
|
135
132
|
"""
|
136
133
|
return pulumi.get(self, "account_id")
|
137
134
|
|
@@ -155,8 +152,7 @@ class _SecureCredentialState:
|
|
155
152
|
@pulumi.getter
|
156
153
|
def key(self) -> Optional[pulumi.Input[str]]:
|
157
154
|
"""
|
158
|
-
The secure credential's key name.
|
159
|
-
key to the underlying API.
|
155
|
+
The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
160
156
|
"""
|
161
157
|
return pulumi.get(self, "key")
|
162
158
|
|
@@ -225,10 +221,9 @@ class SecureCredential(pulumi.CustomResource):
|
|
225
221
|
|
226
222
|
:param str resource_name: The name of the resource.
|
227
223
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
228
|
-
:param pulumi.Input[str] account_id:
|
224
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
|
229
225
|
:param pulumi.Input[str] description: The secure credential's description.
|
230
|
-
:param pulumi.Input[str] key: The secure credential's key name.
|
231
|
-
key to the underlying API.
|
226
|
+
:param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
232
227
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
233
228
|
:param pulumi.Input[str] value: The secure credential's value.
|
234
229
|
"""
|
@@ -323,10 +318,9 @@ class SecureCredential(pulumi.CustomResource):
|
|
323
318
|
:param str resource_name: The unique name of the resulting resource.
|
324
319
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
325
320
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
326
|
-
:param pulumi.Input[str] account_id:
|
321
|
+
:param pulumi.Input[str] account_id: Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
|
327
322
|
:param pulumi.Input[str] description: The secure credential's description.
|
328
|
-
:param pulumi.Input[str] key: The secure credential's key name.
|
329
|
-
key to the underlying API.
|
323
|
+
:param pulumi.Input[str] key: The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
330
324
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
331
325
|
:param pulumi.Input[str] value: The secure credential's value.
|
332
326
|
"""
|
@@ -345,7 +339,7 @@ class SecureCredential(pulumi.CustomResource):
|
|
345
339
|
@pulumi.getter(name="accountId")
|
346
340
|
def account_id(self) -> pulumi.Output[str]:
|
347
341
|
"""
|
348
|
-
|
342
|
+
Determines the New Relic account where the secure credential will be created. Defaults to the account associated with the API key used.
|
349
343
|
"""
|
350
344
|
return pulumi.get(self, "account_id")
|
351
345
|
|
@@ -361,8 +355,7 @@ class SecureCredential(pulumi.CustomResource):
|
|
361
355
|
@pulumi.getter
|
362
356
|
def key(self) -> pulumi.Output[str]:
|
363
357
|
"""
|
364
|
-
The secure credential's key name.
|
365
|
-
key to the underlying API.
|
358
|
+
The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API.
|
366
359
|
"""
|
367
360
|
return pulumi.get(self, "key")
|
368
361
|
|
@@ -1,20 +1,20 @@
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=C-HTnxxpPFB-8B5g_SNUL0OoN1nAm6eD5fCJPWiwTCo,494648
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
|
-
pulumi_newrelic/account_management.py,sha256=
|
5
|
-
pulumi_newrelic/alert_channel.py,sha256=
|
6
|
-
pulumi_newrelic/alert_condition.py,sha256=
|
7
|
-
pulumi_newrelic/alert_muting_rule.py,sha256=
|
8
|
-
pulumi_newrelic/alert_policy.py,sha256=
|
4
|
+
pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
|
5
|
+
pulumi_newrelic/alert_channel.py,sha256=Z_Q2zeWaAavLmxPwVV7LTy6dAp6cDr8GtcNMkzXrrnA,21376
|
6
|
+
pulumi_newrelic/alert_condition.py,sha256=JLgduj2oWsWi9NG89Ffvflzb_6W45MHNw1TJsTbX1Ng,46583
|
7
|
+
pulumi_newrelic/alert_muting_rule.py,sha256=GeV7GG0PWnM6VRzHhFQGv7dRuX0cQDWjRTyqY4dAL-M,19155
|
8
|
+
pulumi_newrelic/alert_policy.py,sha256=en_AWTXjMym2miWLxp_e78kXpBpsmJtg4IhDhVnbhHQ,26743
|
9
9
|
pulumi_newrelic/alert_policy_channel.py,sha256=UzBH24klGuITsJlw4nyo0E__-8fevYBdOYhDx9xbWEM,15477
|
10
10
|
pulumi_newrelic/api_access_key.py,sha256=buDhGJHHgnLzPLbYcsaBjl1bQDukgLzdk1FzbIkX_Ts,21435
|
11
11
|
pulumi_newrelic/browser_application.py,sha256=tVD3ZgHHXTTe1t9fFBDbeT9agigtzCajQJlmupdMd-4,21042
|
12
12
|
pulumi_newrelic/data_partition_rule.py,sha256=C_G9maLjFeJlv_XUfDmgWZIgGVO2ojlOcx0mZsciMZU,20433
|
13
|
-
pulumi_newrelic/entity_tags.py,sha256=
|
13
|
+
pulumi_newrelic/entity_tags.py,sha256=XWgh9ZPP4fvsTVZSHmnuY27KxEy8aw6ppo5Gzr4iwJQ,10127
|
14
14
|
pulumi_newrelic/events_to_metrics_rule.py,sha256=lQAWZJc5TmVWJoznib_yniMV5kCFONWwnhGmxmS9gl4,15994
|
15
15
|
pulumi_newrelic/get_account.py,sha256=uZnFdoQVwUd-Qz4WHtA7EHiylDS10JHJvsn4j2dONww,4651
|
16
16
|
pulumi_newrelic/get_alert_channel.py,sha256=QXHddDxfYIDOpEQFkQ_uBs_CV94f_sn8qeTESbJGSVQ,5416
|
17
|
-
pulumi_newrelic/get_alert_policy.py,sha256=
|
17
|
+
pulumi_newrelic/get_alert_policy.py,sha256=hfBkNm6FPKiSJ32K5OXRIC8DS0mUdneESQUWX2p1oBk,8795
|
18
18
|
pulumi_newrelic/get_application.py,sha256=BAfcQqa2YJR3ggMugqvBydAT59ujX_ftPQmsDtsd2Uw,5274
|
19
19
|
pulumi_newrelic/get_authentication_domain.py,sha256=wy5i9vGaNqYofpBE7gLrwmJAaM-NkdMglOK0lprSFjM,3498
|
20
20
|
pulumi_newrelic/get_cloud_account.py,sha256=7uBL8KxGdma3ZR8KQzRXG61R-inusfXHXv_6bEQK3fI,5191
|
@@ -23,27 +23,27 @@ pulumi_newrelic/get_group.py,sha256=pjW9nJr7tPPyi5YKev_VRyccEmQ_qGd6J8ZyWVxy33g,
|
|
23
23
|
pulumi_newrelic/get_key_transaction.py,sha256=E9z8R6wWYQiUS7PH3UOkLcmK0OfjWH2z0eClyF0nEdk,4043
|
24
24
|
pulumi_newrelic/get_notification_destination.py,sha256=xuZ8M317q9-z-bPWdgXpok9W-malMqAaPRQJPXJaL80,8152
|
25
25
|
pulumi_newrelic/get_obfuscation_expression.py,sha256=6-EpgfNLHmWmx-Na8IQ9UCaBz1j8AnPuGC0XzBOb2lc,4921
|
26
|
-
pulumi_newrelic/get_service_level_alert_helper.py,sha256=
|
26
|
+
pulumi_newrelic/get_service_level_alert_helper.py,sha256=dq3eeFGE5dgAciFju-GhTBD2Ics07AkOyqb4VfpIoLw,20164
|
27
27
|
pulumi_newrelic/get_test_grok_pattern.py,sha256=mCiJXbpiQLg2oeEa5_rQTI38ZsXkWml4lgv1s6jEpPE,5538
|
28
28
|
pulumi_newrelic/get_user.py,sha256=QxI7LiKvkiBOc-Ovj3ySFzD1l2SrGO1Y7-xnrGhfP3A,7284
|
29
29
|
pulumi_newrelic/group.py,sha256=ifVMSVvNIQ4YtoRXIBCpzu7jy3AsEt0iQAFC4M3Rb8g,20907
|
30
|
-
pulumi_newrelic/infra_alert_condition.py,sha256=
|
30
|
+
pulumi_newrelic/infra_alert_condition.py,sha256=B7jF2z0zmWmSWQjOTlYad_XahrmUtCi90msMlFMnlD8,57993
|
31
31
|
pulumi_newrelic/log_parsing_rule.py,sha256=1NgUsL1PQNd5-5eMUiOA5fL0vT91DNQ6KqmcWSyn5l0,22408
|
32
32
|
pulumi_newrelic/monitor_downtime.py,sha256=NJ4MNCNvsprCc3tsFItaicyZQFM_U5m9oX6jQtyNv_8,40928
|
33
33
|
pulumi_newrelic/notification_channel.py,sha256=24p_eoHWZO_Batk8OEryh4OW48W8YuYGIbnmcEimmas,45732
|
34
|
-
pulumi_newrelic/notification_destination.py,sha256=
|
34
|
+
pulumi_newrelic/notification_destination.py,sha256=jONcX2PGNqhVFQhA6rWe0850X5CK6nCH2RJzjCiNCDQ,37949
|
35
35
|
pulumi_newrelic/nrql_alert_condition.py,sha256=WXB043NuAgNxeeBhpC0bn2r-x2SIFpVFSdfuahLq4nE,105437
|
36
|
-
pulumi_newrelic/nrql_drop_rule.py,sha256=
|
36
|
+
pulumi_newrelic/nrql_drop_rule.py,sha256=PO9gtn6xHMEHjUdfZB_h5AWnWFFnfihRxwxEoGsS_tk,17538
|
37
37
|
pulumi_newrelic/obfuscation_expression.py,sha256=ujOP16liz5adKssyTNmoSbKJsypZAejSi6eCsQtC54c,12343
|
38
38
|
pulumi_newrelic/obfuscation_rule.py,sha256=J1951kAaBWDlmFWEQsSASz7PmjGSpQYxvqV8wLliTFY,17809
|
39
|
-
pulumi_newrelic/one_dashboard.py,sha256=
|
39
|
+
pulumi_newrelic/one_dashboard.py,sha256=b3DpP1ryeGV6WYUghTaAN6963nMrVeWHvLeInBE42rM,20490
|
40
40
|
pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0qg-NVT-s,12622
|
41
41
|
pulumi_newrelic/one_dashboard_raw.py,sha256=M9TgRdqEwEDFwJtzN2retbMG3b8aNih10hL0n0MihUY,23542
|
42
|
-
pulumi_newrelic/outputs.py,sha256=
|
42
|
+
pulumi_newrelic/outputs.py,sha256=60ET-16ARCwCRMdAp6Vpq1v1zxpxosgG3kQDAdbF9cU,487050
|
43
43
|
pulumi_newrelic/provider.py,sha256=UIT58VArPFzjnWIR6uA-WzNzFC1AaWDSSZg9ni5BUxc,19663
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=WKU-J8dwf1S-tpEKf4P5jAkXmfF0-Otn4FDvv7JlDs8,68
|
45
45
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
|
-
pulumi_newrelic/service_level.py,sha256=
|
46
|
+
pulumi_newrelic/service_level.py,sha256=HGA0UqZYKEzclHATagPnyDpvsrQodHrjvewC6EkACHc,30071
|
47
47
|
pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
|
48
48
|
pulumi_newrelic/workflow.py,sha256=AcY9GJHF3SB8A-WNOed-UBNFxU20R3x8FpA6DSHRXIg,41706
|
49
49
|
pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
|
@@ -62,28 +62,28 @@ pulumi_newrelic/config/__init__.pyi,sha256=Ei1nds8BYdBSKrzdgc14xag-tIZ9fdv02sZzg
|
|
62
62
|
pulumi_newrelic/config/vars.py,sha256=ic6v5AqvrrrkDKHFsxvLzMdVw24XIsIu_vjp34R3388,2102
|
63
63
|
pulumi_newrelic/insights/__init__.py,sha256=-tPATEB7zs4lUfIRTT0wNnN9a7uvXHsRi315Y9-rm30,335
|
64
64
|
pulumi_newrelic/insights/_inputs.py,sha256=_N6liJuXjt9GK3HWgA94q0fLjAckJd6Ou5ntAO0atNA,4324
|
65
|
-
pulumi_newrelic/insights/event.py,sha256=
|
65
|
+
pulumi_newrelic/insights/event.py,sha256=nWFVAVFmrUn6MSkFS949-uc_m2qadxJ6v_H1CXXtPUo,10054
|
66
66
|
pulumi_newrelic/insights/outputs.py,sha256=Rsw2x8EcSF_LE4pt_9jJtoF_ut0D1S4cRCxPzCIBVsU,3335
|
67
67
|
pulumi_newrelic/plugins/__init__.py,sha256=UeoukmKyu6Xm6K4W4z5N_CzyB634ttFEcP7GH9nTyeA,374
|
68
|
-
pulumi_newrelic/plugins/_inputs.py,sha256=
|
68
|
+
pulumi_newrelic/plugins/_inputs.py,sha256=AuXZDBxlSZFfTEucVdw1NajrlnLmkDJbxeWW1ZrCppc,16738
|
69
69
|
pulumi_newrelic/plugins/application_settings.py,sha256=gih1hG-Rh786Uqj-csmAeOJVeUGVcIONts_KZrra2gw,16324
|
70
|
-
pulumi_newrelic/plugins/outputs.py,sha256=
|
71
|
-
pulumi_newrelic/plugins/workload.py,sha256=
|
70
|
+
pulumi_newrelic/plugins/outputs.py,sha256=hDj9PHWGK_VrH0RU3spmsg8GkeTCgitR70WapbIEomc,16551
|
71
|
+
pulumi_newrelic/plugins/workload.py,sha256=yf-bG6cYs7_yFY8P8QJ_gbbczII9huKQtZ1r04MjlqY,41948
|
72
72
|
pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
|
73
73
|
pulumi_newrelic/synthetics/_inputs.py,sha256=F8ecjlj2j3gv0oWwFNYGht9gktjMDumW-_hxoz852UE,13597
|
74
|
-
pulumi_newrelic/synthetics/alert_condition.py,sha256=
|
74
|
+
pulumi_newrelic/synthetics/alert_condition.py,sha256=za-6iMuqsSiQy12JYYBt8tBr_llijNmY17-RVqb6C6Q,21515
|
75
75
|
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=jfmHMs03-1vE4BwxxUv9RhU8kQMDTBfc1Z5BRqtaXiU,45083
|
76
76
|
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=BLXDDLp_BFwgy67B_LpCwOwj_eDFiR3NFgAjkfH4hQ0,47171
|
77
77
|
pulumi_newrelic/synthetics/get_private_location.py,sha256=4ZJdNrhcmeLdFlcYWauHqDlcluhpBdHKShnD3XF5eKw,5795
|
78
|
-
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=
|
78
|
+
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=xexkDSteNi9kn0UuucFUSTIbz_NaHOzw6HTsg2yGoEU,5479
|
79
79
|
pulumi_newrelic/synthetics/monitor.py,sha256=4LwxwVnfJny5Qmsn8qesOhIp0kI3gaU_bvi0N2eItkM,65030
|
80
|
-
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=
|
80
|
+
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=sUgfNP5DMvIsqEtgbQ1DoRbxhq4d76pdnMm8Kaz3xkA,34959
|
81
81
|
pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
|
82
82
|
pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
|
83
83
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=Yu1R5udNIk5CSTgCV2-ywGeHGWrPfimNjXL34qQNyo8,54359
|
84
|
-
pulumi_newrelic/synthetics/secure_credential.py,sha256=
|
84
|
+
pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
|
85
85
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=5rKhjFCAUndEzVtpuHlk-69c-X10eIpIge1TgGTnTao,50367
|
86
|
-
pulumi_newrelic-5.
|
87
|
-
pulumi_newrelic-5.
|
88
|
-
pulumi_newrelic-5.
|
89
|
-
pulumi_newrelic-5.
|
86
|
+
pulumi_newrelic-5.25.0.dist-info/METADATA,sha256=xTJIPK5LWyhorJT72hCyGtW8rSqcKtkOMxDpM1lv-_4,3889
|
87
|
+
pulumi_newrelic-5.25.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
+
pulumi_newrelic-5.25.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.25.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|