pulumi-newrelic 5.30.0__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 +46 -44
- pulumi_newrelic/synthetics/cert_check_monitor.py +46 -44
- pulumi_newrelic/synthetics/monitor.py +8 -34
- pulumi_newrelic/synthetics/script_monitor.py +11 -37
- pulumi_newrelic/synthetics/step_monitor.py +46 -44
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/RECORD +10 -10
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/top_level.txt +0 -0
@@ -25,8 +25,7 @@ class BrokenLinksMonitorArgs:
|
|
25
25
|
name: Optional[pulumi.Input[str]] = None,
|
26
26
|
runtime_type: Optional[pulumi.Input[str]] = None,
|
27
27
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
28
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]] = None
|
29
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
28
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]] = None):
|
30
29
|
"""
|
31
30
|
The set of arguments for constructing a BrokenLinksMonitor resource.
|
32
31
|
: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`.
|
@@ -37,7 +36,11 @@ class BrokenLinksMonitorArgs:
|
|
37
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.
|
38
37
|
:param pulumi.Input[str] name: The name for the monitor.
|
39
38
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
40
|
-
: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.
|
41
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
|
42
45
|
"""
|
43
46
|
pulumi.set(__self__, "period", period)
|
@@ -57,8 +60,6 @@ class BrokenLinksMonitorArgs:
|
|
57
60
|
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
58
61
|
if tags is not None:
|
59
62
|
pulumi.set(__self__, "tags", tags)
|
60
|
-
if use_unsupported_legacy_runtime is not None:
|
61
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
62
63
|
|
63
64
|
@property
|
64
65
|
@pulumi.getter
|
@@ -160,7 +161,11 @@ class BrokenLinksMonitorArgs:
|
|
160
161
|
@pulumi.getter(name="runtimeTypeVersion")
|
161
162
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
162
163
|
"""
|
163
|
-
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.
|
164
169
|
"""
|
165
170
|
return pulumi.get(self, "runtime_type_version")
|
166
171
|
|
@@ -180,15 +185,6 @@ class BrokenLinksMonitorArgs:
|
|
180
185
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]]):
|
181
186
|
pulumi.set(self, "tags", value)
|
182
187
|
|
183
|
-
@property
|
184
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
185
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
186
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
187
|
-
|
188
|
-
@use_unsupported_legacy_runtime.setter
|
189
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
190
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
191
|
-
|
192
188
|
|
193
189
|
@pulumi.input_type
|
194
190
|
class _BrokenLinksMonitorState:
|
@@ -204,8 +200,7 @@ class _BrokenLinksMonitorState:
|
|
204
200
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
205
201
|
status: Optional[pulumi.Input[str]] = None,
|
206
202
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]] = None,
|
207
|
-
uri: Optional[pulumi.Input[str]] = None
|
208
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
203
|
+
uri: Optional[pulumi.Input[str]] = None):
|
209
204
|
"""
|
210
205
|
Input properties used for looking up and filtering BrokenLinksMonitor resources.
|
211
206
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
@@ -216,7 +211,11 @@ class _BrokenLinksMonitorState:
|
|
216
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`.
|
217
212
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
218
213
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
219
|
-
: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.
|
220
219
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
221
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
|
222
221
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -245,8 +244,6 @@ class _BrokenLinksMonitorState:
|
|
245
244
|
pulumi.set(__self__, "tags", tags)
|
246
245
|
if uri is not None:
|
247
246
|
pulumi.set(__self__, "uri", uri)
|
248
|
-
if use_unsupported_legacy_runtime is not None:
|
249
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
250
247
|
|
251
248
|
@property
|
252
249
|
@pulumi.getter(name="accountId")
|
@@ -348,7 +345,11 @@ class _BrokenLinksMonitorState:
|
|
348
345
|
@pulumi.getter(name="runtimeTypeVersion")
|
349
346
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
350
347
|
"""
|
351
|
-
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.
|
352
353
|
"""
|
353
354
|
return pulumi.get(self, "runtime_type_version")
|
354
355
|
|
@@ -392,15 +393,6 @@ class _BrokenLinksMonitorState:
|
|
392
393
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
393
394
|
pulumi.set(self, "uri", value)
|
394
395
|
|
395
|
-
@property
|
396
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
397
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
398
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
399
|
-
|
400
|
-
@use_unsupported_legacy_runtime.setter
|
401
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
402
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
403
|
-
|
404
396
|
|
405
397
|
class BrokenLinksMonitor(pulumi.CustomResource):
|
406
398
|
@overload
|
@@ -417,9 +409,12 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
417
409
|
status: Optional[pulumi.Input[str]] = None,
|
418
410
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
419
411
|
uri: Optional[pulumi.Input[str]] = None,
|
420
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
421
412
|
__props__=None):
|
422
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
|
+
|
423
418
|
## Example Usage
|
424
419
|
|
425
420
|
```python
|
@@ -487,7 +482,11 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
487
482
|
:param pulumi.Input[str] name: The name for the monitor.
|
488
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`.
|
489
484
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
490
|
-
: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.
|
491
490
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
492
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
|
493
492
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -499,6 +498,10 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
499
498
|
args: BrokenLinksMonitorArgs,
|
500
499
|
opts: Optional[pulumi.ResourceOptions] = None):
|
501
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
|
+
|
502
505
|
## Example Usage
|
503
506
|
|
504
507
|
```python
|
@@ -583,7 +586,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
583
586
|
status: Optional[pulumi.Input[str]] = None,
|
584
587
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
585
588
|
uri: Optional[pulumi.Input[str]] = None,
|
586
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
587
589
|
__props__=None):
|
588
590
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
589
591
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -609,7 +611,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
609
611
|
if uri is None and not opts.urn:
|
610
612
|
raise TypeError("Missing required property 'uri'")
|
611
613
|
__props__.__dict__["uri"] = uri
|
612
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
613
614
|
__props__.__dict__["guid"] = None
|
614
615
|
__props__.__dict__["period_in_minutes"] = None
|
615
616
|
super(BrokenLinksMonitor, __self__).__init__(
|
@@ -633,8 +634,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
633
634
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
634
635
|
status: Optional[pulumi.Input[str]] = None,
|
635
636
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
636
|
-
uri: Optional[pulumi.Input[str]] = None
|
637
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None) -> 'BrokenLinksMonitor':
|
637
|
+
uri: Optional[pulumi.Input[str]] = None) -> 'BrokenLinksMonitor':
|
638
638
|
"""
|
639
639
|
Get an existing BrokenLinksMonitor resource's state with the given name, id, and optional extra
|
640
640
|
properties used to qualify the lookup.
|
@@ -650,7 +650,11 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
650
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`.
|
651
651
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
652
652
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
653
|
-
: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.
|
654
658
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
655
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
|
656
660
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
@@ -671,7 +675,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
671
675
|
__props__.__dict__["status"] = status
|
672
676
|
__props__.__dict__["tags"] = tags
|
673
677
|
__props__.__dict__["uri"] = uri
|
674
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
675
678
|
return BrokenLinksMonitor(resource_name, opts=opts, __props__=__props__)
|
676
679
|
|
677
680
|
@property
|
@@ -742,7 +745,11 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
742
745
|
@pulumi.getter(name="runtimeTypeVersion")
|
743
746
|
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
744
747
|
"""
|
745
|
-
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.
|
746
753
|
"""
|
747
754
|
return pulumi.get(self, "runtime_type_version")
|
748
755
|
|
@@ -770,8 +777,3 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
770
777
|
"""
|
771
778
|
return pulumi.get(self, "uri")
|
772
779
|
|
773
|
-
@property
|
774
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
775
|
-
def use_unsupported_legacy_runtime(self) -> pulumi.Output[Optional[bool]]:
|
776
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
777
|
-
|
@@ -26,8 +26,7 @@ class CertCheckMonitorArgs:
|
|
26
26
|
name: Optional[pulumi.Input[str]] = None,
|
27
27
|
runtime_type: Optional[pulumi.Input[str]] = None,
|
28
28
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
29
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]]] = None
|
30
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
29
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a CertCheckMonitor resource.
|
33
32
|
:param pulumi.Input[int] certificate_expiration: The desired number of remaining days until the certificate expires to trigger a monitor failure.
|
@@ -39,7 +38,11 @@ class CertCheckMonitorArgs:
|
|
39
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.
|
40
39
|
:param pulumi.Input[str] name: The name for the monitor.
|
41
40
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
42
|
-
: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 `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 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.
|
43
46
|
:param pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
44
47
|
"""
|
45
48
|
pulumi.set(__self__, "certificate_expiration", certificate_expiration)
|
@@ -60,8 +63,6 @@ class CertCheckMonitorArgs:
|
|
60
63
|
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
61
64
|
if tags is not None:
|
62
65
|
pulumi.set(__self__, "tags", tags)
|
63
|
-
if use_unsupported_legacy_runtime is not None:
|
64
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
65
66
|
|
66
67
|
@property
|
67
68
|
@pulumi.getter(name="certificateExpiration")
|
@@ -175,7 +176,11 @@ class CertCheckMonitorArgs:
|
|
175
176
|
@pulumi.getter(name="runtimeTypeVersion")
|
176
177
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
177
178
|
"""
|
178
|
-
The specific
|
179
|
+
The specific version of the runtime type selected.
|
180
|
+
|
181
|
+
> **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 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.
|
179
184
|
"""
|
180
185
|
return pulumi.get(self, "runtime_type_version")
|
181
186
|
|
@@ -195,15 +200,6 @@ class CertCheckMonitorArgs:
|
|
195
200
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]]]):
|
196
201
|
pulumi.set(self, "tags", value)
|
197
202
|
|
198
|
-
@property
|
199
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
200
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
201
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
202
|
-
|
203
|
-
@use_unsupported_legacy_runtime.setter
|
204
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
205
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
206
|
-
|
207
203
|
|
208
204
|
@pulumi.input_type
|
209
205
|
class _CertCheckMonitorState:
|
@@ -219,8 +215,7 @@ class _CertCheckMonitorState:
|
|
219
215
|
runtime_type: Optional[pulumi.Input[str]] = None,
|
220
216
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
221
217
|
status: Optional[pulumi.Input[str]] = None,
|
222
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]]] = None
|
223
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
218
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]]] = None):
|
224
219
|
"""
|
225
220
|
Input properties used for looking up and filtering CertCheckMonitor resources.
|
226
221
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
@@ -232,7 +227,11 @@ class _CertCheckMonitorState:
|
|
232
227
|
: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`.
|
233
228
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
234
229
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
235
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
230
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
231
|
+
|
232
|
+
> **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 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.
|
236
235
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
237
236
|
:param pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
238
237
|
"""
|
@@ -260,8 +259,6 @@ class _CertCheckMonitorState:
|
|
260
259
|
pulumi.set(__self__, "status", status)
|
261
260
|
if tags is not None:
|
262
261
|
pulumi.set(__self__, "tags", tags)
|
263
|
-
if use_unsupported_legacy_runtime is not None:
|
264
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
265
262
|
|
266
263
|
@property
|
267
264
|
@pulumi.getter(name="accountId")
|
@@ -375,7 +372,11 @@ class _CertCheckMonitorState:
|
|
375
372
|
@pulumi.getter(name="runtimeTypeVersion")
|
376
373
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
377
374
|
"""
|
378
|
-
The specific
|
375
|
+
The specific version of the runtime type selected.
|
376
|
+
|
377
|
+
> **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 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.
|
379
380
|
"""
|
380
381
|
return pulumi.get(self, "runtime_type_version")
|
381
382
|
|
@@ -407,15 +408,6 @@ class _CertCheckMonitorState:
|
|
407
408
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CertCheckMonitorTagArgs']]]]):
|
408
409
|
pulumi.set(self, "tags", value)
|
409
410
|
|
410
|
-
@property
|
411
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
412
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
413
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
414
|
-
|
415
|
-
@use_unsupported_legacy_runtime.setter
|
416
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
417
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
418
|
-
|
419
411
|
|
420
412
|
class CertCheckMonitor(pulumi.CustomResource):
|
421
413
|
@overload
|
@@ -433,9 +425,12 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
433
425
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
434
426
|
status: Optional[pulumi.Input[str]] = None,
|
435
427
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None,
|
436
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
437
428
|
__props__=None):
|
438
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
|
+
|
439
434
|
## Example Usage
|
440
435
|
|
441
436
|
```python
|
@@ -507,7 +502,11 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
507
502
|
:param pulumi.Input[str] name: The name for the monitor.
|
508
503
|
: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`.
|
509
504
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
510
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
505
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
506
|
+
|
507
|
+
> **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 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.
|
511
510
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
512
511
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
513
512
|
"""
|
@@ -518,6 +517,10 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
518
517
|
args: CertCheckMonitorArgs,
|
519
518
|
opts: Optional[pulumi.ResourceOptions] = None):
|
520
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
|
+
|
521
524
|
## Example Usage
|
522
525
|
|
523
526
|
```python
|
@@ -605,7 +608,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
605
608
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
606
609
|
status: Optional[pulumi.Input[str]] = None,
|
607
610
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None,
|
608
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
609
611
|
__props__=None):
|
610
612
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
611
613
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -634,7 +636,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
634
636
|
raise TypeError("Missing required property 'status'")
|
635
637
|
__props__.__dict__["status"] = status
|
636
638
|
__props__.__dict__["tags"] = tags
|
637
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
638
639
|
__props__.__dict__["period_in_minutes"] = None
|
639
640
|
super(CertCheckMonitor, __self__).__init__(
|
640
641
|
'newrelic:synthetics/certCheckMonitor:CertCheckMonitor',
|
@@ -657,8 +658,7 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
657
658
|
runtime_type: Optional[pulumi.Input[str]] = None,
|
658
659
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
659
660
|
status: Optional[pulumi.Input[str]] = None,
|
660
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None
|
661
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None) -> 'CertCheckMonitor':
|
661
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None) -> 'CertCheckMonitor':
|
662
662
|
"""
|
663
663
|
Get an existing CertCheckMonitor resource's state with the given name, id, and optional extra
|
664
664
|
properties used to qualify the lookup.
|
@@ -675,7 +675,11 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
675
675
|
: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`.
|
676
676
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
677
677
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
678
|
-
:param pulumi.Input[str] runtime_type_version: The specific
|
678
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
679
|
+
|
680
|
+
> **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 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.
|
679
683
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
680
684
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
681
685
|
"""
|
@@ -695,7 +699,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
695
699
|
__props__.__dict__["runtime_type_version"] = runtime_type_version
|
696
700
|
__props__.__dict__["status"] = status
|
697
701
|
__props__.__dict__["tags"] = tags
|
698
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
699
702
|
return CertCheckMonitor(resource_name, opts=opts, __props__=__props__)
|
700
703
|
|
701
704
|
@property
|
@@ -774,7 +777,11 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
774
777
|
@pulumi.getter(name="runtimeTypeVersion")
|
775
778
|
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
776
779
|
"""
|
777
|
-
The specific
|
780
|
+
The specific version of the runtime type selected.
|
781
|
+
|
782
|
+
> **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 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.
|
778
785
|
"""
|
779
786
|
return pulumi.get(self, "runtime_type_version")
|
780
787
|
|
@@ -794,8 +801,3 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
794
801
|
"""
|
795
802
|
return pulumi.get(self, "tags")
|
796
803
|
|
797
|
-
@property
|
798
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
799
|
-
def use_unsupported_legacy_runtime(self) -> pulumi.Output[Optional[bool]]:
|
800
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
801
|
-
|
@@ -34,7 +34,6 @@ class MonitorArgs:
|
|
34
34
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['MonitorTagArgs']]]] = None,
|
35
35
|
treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
|
36
36
|
uri: Optional[pulumi.Input[str]] = None,
|
37
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
38
37
|
validation_string: Optional[pulumi.Input[str]] = None,
|
39
38
|
verify_ssl: Optional[pulumi.Input[bool]] = None):
|
40
39
|
"""
|
@@ -98,8 +97,6 @@ class MonitorArgs:
|
|
98
97
|
pulumi.set(__self__, "treat_redirect_as_failure", treat_redirect_as_failure)
|
99
98
|
if uri is not None:
|
100
99
|
pulumi.set(__self__, "uri", uri)
|
101
|
-
if use_unsupported_legacy_runtime is not None:
|
102
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
103
100
|
if validation_string is not None:
|
104
101
|
pulumi.set(__self__, "validation_string", validation_string)
|
105
102
|
if verify_ssl is not None:
|
@@ -325,15 +322,6 @@ class MonitorArgs:
|
|
325
322
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
326
323
|
pulumi.set(self, "uri", value)
|
327
324
|
|
328
|
-
@property
|
329
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
330
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
331
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
332
|
-
|
333
|
-
@use_unsupported_legacy_runtime.setter
|
334
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
335
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
336
|
-
|
337
325
|
@property
|
338
326
|
@pulumi.getter(name="validationString")
|
339
327
|
def validation_string(self) -> Optional[pulumi.Input[str]]:
|
@@ -381,7 +369,6 @@ class _MonitorState:
|
|
381
369
|
treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
|
382
370
|
type: Optional[pulumi.Input[str]] = None,
|
383
371
|
uri: Optional[pulumi.Input[str]] = None,
|
384
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
385
372
|
validation_string: Optional[pulumi.Input[str]] = None,
|
386
373
|
verify_ssl: Optional[pulumi.Input[bool]] = None):
|
387
374
|
"""
|
@@ -450,8 +437,6 @@ class _MonitorState:
|
|
450
437
|
pulumi.set(__self__, "type", type)
|
451
438
|
if uri is not None:
|
452
439
|
pulumi.set(__self__, "uri", uri)
|
453
|
-
if use_unsupported_legacy_runtime is not None:
|
454
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
455
440
|
if validation_string is not None:
|
456
441
|
pulumi.set(__self__, "validation_string", validation_string)
|
457
442
|
if verify_ssl is not None:
|
@@ -689,15 +674,6 @@ class _MonitorState:
|
|
689
674
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
690
675
|
pulumi.set(self, "uri", value)
|
691
676
|
|
692
|
-
@property
|
693
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
694
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
695
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
696
|
-
|
697
|
-
@use_unsupported_legacy_runtime.setter
|
698
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
699
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
700
|
-
|
701
677
|
@property
|
702
678
|
@pulumi.getter(name="validationString")
|
703
679
|
def validation_string(self) -> Optional[pulumi.Input[str]]:
|
@@ -746,11 +722,14 @@ class Monitor(pulumi.CustomResource):
|
|
746
722
|
treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
|
747
723
|
type: Optional[pulumi.Input[str]] = None,
|
748
724
|
uri: Optional[pulumi.Input[str]] = None,
|
749
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
750
725
|
validation_string: Optional[pulumi.Input[str]] = None,
|
751
726
|
verify_ssl: Optional[pulumi.Input[bool]] = None,
|
752
727
|
__props__=None):
|
753
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
|
+
|
754
733
|
## Example Usage
|
755
734
|
|
756
735
|
```python
|
@@ -924,6 +903,10 @@ class Monitor(pulumi.CustomResource):
|
|
924
903
|
args: MonitorArgs,
|
925
904
|
opts: Optional[pulumi.ResourceOptions] = None):
|
926
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
|
+
|
927
910
|
## Example Usage
|
928
911
|
|
929
912
|
```python
|
@@ -1096,7 +1079,6 @@ class Monitor(pulumi.CustomResource):
|
|
1096
1079
|
treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
|
1097
1080
|
type: Optional[pulumi.Input[str]] = None,
|
1098
1081
|
uri: Optional[pulumi.Input[str]] = None,
|
1099
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
1100
1082
|
validation_string: Optional[pulumi.Input[str]] = None,
|
1101
1083
|
verify_ssl: Optional[pulumi.Input[bool]] = None,
|
1102
1084
|
__props__=None):
|
@@ -1130,7 +1112,6 @@ class Monitor(pulumi.CustomResource):
|
|
1130
1112
|
raise TypeError("Missing required property 'type'")
|
1131
1113
|
__props__.__dict__["type"] = type
|
1132
1114
|
__props__.__dict__["uri"] = uri
|
1133
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
1134
1115
|
__props__.__dict__["validation_string"] = validation_string
|
1135
1116
|
__props__.__dict__["verify_ssl"] = verify_ssl
|
1136
1117
|
__props__.__dict__["period_in_minutes"] = None
|
@@ -1163,7 +1144,6 @@ class Monitor(pulumi.CustomResource):
|
|
1163
1144
|
treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
|
1164
1145
|
type: Optional[pulumi.Input[str]] = None,
|
1165
1146
|
uri: Optional[pulumi.Input[str]] = None,
|
1166
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
1167
1147
|
validation_string: Optional[pulumi.Input[str]] = None,
|
1168
1148
|
verify_ssl: Optional[pulumi.Input[bool]] = None) -> 'Monitor':
|
1169
1149
|
"""
|
@@ -1222,7 +1202,6 @@ class Monitor(pulumi.CustomResource):
|
|
1222
1202
|
__props__.__dict__["treat_redirect_as_failure"] = treat_redirect_as_failure
|
1223
1203
|
__props__.__dict__["type"] = type
|
1224
1204
|
__props__.__dict__["uri"] = uri
|
1225
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
1226
1205
|
__props__.__dict__["validation_string"] = validation_string
|
1227
1206
|
__props__.__dict__["verify_ssl"] = verify_ssl
|
1228
1207
|
return Monitor(resource_name, opts=opts, __props__=__props__)
|
@@ -1383,11 +1362,6 @@ class Monitor(pulumi.CustomResource):
|
|
1383
1362
|
"""
|
1384
1363
|
return pulumi.get(self, "uri")
|
1385
1364
|
|
1386
|
-
@property
|
1387
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
1388
|
-
def use_unsupported_legacy_runtime(self) -> pulumi.Output[Optional[bool]]:
|
1389
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
1390
|
-
|
1391
1365
|
@property
|
1392
1366
|
@pulumi.getter(name="validationString")
|
1393
1367
|
def validation_string(self) -> pulumi.Output[Optional[str]]:
|
@@ -30,8 +30,7 @@ class ScriptMonitorArgs:
|
|
30
30
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
31
31
|
script: Optional[pulumi.Input[str]] = None,
|
32
32
|
script_language: Optional[pulumi.Input[str]] = None,
|
33
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptMonitorTagArgs']]]] = None
|
34
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
33
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptMonitorTagArgs']]]] = None):
|
35
34
|
"""
|
36
35
|
The set of arguments for constructing a ScriptMonitor resource.
|
37
36
|
: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`.
|
@@ -79,8 +78,6 @@ class ScriptMonitorArgs:
|
|
79
78
|
pulumi.set(__self__, "script_language", script_language)
|
80
79
|
if tags is not None:
|
81
80
|
pulumi.set(__self__, "tags", tags)
|
82
|
-
if use_unsupported_legacy_runtime is not None:
|
83
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
84
81
|
|
85
82
|
@property
|
86
83
|
@pulumi.getter
|
@@ -264,15 +261,6 @@ class ScriptMonitorArgs:
|
|
264
261
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptMonitorTagArgs']]]]):
|
265
262
|
pulumi.set(self, "tags", value)
|
266
263
|
|
267
|
-
@property
|
268
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
269
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
270
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
271
|
-
|
272
|
-
@use_unsupported_legacy_runtime.setter
|
273
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
274
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
275
|
-
|
276
264
|
|
277
265
|
@pulumi.input_type
|
278
266
|
class _ScriptMonitorState:
|
@@ -293,8 +281,7 @@ class _ScriptMonitorState:
|
|
293
281
|
script_language: Optional[pulumi.Input[str]] = None,
|
294
282
|
status: Optional[pulumi.Input[str]] = None,
|
295
283
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptMonitorTagArgs']]]] = None,
|
296
|
-
type: Optional[pulumi.Input[str]] = None
|
297
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
284
|
+
type: Optional[pulumi.Input[str]] = None):
|
298
285
|
"""
|
299
286
|
Input properties used for looking up and filtering ScriptMonitor resources.
|
300
287
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
@@ -351,8 +338,6 @@ class _ScriptMonitorState:
|
|
351
338
|
pulumi.set(__self__, "tags", tags)
|
352
339
|
if type is not None:
|
353
340
|
pulumi.set(__self__, "type", type)
|
354
|
-
if use_unsupported_legacy_runtime is not None:
|
355
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
356
341
|
|
357
342
|
@property
|
358
343
|
@pulumi.getter(name="accountId")
|
@@ -560,15 +545,6 @@ class _ScriptMonitorState:
|
|
560
545
|
def type(self, value: Optional[pulumi.Input[str]]):
|
561
546
|
pulumi.set(self, "type", value)
|
562
547
|
|
563
|
-
@property
|
564
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
565
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
566
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
567
|
-
|
568
|
-
@use_unsupported_legacy_runtime.setter
|
569
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
570
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
571
|
-
|
572
548
|
|
573
549
|
class ScriptMonitor(pulumi.CustomResource):
|
574
550
|
@overload
|
@@ -590,9 +566,12 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
590
566
|
status: Optional[pulumi.Input[str]] = None,
|
591
567
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorTagArgs', 'ScriptMonitorTagArgsDict']]]]] = None,
|
592
568
|
type: Optional[pulumi.Input[str]] = None,
|
593
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
594
569
|
__props__=None):
|
595
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
|
+
|
596
575
|
## Example Usage
|
597
576
|
|
598
577
|
##### Type: `SCRIPT_API`
|
@@ -751,6 +730,10 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
751
730
|
args: ScriptMonitorArgs,
|
752
731
|
opts: Optional[pulumi.ResourceOptions] = None):
|
753
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
|
+
|
754
737
|
## Example Usage
|
755
738
|
|
756
739
|
##### Type: `SCRIPT_API`
|
@@ -912,7 +895,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
912
895
|
status: Optional[pulumi.Input[str]] = None,
|
913
896
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorTagArgs', 'ScriptMonitorTagArgsDict']]]]] = None,
|
914
897
|
type: Optional[pulumi.Input[str]] = None,
|
915
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
916
898
|
__props__=None):
|
917
899
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
918
900
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -943,7 +925,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
943
925
|
if type is None and not opts.urn:
|
944
926
|
raise TypeError("Missing required property 'type'")
|
945
927
|
__props__.__dict__["type"] = type
|
946
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
947
928
|
__props__.__dict__["guid"] = None
|
948
929
|
__props__.__dict__["period_in_minutes"] = None
|
949
930
|
super(ScriptMonitor, __self__).__init__(
|
@@ -972,8 +953,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
972
953
|
script_language: Optional[pulumi.Input[str]] = None,
|
973
954
|
status: Optional[pulumi.Input[str]] = None,
|
974
955
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorTagArgs', 'ScriptMonitorTagArgsDict']]]]] = None,
|
975
|
-
type: Optional[pulumi.Input[str]] = None
|
976
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None) -> 'ScriptMonitor':
|
956
|
+
type: Optional[pulumi.Input[str]] = None) -> 'ScriptMonitor':
|
977
957
|
"""
|
978
958
|
Get an existing ScriptMonitor resource's state with the given name, id, and optional extra
|
979
959
|
properties used to qualify the lookup.
|
@@ -1022,7 +1002,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
1022
1002
|
__props__.__dict__["status"] = status
|
1023
1003
|
__props__.__dict__["tags"] = tags
|
1024
1004
|
__props__.__dict__["type"] = type
|
1025
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
1026
1005
|
return ScriptMonitor(resource_name, opts=opts, __props__=__props__)
|
1027
1006
|
|
1028
1007
|
@property
|
@@ -1163,8 +1142,3 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
1163
1142
|
"""
|
1164
1143
|
return pulumi.get(self, "type")
|
1165
1144
|
|
1166
|
-
@property
|
1167
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
1168
|
-
def use_unsupported_legacy_runtime(self) -> pulumi.Output[Optional[bool]]:
|
1169
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
1170
|
-
|
@@ -26,8 +26,7 @@ class StepMonitorArgs:
|
|
26
26
|
name: Optional[pulumi.Input[str]] = None,
|
27
27
|
runtime_type: Optional[pulumi.Input[str]] = None,
|
28
28
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
29
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None
|
30
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
29
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a StepMonitor resource.
|
33
32
|
: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`.
|
@@ -39,7 +38,11 @@ class StepMonitorArgs:
|
|
39
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.
|
40
39
|
:param pulumi.Input[str] name: The name for the monitor.
|
41
40
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
42
|
-
: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.
|
43
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.
|
44
47
|
"""
|
45
48
|
pulumi.set(__self__, "period", period)
|
@@ -61,8 +64,6 @@ class StepMonitorArgs:
|
|
61
64
|
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
62
65
|
if tags is not None:
|
63
66
|
pulumi.set(__self__, "tags", tags)
|
64
|
-
if use_unsupported_legacy_runtime is not None:
|
65
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter
|
@@ -176,7 +177,11 @@ class StepMonitorArgs:
|
|
176
177
|
@pulumi.getter(name="runtimeTypeVersion")
|
177
178
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
178
179
|
"""
|
179
|
-
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.
|
180
185
|
"""
|
181
186
|
return pulumi.get(self, "runtime_type_version")
|
182
187
|
|
@@ -196,15 +201,6 @@ class StepMonitorArgs:
|
|
196
201
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]]):
|
197
202
|
pulumi.set(self, "tags", value)
|
198
203
|
|
199
|
-
@property
|
200
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
201
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
202
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
203
|
-
|
204
|
-
@use_unsupported_legacy_runtime.setter
|
205
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
206
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
207
|
-
|
208
204
|
|
209
205
|
@pulumi.input_type
|
210
206
|
class _StepMonitorState:
|
@@ -221,8 +217,7 @@ class _StepMonitorState:
|
|
221
217
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
222
218
|
status: Optional[pulumi.Input[str]] = None,
|
223
219
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]]] = None,
|
224
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None
|
225
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
220
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None):
|
226
221
|
"""
|
227
222
|
Input properties used for looking up and filtering StepMonitor resources.
|
228
223
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
@@ -234,7 +229,11 @@ class _StepMonitorState:
|
|
234
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`.
|
235
230
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
236
231
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
237
|
-
: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.
|
238
237
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
239
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.
|
240
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.
|
@@ -265,8 +264,6 @@ class _StepMonitorState:
|
|
265
264
|
pulumi.set(__self__, "steps", steps)
|
266
265
|
if tags is not None:
|
267
266
|
pulumi.set(__self__, "tags", tags)
|
268
|
-
if use_unsupported_legacy_runtime is not None:
|
269
|
-
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
270
267
|
|
271
268
|
@property
|
272
269
|
@pulumi.getter(name="accountId")
|
@@ -380,7 +377,11 @@ class _StepMonitorState:
|
|
380
377
|
@pulumi.getter(name="runtimeTypeVersion")
|
381
378
|
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
382
379
|
"""
|
383
|
-
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.
|
384
385
|
"""
|
385
386
|
return pulumi.get(self, "runtime_type_version")
|
386
387
|
|
@@ -424,15 +425,6 @@ class _StepMonitorState:
|
|
424
425
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]]):
|
425
426
|
pulumi.set(self, "tags", value)
|
426
427
|
|
427
|
-
@property
|
428
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
429
|
-
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
430
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
431
|
-
|
432
|
-
@use_unsupported_legacy_runtime.setter
|
433
|
-
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
434
|
-
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
435
|
-
|
436
428
|
|
437
429
|
class StepMonitor(pulumi.CustomResource):
|
438
430
|
@overload
|
@@ -450,9 +442,12 @@ class StepMonitor(pulumi.CustomResource):
|
|
450
442
|
status: Optional[pulumi.Input[str]] = None,
|
451
443
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
452
444
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
453
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
454
445
|
__props__=None):
|
455
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
|
+
|
456
451
|
## Example Usage
|
457
452
|
|
458
453
|
```python
|
@@ -536,7 +531,11 @@ class StepMonitor(pulumi.CustomResource):
|
|
536
531
|
:param pulumi.Input[str] name: The name for the monitor.
|
537
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`.
|
538
533
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
539
|
-
: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.
|
540
539
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
541
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.
|
542
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.
|
@@ -548,6 +547,10 @@ class StepMonitor(pulumi.CustomResource):
|
|
548
547
|
args: StepMonitorArgs,
|
549
548
|
opts: Optional[pulumi.ResourceOptions] = None):
|
550
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
|
+
|
551
554
|
## Example Usage
|
552
555
|
|
553
556
|
```python
|
@@ -648,7 +651,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
648
651
|
status: Optional[pulumi.Input[str]] = None,
|
649
652
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
650
653
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
651
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
652
654
|
__props__=None):
|
653
655
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
654
656
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -675,7 +677,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
675
677
|
raise TypeError("Missing required property 'steps'")
|
676
678
|
__props__.__dict__["steps"] = steps
|
677
679
|
__props__.__dict__["tags"] = tags
|
678
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
679
680
|
__props__.__dict__["guid"] = None
|
680
681
|
__props__.__dict__["period_in_minutes"] = None
|
681
682
|
super(StepMonitor, __self__).__init__(
|
@@ -700,8 +701,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
700
701
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
701
702
|
status: Optional[pulumi.Input[str]] = None,
|
702
703
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
703
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None
|
704
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None) -> 'StepMonitor':
|
704
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None) -> 'StepMonitor':
|
705
705
|
"""
|
706
706
|
Get an existing StepMonitor resource's state with the given name, id, and optional extra
|
707
707
|
properties used to qualify the lookup.
|
@@ -718,7 +718,11 @@ class StepMonitor(pulumi.CustomResource):
|
|
718
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`.
|
719
719
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
720
720
|
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
|
721
|
-
: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.
|
722
726
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
723
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.
|
724
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.
|
@@ -740,7 +744,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
740
744
|
__props__.__dict__["status"] = status
|
741
745
|
__props__.__dict__["steps"] = steps
|
742
746
|
__props__.__dict__["tags"] = tags
|
743
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
744
747
|
return StepMonitor(resource_name, opts=opts, __props__=__props__)
|
745
748
|
|
746
749
|
@property
|
@@ -819,7 +822,11 @@ class StepMonitor(pulumi.CustomResource):
|
|
819
822
|
@pulumi.getter(name="runtimeTypeVersion")
|
820
823
|
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
821
824
|
"""
|
822
|
-
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.
|
823
830
|
"""
|
824
831
|
return pulumi.get(self, "runtime_type_version")
|
825
832
|
|
@@ -847,8 +854,3 @@ class StepMonitor(pulumi.CustomResource):
|
|
847
854
|
"""
|
848
855
|
return pulumi.get(self, "tags")
|
849
856
|
|
850
|
-
@property
|
851
|
-
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
852
|
-
def use_unsupported_legacy_runtime(self) -> pulumi.Output[Optional[bool]]:
|
853
|
-
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
854
|
-
|
@@ -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.30.
|
87
|
-
pulumi_newrelic-5.30.
|
88
|
-
pulumi_newrelic-5.30.
|
89
|
-
pulumi_newrelic-5.30.
|
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.30.0.dist-info → pulumi_newrelic-5.30.0a1723819975.dist-info}/top_level.txt
RENAMED
File without changes
|