pulumi-newrelic 5.25.0__py3-none-any.whl → 5.25.0a1715378777__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 +43 -449
- pulumi_newrelic/account_management.py +14 -14
- pulumi_newrelic/alert_channel.py +28 -28
- pulumi_newrelic/alert_condition.py +84 -125
- pulumi_newrelic/alert_muting_rule.py +21 -21
- pulumi_newrelic/alert_policy.py +21 -27
- pulumi_newrelic/entity_tags.py +7 -7
- pulumi_newrelic/get_alert_policy.py +0 -9
- pulumi_newrelic/get_service_level_alert_helper.py +0 -18
- pulumi_newrelic/infra_alert_condition.py +126 -105
- pulumi_newrelic/insights/event.py +0 -13
- pulumi_newrelic/notification_destination.py +10 -14
- pulumi_newrelic/nrql_drop_rule.py +28 -28
- pulumi_newrelic/one_dashboard.py +42 -48
- pulumi_newrelic/outputs.py +43 -448
- 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 -2
- pulumi_newrelic/service_level.py +0 -79
- pulumi_newrelic/synthetics/alert_condition.py +14 -42
- pulumi_newrelic/synthetics/broken_links_monitor.py +0 -18
- pulumi_newrelic/synthetics/cert_check_monitor.py +0 -18
- pulumi_newrelic/synthetics/get_secure_credential.py +0 -8
- pulumi_newrelic/synthetics/monitor.py +0 -4
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +49 -63
- pulumi_newrelic/synthetics/script_monitor.py +0 -4
- pulumi_newrelic/synthetics/secure_credential.py +21 -14
- pulumi_newrelic/synthetics/step_monitor.py +0 -18
- {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715378777.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715378777.dist-info}/RECORD +33 -33
- {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715378777.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715378777.dist-info}/top_level.txt +0 -0
@@ -21,9 +21,10 @@ 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.
|
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
|
25
|
+
key to the underlying API.
|
25
26
|
:param pulumi.Input[str] value: The secure credential's value.
|
26
|
-
:param pulumi.Input[str] account_id:
|
27
|
+
:param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
|
27
28
|
:param pulumi.Input[str] description: The secure credential's description.
|
28
29
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
29
30
|
"""
|
@@ -40,7 +41,8 @@ class SecureCredentialArgs:
|
|
40
41
|
@pulumi.getter
|
41
42
|
def key(self) -> pulumi.Input[str]:
|
42
43
|
"""
|
43
|
-
The secure credential's key name.
|
44
|
+
The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased
|
45
|
+
key to the underlying API.
|
44
46
|
"""
|
45
47
|
return pulumi.get(self, "key")
|
46
48
|
|
@@ -64,7 +66,7 @@ class SecureCredentialArgs:
|
|
64
66
|
@pulumi.getter(name="accountId")
|
65
67
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
66
68
|
"""
|
67
|
-
|
69
|
+
The New Relic account ID where you want to create the secure credential.
|
68
70
|
"""
|
69
71
|
return pulumi.get(self, "account_id")
|
70
72
|
|
@@ -107,9 +109,10 @@ class _SecureCredentialState:
|
|
107
109
|
value: Optional[pulumi.Input[str]] = None):
|
108
110
|
"""
|
109
111
|
Input properties used for looking up and filtering SecureCredential resources.
|
110
|
-
:param pulumi.Input[str] account_id:
|
112
|
+
:param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
|
111
113
|
:param pulumi.Input[str] description: The secure credential's description.
|
112
|
-
:param pulumi.Input[str] key: The secure credential's key name.
|
114
|
+
: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
|
115
|
+
key to the underlying API.
|
113
116
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
114
117
|
:param pulumi.Input[str] value: The secure credential's value.
|
115
118
|
"""
|
@@ -128,7 +131,7 @@ class _SecureCredentialState:
|
|
128
131
|
@pulumi.getter(name="accountId")
|
129
132
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
130
133
|
"""
|
131
|
-
|
134
|
+
The New Relic account ID where you want to create the secure credential.
|
132
135
|
"""
|
133
136
|
return pulumi.get(self, "account_id")
|
134
137
|
|
@@ -152,7 +155,8 @@ class _SecureCredentialState:
|
|
152
155
|
@pulumi.getter
|
153
156
|
def key(self) -> Optional[pulumi.Input[str]]:
|
154
157
|
"""
|
155
|
-
The secure credential's key name.
|
158
|
+
The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased
|
159
|
+
key to the underlying API.
|
156
160
|
"""
|
157
161
|
return pulumi.get(self, "key")
|
158
162
|
|
@@ -221,9 +225,10 @@ class SecureCredential(pulumi.CustomResource):
|
|
221
225
|
|
222
226
|
:param str resource_name: The name of the resource.
|
223
227
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
224
|
-
:param pulumi.Input[str] account_id:
|
228
|
+
:param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
|
225
229
|
:param pulumi.Input[str] description: The secure credential's description.
|
226
|
-
:param pulumi.Input[str] key: The secure credential's key name.
|
230
|
+
: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
|
231
|
+
key to the underlying API.
|
227
232
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
228
233
|
:param pulumi.Input[str] value: The secure credential's value.
|
229
234
|
"""
|
@@ -318,9 +323,10 @@ class SecureCredential(pulumi.CustomResource):
|
|
318
323
|
:param str resource_name: The unique name of the resulting resource.
|
319
324
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
320
325
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
321
|
-
:param pulumi.Input[str] account_id:
|
326
|
+
:param pulumi.Input[str] account_id: The New Relic account ID where you want to create the secure credential.
|
322
327
|
:param pulumi.Input[str] description: The secure credential's description.
|
323
|
-
:param pulumi.Input[str] key: The secure credential's key name.
|
328
|
+
: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
|
329
|
+
key to the underlying API.
|
324
330
|
:param pulumi.Input[str] last_updated: The time the secure credential was last updated.
|
325
331
|
:param pulumi.Input[str] value: The secure credential's value.
|
326
332
|
"""
|
@@ -339,7 +345,7 @@ class SecureCredential(pulumi.CustomResource):
|
|
339
345
|
@pulumi.getter(name="accountId")
|
340
346
|
def account_id(self) -> pulumi.Output[str]:
|
341
347
|
"""
|
342
|
-
|
348
|
+
The New Relic account ID where you want to create the secure credential.
|
343
349
|
"""
|
344
350
|
return pulumi.get(self, "account_id")
|
345
351
|
|
@@ -355,7 +361,8 @@ class SecureCredential(pulumi.CustomResource):
|
|
355
361
|
@pulumi.getter
|
356
362
|
def key(self) -> pulumi.Output[str]:
|
357
363
|
"""
|
358
|
-
The secure credential's key name.
|
364
|
+
The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased
|
365
|
+
key to the underlying API.
|
359
366
|
"""
|
360
367
|
return pulumi.get(self, "key")
|
361
368
|
|
@@ -41,8 +41,6 @@ class StepMonitorArgs:
|
|
41
41
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
42
42
|
|
43
43
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
|
44
|
-
|
45
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
46
44
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
47
45
|
"""
|
48
46
|
pulumi.set(__self__, "period", period)
|
@@ -180,8 +178,6 @@ class StepMonitorArgs:
|
|
180
178
|
The specific version of the runtime type selected.
|
181
179
|
|
182
180
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
|
183
|
-
|
184
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
185
181
|
"""
|
186
182
|
return pulumi.get(self, "runtime_type_version")
|
187
183
|
|
@@ -232,8 +228,6 @@ class _StepMonitorState:
|
|
232
228
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
233
229
|
|
234
230
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
|
235
|
-
|
236
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
237
231
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
238
232
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
239
233
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
@@ -380,8 +374,6 @@ class _StepMonitorState:
|
|
380
374
|
The specific version of the runtime type selected.
|
381
375
|
|
382
376
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
|
383
|
-
|
384
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
385
377
|
"""
|
386
378
|
return pulumi.get(self, "runtime_type_version")
|
387
379
|
|
@@ -444,8 +436,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
444
436
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]]] = None,
|
445
437
|
__props__=None):
|
446
438
|
"""
|
447
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
448
|
-
|
449
439
|
Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
|
450
440
|
|
451
441
|
## Example Usage
|
@@ -534,8 +524,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
534
524
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
535
525
|
|
536
526
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
|
537
|
-
|
538
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
539
527
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
540
528
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorStepArgs']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
541
529
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
@@ -547,8 +535,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
547
535
|
args: StepMonitorArgs,
|
548
536
|
opts: Optional[pulumi.ResourceOptions] = None):
|
549
537
|
"""
|
550
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
551
|
-
|
552
538
|
Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
|
553
539
|
|
554
540
|
## Example Usage
|
@@ -721,8 +707,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
721
707
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
722
708
|
|
723
709
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
|
724
|
-
|
725
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
726
710
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
727
711
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorStepArgs']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
728
712
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
@@ -825,8 +809,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
825
809
|
The specific version of the runtime type selected.
|
826
810
|
|
827
811
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `CHROME_BROWSER` and `100` respectively. In order to run the monitor in the new runtime, both `runtime_type` and `runtime_type_version` need to be specified; however, specifying neither of these attributes would set this monitor to use the legacy runtime. It may also be noted that the runtime opted for would only be effective with private locations. For public locations, all traffic has been shifted to the new runtime, irrespective of the selection made.
|
828
|
-
|
829
|
-
> **WARNING** Support for legacy Synthetics runtimes **will reach its end-of-life (EOL) on October 22, 2024**. In addition, creating **_new_** monitors using the legacy runtime **will no longer be supported after June 30, 2024**. In light of the above, kindly **upgrade your Synthetic Monitors to the new runtime** at the earliest, if they are still using the legacy runtime. Please check out [this page](https://forum.newrelic.com/s/hubtopic/aAXPh0000001brxOAA/upcoming-endoflife-legacy-synthetics-runtimes-and-cpm) for more details on the EOL, action needed (specific to monitors using public and private locations), relevant resources, and more.
|
830
812
|
"""
|
831
813
|
return pulumi.get(self, "runtime_type_version")
|
832
814
|
|
@@ -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=0PyhyltlkaADZkXJKdxImGovcImnSaZA1C3RCzaclsw,469022
|
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=8mWtlTu8uP0x-4CVfAVL5kjuElnyNUeLHBqVNfIcyQc,8817
|
5
|
+
pulumi_newrelic/alert_channel.py,sha256=5CYMMAyK6BgJRGGzhbYzZTsOLk3PkLVTtpjLen8mWNU,20130
|
6
|
+
pulumi_newrelic/alert_condition.py,sha256=KsW3TijyAtV7WkvykDHEJrncdJSCcNeU_FgyH36ejvc,41574
|
7
|
+
pulumi_newrelic/alert_muting_rule.py,sha256=6HQk7AyR5z0qPxZDYYq2ANsyy5lYHsEAAiykQvDeAz8,18756
|
8
|
+
pulumi_newrelic/alert_policy.py,sha256=6EDSABgNBlFYT6cmu4TwCffQvBOB9MhFLmO6IAjpWw4,23658
|
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=LdyMTlvgc1gQrHJZbVPIa4IaPUJrgy7EJxuy-bOxiXM,10029
|
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=UARHY3a8TuUI0HJpt98XU1W4UgongttmJGk8pWeQ6gg,5795
|
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=tkq0xO1-F6S0bWfvLkRUZMaWZOvh0gUl3wfe2FPHbdg,18534
|
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=U3uoN8lZ8aaF3-JYsPtp25Mupu4h4ugsLjn1Mg6vI3c,55350
|
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=2nUHHjQxPeIYRQcFSWExFFNOKxu3a_WQonW6EdWlH6o,37505
|
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=HxW-UuccZ1r1Y0VE0lWPrKE30WYlPtAXJ7OQURDsc_c,16873
|
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=iFA7NQWxwqPd8wSBnhx6HORVuwzvWtfz4j15JoANfPM,18619
|
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=nEo-ACQKgisaHiabw2mPGD-G3n2bWa2ggcGAdoIkKQU,462547
|
43
43
|
pulumi_newrelic/provider.py,sha256=UIT58VArPFzjnWIR6uA-WzNzFC1AaWDSSZg9ni5BUxc,19663
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=BB2nuoRbgCmufIppkKjSbeCa7oIqt8NBakO_A4QV0Pk,45
|
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=qKTI9Kmxrq8Gl7sfq4_A8Pac7s0FCm-Zp0R9oeLMoUo,25143
|
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=5uSl7ondJNTXc0ypv3sEBcdDPuuHUSHQRVXjbf20ROo,8896
|
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=VDptQjNnRhoeXubaDScaWrzj3SGZdnB5AIHd6CouIwA,16378
|
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=rfN6vYax3n2ngC5dvVZ71FtiR0Az6LN9JQQlMWhs_QI,16191
|
71
|
+
pulumi_newrelic/plugins/workload.py,sha256=mh1B78bD53S9oVi443th8_jT3nmrkK0etD7S6mj9WaY,39666
|
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=
|
75
|
-
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=
|
76
|
-
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=
|
74
|
+
pulumi_newrelic/synthetics/alert_condition.py,sha256=D12GbyWkaDQpeXxkxSFyoo2gTD09AECIacTtyGlgea8,20139
|
75
|
+
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=4IxYEoS0_0gXPJwwXTifGYnkbEH9RIb74tVYFgWvPnw,39073
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=C42CAD4DipO4HeK6EK7bX9ELuDNI_b78xkok6zEsSqE,41161
|
77
77
|
pulumi_newrelic/synthetics/get_private_location.py,sha256=4ZJdNrhcmeLdFlcYWauHqDlcluhpBdHKShnD3XF5eKw,5795
|
78
|
-
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=
|
79
|
-
pulumi_newrelic/synthetics/monitor.py,sha256=
|
80
|
-
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=
|
78
|
+
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=vR5rPjK49At_5Zrdf2aepu9LSrRy_a5sxaUVxnM26P8,4839
|
79
|
+
pulumi_newrelic/synthetics/monitor.py,sha256=QIcMQimeemzUKxpqRFFOf7yHoNJwikEvTTkIKIroDPc,63714
|
80
|
+
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=cWyW7yt9-V5h_S7vY26w_3fY8xvPVJwV2q4xxd6iw80,31073
|
81
81
|
pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
|
82
82
|
pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
|
83
|
-
pulumi_newrelic/synthetics/script_monitor.py,sha256=
|
84
|
-
pulumi_newrelic/synthetics/secure_credential.py,sha256=
|
85
|
-
pulumi_newrelic/synthetics/step_monitor.py,sha256=
|
86
|
-
pulumi_newrelic-5.25.
|
87
|
-
pulumi_newrelic-5.25.
|
88
|
-
pulumi_newrelic-5.25.
|
89
|
-
pulumi_newrelic-5.25.
|
83
|
+
pulumi_newrelic/synthetics/script_monitor.py,sha256=i4b_C47PhXjnyd4SU8AmP9AJenpwaVravnpa7aom7-8,53043
|
84
|
+
pulumi_newrelic/synthetics/secure_credential.py,sha256=XBLRGmmCJA_oNGZx1sdlUS9O2gL7BLPsUhJiNr1ECwM,15238
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=zIuN3lxEv4QF00qYSsSclfXHDbG6aZmRJRHim6At9Fw,44357
|
86
|
+
pulumi_newrelic-5.25.0a1715378777.dist-info/METADATA,sha256=a8GrBAW-VQhSlvtOc2tmZRPIdx7cu9XXKBeD0y1Dggs,3900
|
87
|
+
pulumi_newrelic-5.25.0a1715378777.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
+
pulumi_newrelic-5.25.0a1715378777.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.25.0a1715378777.dist-info/RECORD,,
|
File without changes
|
{pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715378777.dist-info}/top_level.txt
RENAMED
File without changes
|