pulumi-newrelic 5.29.2a1724055024__py3-none-any.whl → 5.30.0a1723819975__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/pulumi-plugin.json +1 -1
- pulumi_newrelic/synthetics/broken_links_monitor.py +43 -7
- pulumi_newrelic/synthetics/cert_check_monitor.py +8 -0
- pulumi_newrelic/synthetics/monitor.py +8 -0
- pulumi_newrelic/synthetics/script_monitor.py +8 -0
- pulumi_newrelic/synthetics/step_monitor.py +43 -7
- {pulumi_newrelic-5.29.2a1724055024.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.29.2a1724055024.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/RECORD +10 -10
- {pulumi_newrelic-5.29.2a1724055024.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.29.2a1724055024.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/top_level.txt +0 -0
@@ -36,7 +36,11 @@ class BrokenLinksMonitorArgs:
|
|
36
36
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
|
37
37
|
:param pulumi.Input[str] name: The name for the monitor.
|
38
38
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
39
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
39
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
40
|
+
|
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 August 26, 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.
|
40
44
|
:param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
41
45
|
"""
|
42
46
|
pulumi.set(__self__, "period", period)
|
@@ -157,7 +161,11 @@ class BrokenLinksMonitorArgs:
|
|
157
161
|
@pulumi.getter(name="runtimeTypeVersion")
|
158
162
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
159
163
|
"""
|
160
|
-
The specific
|
164
|
+
The specific version of the runtime type selected.
|
165
|
+
|
166
|
+
> **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 August 26, 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.
|
161
169
|
"""
|
162
170
|
return pulumi.get(self, "runtime_type_version")
|
163
171
|
|
@@ -203,7 +211,11 @@ class _BrokenLinksMonitorState:
|
|
203
211
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
|
204
212
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
205
213
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
206
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
214
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
215
|
+
|
216
|
+
> **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 August 26, 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.
|
207
219
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
208
220
|
:param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
209
221
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -333,7 +345,11 @@ class _BrokenLinksMonitorState:
|
|
333
345
|
@pulumi.getter(name="runtimeTypeVersion")
|
334
346
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
335
347
|
"""
|
336
|
-
The specific
|
348
|
+
The specific version of the runtime type selected.
|
349
|
+
|
350
|
+
> **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 August 26, 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.
|
337
353
|
"""
|
338
354
|
return pulumi.get(self, "runtime_type_version")
|
339
355
|
|
@@ -395,6 +411,10 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
395
411
|
uri: Optional[pulumi.Input[str]] = None,
|
396
412
|
__props__=None):
|
397
413
|
"""
|
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 August 26, 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
|
+
Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
|
417
|
+
|
398
418
|
## Example Usage
|
399
419
|
|
400
420
|
```python
|
@@ -462,7 +482,11 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
462
482
|
:param pulumi.Input[str] name: The name for the monitor.
|
463
483
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
|
464
484
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
465
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
485
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
486
|
+
|
487
|
+
> **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 August 26, 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.
|
466
490
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
467
491
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
468
492
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -474,6 +498,10 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
474
498
|
args: BrokenLinksMonitorArgs,
|
475
499
|
opts: Optional[pulumi.ResourceOptions] = None):
|
476
500
|
"""
|
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 August 26, 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
|
+
Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
|
504
|
+
|
477
505
|
## Example Usage
|
478
506
|
|
479
507
|
```python
|
@@ -622,7 +650,11 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
622
650
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
|
623
651
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
624
652
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
625
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
653
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
654
|
+
|
655
|
+
> **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 August 26, 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.
|
626
658
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
627
659
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
628
660
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -713,7 +745,11 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
713
745
|
@pulumi.getter(name="runtimeTypeVersion")
|
714
746
|
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
715
747
|
"""
|
716
|
-
The specific
|
748
|
+
The specific version of the runtime type selected.
|
749
|
+
|
750
|
+
> **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 August 26, 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.
|
717
753
|
"""
|
718
754
|
return pulumi.get(self, "runtime_type_version")
|
719
755
|
|
@@ -427,6 +427,10 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
427
427
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None,
|
428
428
|
__props__=None):
|
429
429
|
"""
|
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 August 26, 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
|
+
Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
|
433
|
+
|
430
434
|
## Example Usage
|
431
435
|
|
432
436
|
```python
|
@@ -513,6 +517,10 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
513
517
|
args: CertCheckMonitorArgs,
|
514
518
|
opts: Optional[pulumi.ResourceOptions] = None):
|
515
519
|
"""
|
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 August 26, 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
|
+
Use this resource to create, update, and delete a Synthetics Certificate Check monitor in New Relic.
|
523
|
+
|
516
524
|
## Example Usage
|
517
525
|
|
518
526
|
```python
|
@@ -726,6 +726,10 @@ 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 August 26, 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
|
+
Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
|
732
|
+
|
729
733
|
## Example Usage
|
730
734
|
|
731
735
|
```python
|
@@ -899,6 +903,10 @@ class Monitor(pulumi.CustomResource):
|
|
899
903
|
args: MonitorArgs,
|
900
904
|
opts: Optional[pulumi.ResourceOptions] = None):
|
901
905
|
"""
|
906
|
+
> **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 August 26, 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.
|
907
|
+
|
908
|
+
Use this resource to create, update, and delete a Simple or Browser Synthetics Monitor in New Relic.
|
909
|
+
|
902
910
|
## Example Usage
|
903
911
|
|
904
912
|
```python
|
@@ -568,6 +568,10 @@ 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 August 26, 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
|
+
Use this resource to create update, and delete a Script API or Script Browser Synthetics Monitor in New Relic.
|
574
|
+
|
571
575
|
## Example Usage
|
572
576
|
|
573
577
|
##### Type: `SCRIPT_API`
|
@@ -726,6 +730,10 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
726
730
|
args: ScriptMonitorArgs,
|
727
731
|
opts: Optional[pulumi.ResourceOptions] = None):
|
728
732
|
"""
|
733
|
+
> **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 August 26, 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.
|
734
|
+
|
735
|
+
Use this resource to create update, and delete a Script API or Script Browser Synthetics Monitor in New Relic.
|
736
|
+
|
729
737
|
## Example Usage
|
730
738
|
|
731
739
|
##### Type: `SCRIPT_API`
|
@@ -38,7 +38,11 @@ class StepMonitorArgs:
|
|
38
38
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
|
39
39
|
:param pulumi.Input[str] name: The name for the monitor.
|
40
40
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
41
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
41
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
42
|
+
|
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 August 26, 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.
|
42
46
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
43
47
|
"""
|
44
48
|
pulumi.set(__self__, "period", period)
|
@@ -173,7 +177,11 @@ class StepMonitorArgs:
|
|
173
177
|
@pulumi.getter(name="runtimeTypeVersion")
|
174
178
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
175
179
|
"""
|
176
|
-
The specific
|
180
|
+
The specific version of the runtime type selected.
|
181
|
+
|
182
|
+
> **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 August 26, 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.
|
177
185
|
"""
|
178
186
|
return pulumi.get(self, "runtime_type_version")
|
179
187
|
|
@@ -221,7 +229,11 @@ class _StepMonitorState:
|
|
221
229
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
|
222
230
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
223
231
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
224
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
232
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
233
|
+
|
234
|
+
> **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 August 26, 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.
|
225
237
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
226
238
|
: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.
|
227
239
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
@@ -365,7 +377,11 @@ class _StepMonitorState:
|
|
365
377
|
@pulumi.getter(name="runtimeTypeVersion")
|
366
378
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
367
379
|
"""
|
368
|
-
The specific
|
380
|
+
The specific version of the runtime type selected.
|
381
|
+
|
382
|
+
> **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 August 26, 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.
|
369
385
|
"""
|
370
386
|
return pulumi.get(self, "runtime_type_version")
|
371
387
|
|
@@ -428,6 +444,10 @@ class StepMonitor(pulumi.CustomResource):
|
|
428
444
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
429
445
|
__props__=None):
|
430
446
|
"""
|
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 August 26, 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
|
+
Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
|
450
|
+
|
431
451
|
## Example Usage
|
432
452
|
|
433
453
|
```python
|
@@ -511,7 +531,11 @@ class StepMonitor(pulumi.CustomResource):
|
|
511
531
|
:param pulumi.Input[str] name: The name for the monitor.
|
512
532
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
|
513
533
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
514
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
534
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
535
|
+
|
536
|
+
> **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 August 26, 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.
|
515
539
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
516
540
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
517
541
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
@@ -523,6 +547,10 @@ class StepMonitor(pulumi.CustomResource):
|
|
523
547
|
args: StepMonitorArgs,
|
524
548
|
opts: Optional[pulumi.ResourceOptions] = None):
|
525
549
|
"""
|
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 August 26, 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
|
+
Use this resource to create, update, and delete a Synthetics Step monitor in New Relic.
|
553
|
+
|
526
554
|
## Example Usage
|
527
555
|
|
528
556
|
```python
|
@@ -690,7 +718,11 @@ class StepMonitor(pulumi.CustomResource):
|
|
690
718
|
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
|
691
719
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
692
720
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
693
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
721
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
722
|
+
|
723
|
+
> **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 August 26, 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.
|
694
726
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
695
727
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
696
728
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
@@ -790,7 +822,11 @@ class StepMonitor(pulumi.CustomResource):
|
|
790
822
|
@pulumi.getter(name="runtimeTypeVersion")
|
791
823
|
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
792
824
|
"""
|
793
|
-
The specific
|
825
|
+
The specific version of the runtime type selected.
|
826
|
+
|
827
|
+
> **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 August 26, 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.
|
794
830
|
"""
|
795
831
|
return pulumi.get(self, "runtime_type_version")
|
796
832
|
|
{pulumi_newrelic-5.29.2a1724055024.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/RECORD
RENAMED
@@ -41,7 +41,7 @@ pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0
|
|
41
41
|
pulumi_newrelic/one_dashboard_raw.py,sha256=_5CWA6p6_tCfI135mTysVo0qjQf1xnYBNEZBDNmKqsw,23502
|
42
42
|
pulumi_newrelic/outputs.py,sha256=l-PV80TdUbyoWHCI0a6urYAo0BGQyA0AIcipGHyho34,489353
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=-RsqSmDOVfCfMkIR-yb97NhVsaNZ1enhUYv_gGNjilo,85
|
45
45
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
46
|
pulumi_newrelic/service_level.py,sha256=1MA3qQw6Y6d-HA6TIckt0B7FLZIhNCH8GuWhn0f246M,28806
|
47
47
|
pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
|
@@ -72,18 +72,18 @@ pulumi_newrelic/plugins/workload.py,sha256=P5cneA0nvHde5bwvn7588axMm_HW6EEtNTtRo
|
|
72
72
|
pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
|
73
73
|
pulumi_newrelic/synthetics/_inputs.py,sha256=wG65bo-G3IZqpM38sGqptmaKOxJSSmCySyhbUJLPZt4,13645
|
74
74
|
pulumi_newrelic/synthetics/alert_condition.py,sha256=czvLt2PDjY-db9FHF9uBzPYGGE9NBfoLuJtjyT0-VEY,21063
|
75
|
-
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=
|
76
|
-
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=
|
75
|
+
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=r3B2phNX4Sklyx3oMVV4RTcuizxowrEgpaD5Vc8vQCo,45412
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=GB_N4NTS6A5plAqiq06wjsfhlrY0ttSb_JWVaDG6kDo,47498
|
77
77
|
pulumi_newrelic/synthetics/get_private_location.py,sha256=qgChL7uKmcMLxrjvYGZ9Duh6zbdgX80TKHaF-7_LLBc,5701
|
78
78
|
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=xexkDSteNi9kn0UuucFUSTIbz_NaHOzw6HTsg2yGoEU,5479
|
79
|
-
pulumi_newrelic/synthetics/monitor.py,sha256=
|
79
|
+
pulumi_newrelic/synthetics/monitor.py,sha256=st1pKKNhfNhZOeHTM3hrcmnBDv0WojS1SV1l6vp7S24,65810
|
80
80
|
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=0CKd3lqK2-vL7mXXWM5LfSyxjbYLg7XFXwJyAwyvYOM,34660
|
81
81
|
pulumi_newrelic/synthetics/outputs.py,sha256=z5-aR2wEr5nl36oFpcxI1ICSDWzci3KRU5G_OAz9MUM,11217
|
82
82
|
pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
|
83
|
-
pulumi_newrelic/synthetics/script_monitor.py,sha256=
|
83
|
+
pulumi_newrelic/synthetics/script_monitor.py,sha256=ZiydwgET60EP-85SHUyghFr31RSBVAHbcRaEjPT8yxM,56960
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
|
85
|
-
pulumi_newrelic/synthetics/step_monitor.py,sha256
|
86
|
-
pulumi_newrelic-5.
|
87
|
-
pulumi_newrelic-5.
|
88
|
-
pulumi_newrelic-5.
|
89
|
-
pulumi_newrelic-5.
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=7faCHLztiP64D-k2QRxJD8-SFYXs-qiUPXHk_CSsDe0,50696
|
86
|
+
pulumi_newrelic-5.30.0a1723819975.dist-info/METADATA,sha256=2J3S0RFOXjcQsHFiWj116mmGYwNRgCToy55sMuHzWNE,3900
|
87
|
+
pulumi_newrelic-5.30.0a1723819975.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
88
|
+
pulumi_newrelic-5.30.0a1723819975.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.30.0a1723819975.dist-info/RECORD,,
|
{pulumi_newrelic-5.29.2a1724055024.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|