pulumi-newrelic 5.25.0__py3-none-any.whl → 5.25.0a1715760714__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 -1
- 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.0a1715760714.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/RECORD +33 -33
- {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.25.0.dist-info → pulumi_newrelic-5.25.0a1715760714.dist-info}/top_level.txt +0 -0
@@ -39,8 +39,6 @@ class BrokenLinksMonitorArgs:
|
|
39
39
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
40
40
|
|
41
41
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
42
|
-
|
43
|
-
> **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.
|
44
42
|
:param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
45
43
|
"""
|
46
44
|
pulumi.set(__self__, "period", period)
|
@@ -164,8 +162,6 @@ class BrokenLinksMonitorArgs:
|
|
164
162
|
The specific version of the runtime type selected.
|
165
163
|
|
166
164
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
167
|
-
|
168
|
-
> **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.
|
169
165
|
"""
|
170
166
|
return pulumi.get(self, "runtime_type_version")
|
171
167
|
|
@@ -214,8 +210,6 @@ class _BrokenLinksMonitorState:
|
|
214
210
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
215
211
|
|
216
212
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
217
|
-
|
218
|
-
> **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.
|
219
213
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
220
214
|
:param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
221
215
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -348,8 +342,6 @@ class _BrokenLinksMonitorState:
|
|
348
342
|
The specific version of the runtime type selected.
|
349
343
|
|
350
344
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
351
|
-
|
352
|
-
> **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.
|
353
345
|
"""
|
354
346
|
return pulumi.get(self, "runtime_type_version")
|
355
347
|
|
@@ -411,8 +403,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
411
403
|
uri: Optional[pulumi.Input[str]] = None,
|
412
404
|
__props__=None):
|
413
405
|
"""
|
414
|
-
> **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.
|
415
|
-
|
416
406
|
Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
|
417
407
|
|
418
408
|
## Example Usage
|
@@ -485,8 +475,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
485
475
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
486
476
|
|
487
477
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
488
|
-
|
489
|
-
> **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.
|
490
478
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
491
479
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BrokenLinksMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
492
480
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -498,8 +486,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
498
486
|
args: BrokenLinksMonitorArgs,
|
499
487
|
opts: Optional[pulumi.ResourceOptions] = None):
|
500
488
|
"""
|
501
|
-
> **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.
|
502
|
-
|
503
489
|
Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
|
504
490
|
|
505
491
|
## Example Usage
|
@@ -653,8 +639,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
653
639
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
654
640
|
|
655
641
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
656
|
-
|
657
|
-
> **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.
|
658
642
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
659
643
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BrokenLinksMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
660
644
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -748,8 +732,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
748
732
|
The specific version of the runtime type selected.
|
749
733
|
|
750
734
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
751
|
-
|
752
|
-
> **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.
|
753
735
|
"""
|
754
736
|
return pulumi.get(self, "runtime_type_version")
|
755
737
|
|
@@ -41,8 +41,6 @@ class CertCheckMonitorArgs:
|
|
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 `NODE_API` and `16.10` 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['CertCheckMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
47
45
|
"""
|
48
46
|
pulumi.set(__self__, "certificate_expiration", certificate_expiration)
|
@@ -179,8 +177,6 @@ class CertCheckMonitorArgs:
|
|
179
177
|
The specific version of the runtime type selected.
|
180
178
|
|
181
179
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
182
|
-
|
183
|
-
> **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.
|
184
180
|
"""
|
185
181
|
return pulumi.get(self, "runtime_type_version")
|
186
182
|
|
@@ -230,8 +226,6 @@ class _CertCheckMonitorState:
|
|
230
226
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
231
227
|
|
232
228
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
233
|
-
|
234
|
-
> **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.
|
235
229
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
236
230
|
:param pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
237
231
|
"""
|
@@ -375,8 +369,6 @@ class _CertCheckMonitorState:
|
|
375
369
|
The specific version of the runtime type selected.
|
376
370
|
|
377
371
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
378
|
-
|
379
|
-
> **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.
|
380
372
|
"""
|
381
373
|
return pulumi.get(self, "runtime_type_version")
|
382
374
|
|
@@ -427,8 +419,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
427
419
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]]] = None,
|
428
420
|
__props__=None):
|
429
421
|
"""
|
430
|
-
> **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.
|
431
|
-
|
432
422
|
Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
|
433
423
|
|
434
424
|
## Example Usage
|
@@ -505,8 +495,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
505
495
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
506
496
|
|
507
497
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
508
|
-
|
509
|
-
> **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.
|
510
498
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
511
499
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
512
500
|
"""
|
@@ -517,8 +505,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
517
505
|
args: CertCheckMonitorArgs,
|
518
506
|
opts: Optional[pulumi.ResourceOptions] = None):
|
519
507
|
"""
|
520
|
-
> **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.
|
521
|
-
|
522
508
|
Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
|
523
509
|
|
524
510
|
## Example Usage
|
@@ -678,8 +664,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
678
664
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
679
665
|
|
680
666
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
681
|
-
|
682
|
-
> **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.
|
683
667
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
684
668
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CertCheckMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
685
669
|
"""
|
@@ -780,8 +764,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
780
764
|
The specific version of the runtime type selected.
|
781
765
|
|
782
766
|
> **NOTE:** Currently, the values of `runtime_type` and `runtime_type_version` supported by this resource are `NODE_API` and `16.10` 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.
|
783
|
-
|
784
|
-
> **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.
|
785
767
|
"""
|
786
768
|
return pulumi.get(self, "runtime_type_version")
|
787
769
|
|
@@ -102,10 +102,6 @@ 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.
|
109
105
|
"""
|
110
106
|
__args__ = dict()
|
111
107
|
__args__['accountId'] = account_id
|
@@ -138,9 +134,5 @@ def get_secure_credential_output(account_id: Optional[pulumi.Input[Optional[str]
|
|
138
134
|
|
139
135
|
foo = newrelic.synthetics.get_secure_credential(key="MY_KEY")
|
140
136
|
```
|
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.
|
145
137
|
"""
|
146
138
|
...
|
@@ -726,8 +726,6 @@ class Monitor(pulumi.CustomResource):
|
|
726
726
|
verify_ssl: Optional[pulumi.Input[bool]] = None,
|
727
727
|
__props__=None):
|
728
728
|
"""
|
729
|
-
> **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.
|
730
|
-
|
731
729
|
Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
|
732
730
|
|
733
731
|
## Example Usage
|
@@ -898,8 +896,6 @@ class Monitor(pulumi.CustomResource):
|
|
898
896
|
args: MonitorArgs,
|
899
897
|
opts: Optional[pulumi.ResourceOptions] = None):
|
900
898
|
"""
|
901
|
-
> **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.
|
902
|
-
|
903
899
|
Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
|
904
900
|
|
905
901
|
## Example Usage
|
@@ -26,17 +26,15 @@ 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
|
30
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
29
|
+
:param pulumi.Input['MultiLocationAlertConditionCriticalArgs'] critical: A condition term with priority set to critical.
|
30
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The GUIDs 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 this 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
|
-
|
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.
|
35
|
+
:param pulumi.Input[int] violation_time_limit_seconds: Sets a time limit, in seconds, that will automatically force-close a long-lasting incident after the time limit you
|
36
|
+
select. Must be in the range of 300 to 2592000 (inclusive)
|
37
|
+
:param pulumi.Input['MultiLocationAlertConditionWarningArgs'] warning: A condition term with priority set to warning.
|
40
38
|
"""
|
41
39
|
pulumi.set(__self__, "critical", critical)
|
42
40
|
pulumi.set(__self__, "entities", entities)
|
@@ -56,7 +54,7 @@ class MultiLocationAlertConditionArgs:
|
|
56
54
|
@pulumi.getter
|
57
55
|
def critical(self) -> pulumi.Input['MultiLocationAlertConditionCriticalArgs']:
|
58
56
|
"""
|
59
|
-
A condition term with
|
57
|
+
A condition term with priority set to critical.
|
60
58
|
"""
|
61
59
|
return pulumi.get(self, "critical")
|
62
60
|
|
@@ -68,7 +66,7 @@ class MultiLocationAlertConditionArgs:
|
|
68
66
|
@pulumi.getter
|
69
67
|
def entities(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
70
68
|
"""
|
71
|
-
The
|
69
|
+
The GUIDs of the Synthetics monitors to alert on.
|
72
70
|
"""
|
73
71
|
return pulumi.get(self, "entities")
|
74
72
|
|
@@ -92,7 +90,7 @@ class MultiLocationAlertConditionArgs:
|
|
92
90
|
@pulumi.getter
|
93
91
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
94
92
|
"""
|
95
|
-
Set whether to enable the alert condition.
|
93
|
+
Set whether to enable the alert condition. Defaults to true.
|
96
94
|
"""
|
97
95
|
return pulumi.get(self, "enabled")
|
98
96
|
|
@@ -104,7 +102,7 @@ class MultiLocationAlertConditionArgs:
|
|
104
102
|
@pulumi.getter
|
105
103
|
def name(self) -> Optional[pulumi.Input[str]]:
|
106
104
|
"""
|
107
|
-
The title of
|
105
|
+
The title of this condition.
|
108
106
|
"""
|
109
107
|
return pulumi.get(self, "name")
|
110
108
|
|
@@ -128,7 +126,8 @@ class MultiLocationAlertConditionArgs:
|
|
128
126
|
@pulumi.getter(name="violationTimeLimitSeconds")
|
129
127
|
def violation_time_limit_seconds(self) -> Optional[pulumi.Input[int]]:
|
130
128
|
"""
|
131
|
-
|
129
|
+
Sets a time limit, in seconds, that will automatically force-close a long-lasting incident after the time limit you
|
130
|
+
select. Must be in the range of 300 to 2592000 (inclusive)
|
132
131
|
"""
|
133
132
|
return pulumi.get(self, "violation_time_limit_seconds")
|
134
133
|
|
@@ -140,10 +139,7 @@ class MultiLocationAlertConditionArgs:
|
|
140
139
|
@pulumi.getter
|
141
140
|
def warning(self) -> Optional[pulumi.Input['MultiLocationAlertConditionWarningArgs']]:
|
142
141
|
"""
|
143
|
-
A condition term with
|
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.
|
142
|
+
A condition term with priority set to warning.
|
147
143
|
"""
|
148
144
|
return pulumi.get(self, "warning")
|
149
145
|
|
@@ -166,18 +162,16 @@ class _MultiLocationAlertConditionState:
|
|
166
162
|
warning: Optional[pulumi.Input['MultiLocationAlertConditionWarningArgs']] = None):
|
167
163
|
"""
|
168
164
|
Input properties used for looking up and filtering MultiLocationAlertCondition resources.
|
169
|
-
:param pulumi.Input['MultiLocationAlertConditionCriticalArgs'] critical: A condition term with
|
170
|
-
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition.
|
171
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
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. Defaults to true.
|
167
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The GUIDs of the Synthetics monitors to alert on.
|
172
168
|
:param pulumi.Input[str] entity_guid: The unique entity identifier of the condition in New Relic.
|
173
|
-
:param pulumi.Input[str] name: The title of
|
169
|
+
:param pulumi.Input[str] name: The title of this condition.
|
174
170
|
:param pulumi.Input[str] policy_id: The ID of the policy where this condition will be used.
|
175
171
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
176
|
-
:param pulumi.Input[int] violation_time_limit_seconds:
|
177
|
-
|
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.
|
172
|
+
:param pulumi.Input[int] violation_time_limit_seconds: Sets a time limit, in seconds, that will automatically force-close a long-lasting incident after the time limit you
|
173
|
+
select. Must be in the range of 300 to 2592000 (inclusive)
|
174
|
+
:param pulumi.Input['MultiLocationAlertConditionWarningArgs'] warning: A condition term with priority set to warning.
|
181
175
|
"""
|
182
176
|
if critical is not None:
|
183
177
|
pulumi.set(__self__, "critical", critical)
|
@@ -202,7 +196,7 @@ class _MultiLocationAlertConditionState:
|
|
202
196
|
@pulumi.getter
|
203
197
|
def critical(self) -> Optional[pulumi.Input['MultiLocationAlertConditionCriticalArgs']]:
|
204
198
|
"""
|
205
|
-
A condition term with
|
199
|
+
A condition term with priority set to critical.
|
206
200
|
"""
|
207
201
|
return pulumi.get(self, "critical")
|
208
202
|
|
@@ -214,7 +208,7 @@ class _MultiLocationAlertConditionState:
|
|
214
208
|
@pulumi.getter
|
215
209
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
216
210
|
"""
|
217
|
-
Set whether to enable the alert condition.
|
211
|
+
Set whether to enable the alert condition. Defaults to true.
|
218
212
|
"""
|
219
213
|
return pulumi.get(self, "enabled")
|
220
214
|
|
@@ -226,7 +220,7 @@ class _MultiLocationAlertConditionState:
|
|
226
220
|
@pulumi.getter
|
227
221
|
def entities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
228
222
|
"""
|
229
|
-
The
|
223
|
+
The GUIDs of the Synthetics monitors to alert on.
|
230
224
|
"""
|
231
225
|
return pulumi.get(self, "entities")
|
232
226
|
|
@@ -250,7 +244,7 @@ class _MultiLocationAlertConditionState:
|
|
250
244
|
@pulumi.getter
|
251
245
|
def name(self) -> Optional[pulumi.Input[str]]:
|
252
246
|
"""
|
253
|
-
The title of
|
247
|
+
The title of this condition.
|
254
248
|
"""
|
255
249
|
return pulumi.get(self, "name")
|
256
250
|
|
@@ -286,7 +280,8 @@ class _MultiLocationAlertConditionState:
|
|
286
280
|
@pulumi.getter(name="violationTimeLimitSeconds")
|
287
281
|
def violation_time_limit_seconds(self) -> Optional[pulumi.Input[int]]:
|
288
282
|
"""
|
289
|
-
|
283
|
+
Sets a time limit, in seconds, that will automatically force-close a long-lasting incident after the time limit you
|
284
|
+
select. Must be in the range of 300 to 2592000 (inclusive)
|
290
285
|
"""
|
291
286
|
return pulumi.get(self, "violation_time_limit_seconds")
|
292
287
|
|
@@ -298,10 +293,7 @@ class _MultiLocationAlertConditionState:
|
|
298
293
|
@pulumi.getter
|
299
294
|
def warning(self) -> Optional[pulumi.Input['MultiLocationAlertConditionWarningArgs']]:
|
300
295
|
"""
|
301
|
-
A condition term with
|
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.
|
296
|
+
A condition term with priority set to warning.
|
305
297
|
"""
|
306
298
|
return pulumi.get(self, "warning")
|
307
299
|
|
@@ -429,17 +421,15 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
429
421
|
|
430
422
|
:param str resource_name: The name of the resource.
|
431
423
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
432
|
-
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionCriticalArgs']] critical: A condition term with
|
433
|
-
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition.
|
434
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
435
|
-
:param pulumi.Input[str] name: The title of
|
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. Defaults to true.
|
426
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The GUIDs of the Synthetics monitors to alert on.
|
427
|
+
:param pulumi.Input[str] name: The title of this condition.
|
436
428
|
:param pulumi.Input[str] policy_id: The ID of the policy where this condition will be used.
|
437
429
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
438
|
-
:param pulumi.Input[int] violation_time_limit_seconds:
|
439
|
-
|
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.
|
430
|
+
:param pulumi.Input[int] violation_time_limit_seconds: Sets a time limit, in seconds, that will automatically force-close a long-lasting incident after the time limit you
|
431
|
+
select. Must be in the range of 300 to 2592000 (inclusive)
|
432
|
+
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionWarningArgs']] warning: A condition term with priority set to warning.
|
443
433
|
"""
|
444
434
|
...
|
445
435
|
@overload
|
@@ -623,18 +613,16 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
623
613
|
:param str resource_name: The unique name of the resulting resource.
|
624
614
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
625
615
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
626
|
-
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionCriticalArgs']] critical: A condition term with
|
627
|
-
:param pulumi.Input[bool] enabled: Set whether to enable the alert condition.
|
628
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The
|
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. Defaults to true.
|
618
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entities: The GUIDs of the Synthetics monitors to alert on.
|
629
619
|
:param pulumi.Input[str] entity_guid: The unique entity identifier of the condition in New Relic.
|
630
|
-
:param pulumi.Input[str] name: The title of
|
620
|
+
:param pulumi.Input[str] name: The title of this condition.
|
631
621
|
:param pulumi.Input[str] policy_id: The ID of the policy where this condition will be used.
|
632
622
|
:param pulumi.Input[str] runbook_url: Runbook URL to display in notifications.
|
633
|
-
:param pulumi.Input[int] violation_time_limit_seconds:
|
634
|
-
|
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.
|
623
|
+
:param pulumi.Input[int] violation_time_limit_seconds: Sets a time limit, in seconds, that will automatically force-close a long-lasting incident after the time limit you
|
624
|
+
select. Must be in the range of 300 to 2592000 (inclusive)
|
625
|
+
:param pulumi.Input[pulumi.InputType['MultiLocationAlertConditionWarningArgs']] warning: A condition term with priority set to warning.
|
638
626
|
"""
|
639
627
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
640
628
|
|
@@ -655,7 +643,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
655
643
|
@pulumi.getter
|
656
644
|
def critical(self) -> pulumi.Output['outputs.MultiLocationAlertConditionCritical']:
|
657
645
|
"""
|
658
|
-
A condition term with
|
646
|
+
A condition term with priority set to critical.
|
659
647
|
"""
|
660
648
|
return pulumi.get(self, "critical")
|
661
649
|
|
@@ -663,7 +651,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
663
651
|
@pulumi.getter
|
664
652
|
def enabled(self) -> pulumi.Output[Optional[bool]]:
|
665
653
|
"""
|
666
|
-
Set whether to enable the alert condition.
|
654
|
+
Set whether to enable the alert condition. Defaults to true.
|
667
655
|
"""
|
668
656
|
return pulumi.get(self, "enabled")
|
669
657
|
|
@@ -671,7 +659,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
671
659
|
@pulumi.getter
|
672
660
|
def entities(self) -> pulumi.Output[Sequence[str]]:
|
673
661
|
"""
|
674
|
-
The
|
662
|
+
The GUIDs of the Synthetics monitors to alert on.
|
675
663
|
"""
|
676
664
|
return pulumi.get(self, "entities")
|
677
665
|
|
@@ -687,7 +675,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
687
675
|
@pulumi.getter
|
688
676
|
def name(self) -> pulumi.Output[str]:
|
689
677
|
"""
|
690
|
-
The title of
|
678
|
+
The title of this condition.
|
691
679
|
"""
|
692
680
|
return pulumi.get(self, "name")
|
693
681
|
|
@@ -711,7 +699,8 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
711
699
|
@pulumi.getter(name="violationTimeLimitSeconds")
|
712
700
|
def violation_time_limit_seconds(self) -> pulumi.Output[Optional[int]]:
|
713
701
|
"""
|
714
|
-
|
702
|
+
Sets a time limit, in seconds, that will automatically force-close a long-lasting incident after the time limit you
|
703
|
+
select. Must be in the range of 300 to 2592000 (inclusive)
|
715
704
|
"""
|
716
705
|
return pulumi.get(self, "violation_time_limit_seconds")
|
717
706
|
|
@@ -719,10 +708,7 @@ class MultiLocationAlertCondition(pulumi.CustomResource):
|
|
719
708
|
@pulumi.getter
|
720
709
|
def warning(self) -> pulumi.Output[Optional['outputs.MultiLocationAlertConditionWarning']]:
|
721
710
|
"""
|
722
|
-
A condition term with
|
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.
|
711
|
+
A condition term with priority set to warning.
|
726
712
|
"""
|
727
713
|
return pulumi.get(self, "warning")
|
728
714
|
|
@@ -568,8 +568,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
568
568
|
type: Optional[pulumi.Input[str]] = None,
|
569
569
|
__props__=None):
|
570
570
|
"""
|
571
|
-
> **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.
|
572
|
-
|
573
571
|
Use this resource to create update, and delete a Script API or Script Browser Synthetics Monitor in New Relic.
|
574
572
|
|
575
573
|
## Example Usage
|
@@ -728,8 +726,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
728
726
|
args: ScriptMonitorArgs,
|
729
727
|
opts: Optional[pulumi.ResourceOptions] = None):
|
730
728
|
"""
|
731
|
-
> **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.
|
732
|
-
|
733
729
|
Use this resource to create update, and delete a Script API or Script Browser Synthetics Monitor in New Relic.
|
734
730
|
|
735
731
|
## Example Usage
|