pulumi-newrelic 5.30.0__py3-none-any.whl → 5.30.0a1724219534__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 +3 -37
- pulumi_newrelic/synthetics/cert_check_monitor.py +38 -44
- pulumi_newrelic/synthetics/monitor.py +0 -34
- pulumi_newrelic/synthetics/script_monitor.py +3 -37
- pulumi_newrelic/synthetics/step_monitor.py +3 -37
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1724219534.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1724219534.dist-info}/RECORD +10 -10
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1724219534.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1724219534.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`.
|
@@ -57,8 +56,6 @@ class BrokenLinksMonitorArgs:
|
|
57
56
|
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
58
57
|
if tags is not None:
|
59
58
|
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
59
|
|
63
60
|
@property
|
64
61
|
@pulumi.getter
|
@@ -180,15 +177,6 @@ class BrokenLinksMonitorArgs:
|
|
180
177
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]]):
|
181
178
|
pulumi.set(self, "tags", value)
|
182
179
|
|
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
180
|
|
193
181
|
@pulumi.input_type
|
194
182
|
class _BrokenLinksMonitorState:
|
@@ -204,8 +192,7 @@ class _BrokenLinksMonitorState:
|
|
204
192
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
205
193
|
status: Optional[pulumi.Input[str]] = None,
|
206
194
|
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):
|
195
|
+
uri: Optional[pulumi.Input[str]] = None):
|
209
196
|
"""
|
210
197
|
Input properties used for looking up and filtering BrokenLinksMonitor resources.
|
211
198
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
@@ -245,8 +232,6 @@ class _BrokenLinksMonitorState:
|
|
245
232
|
pulumi.set(__self__, "tags", tags)
|
246
233
|
if uri is not None:
|
247
234
|
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
235
|
|
251
236
|
@property
|
252
237
|
@pulumi.getter(name="accountId")
|
@@ -392,15 +377,6 @@ class _BrokenLinksMonitorState:
|
|
392
377
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
393
378
|
pulumi.set(self, "uri", value)
|
394
379
|
|
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
380
|
|
405
381
|
class BrokenLinksMonitor(pulumi.CustomResource):
|
406
382
|
@overload
|
@@ -417,7 +393,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
417
393
|
status: Optional[pulumi.Input[str]] = None,
|
418
394
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
419
395
|
uri: Optional[pulumi.Input[str]] = None,
|
420
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
421
396
|
__props__=None):
|
422
397
|
"""
|
423
398
|
## Example Usage
|
@@ -583,7 +558,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
583
558
|
status: Optional[pulumi.Input[str]] = None,
|
584
559
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
585
560
|
uri: Optional[pulumi.Input[str]] = None,
|
586
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
587
561
|
__props__=None):
|
588
562
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
589
563
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -609,7 +583,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
609
583
|
if uri is None and not opts.urn:
|
610
584
|
raise TypeError("Missing required property 'uri'")
|
611
585
|
__props__.__dict__["uri"] = uri
|
612
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
613
586
|
__props__.__dict__["guid"] = None
|
614
587
|
__props__.__dict__["period_in_minutes"] = None
|
615
588
|
super(BrokenLinksMonitor, __self__).__init__(
|
@@ -633,8 +606,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
633
606
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
634
607
|
status: Optional[pulumi.Input[str]] = None,
|
635
608
|
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':
|
609
|
+
uri: Optional[pulumi.Input[str]] = None) -> 'BrokenLinksMonitor':
|
638
610
|
"""
|
639
611
|
Get an existing BrokenLinksMonitor resource's state with the given name, id, and optional extra
|
640
612
|
properties used to qualify the lookup.
|
@@ -671,7 +643,6 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
671
643
|
__props__.__dict__["status"] = status
|
672
644
|
__props__.__dict__["tags"] = tags
|
673
645
|
__props__.__dict__["uri"] = uri
|
674
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
675
646
|
return BrokenLinksMonitor(resource_name, opts=opts, __props__=__props__)
|
676
647
|
|
677
648
|
@property
|
@@ -770,8 +741,3 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
770
741
|
"""
|
771
742
|
return pulumi.get(self, "uri")
|
772
743
|
|
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,7 +425,6 @@ 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
|
"""
|
439
430
|
## Example Usage
|
@@ -507,7 +498,11 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
507
498
|
:param pulumi.Input[str] name: The name for the monitor.
|
508
499
|
: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
500
|
: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
|
501
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
502
|
+
|
503
|
+
> **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.
|
504
|
+
|
505
|
+
> **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
506
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
512
507
|
: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
508
|
"""
|
@@ -605,7 +600,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
605
600
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
606
601
|
status: Optional[pulumi.Input[str]] = None,
|
607
602
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None,
|
608
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
609
603
|
__props__=None):
|
610
604
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
611
605
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -634,7 +628,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
634
628
|
raise TypeError("Missing required property 'status'")
|
635
629
|
__props__.__dict__["status"] = status
|
636
630
|
__props__.__dict__["tags"] = tags
|
637
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
638
631
|
__props__.__dict__["period_in_minutes"] = None
|
639
632
|
super(CertCheckMonitor, __self__).__init__(
|
640
633
|
'newrelic:synthetics/certCheckMonitor:CertCheckMonitor',
|
@@ -657,8 +650,7 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
657
650
|
runtime_type: Optional[pulumi.Input[str]] = None,
|
658
651
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
659
652
|
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':
|
653
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CertCheckMonitorTagArgs', 'CertCheckMonitorTagArgsDict']]]]] = None) -> 'CertCheckMonitor':
|
662
654
|
"""
|
663
655
|
Get an existing CertCheckMonitor resource's state with the given name, id, and optional extra
|
664
656
|
properties used to qualify the lookup.
|
@@ -675,7 +667,11 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
675
667
|
: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
668
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
677
669
|
: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
|
670
|
+
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
671
|
+
|
672
|
+
> **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.
|
673
|
+
|
674
|
+
> **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
675
|
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
680
676
|
: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
677
|
"""
|
@@ -695,7 +691,6 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
695
691
|
__props__.__dict__["runtime_type_version"] = runtime_type_version
|
696
692
|
__props__.__dict__["status"] = status
|
697
693
|
__props__.__dict__["tags"] = tags
|
698
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
699
694
|
return CertCheckMonitor(resource_name, opts=opts, __props__=__props__)
|
700
695
|
|
701
696
|
@property
|
@@ -774,7 +769,11 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
774
769
|
@pulumi.getter(name="runtimeTypeVersion")
|
775
770
|
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
776
771
|
"""
|
777
|
-
The specific
|
772
|
+
The specific version of the runtime type selected.
|
773
|
+
|
774
|
+
> **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.
|
775
|
+
|
776
|
+
> **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
777
|
"""
|
779
778
|
return pulumi.get(self, "runtime_type_version")
|
780
779
|
|
@@ -794,8 +793,3 @@ class CertCheckMonitor(pulumi.CustomResource):
|
|
794
793
|
"""
|
795
794
|
return pulumi.get(self, "tags")
|
796
795
|
|
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,7 +722,6 @@ 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):
|
@@ -1096,7 +1071,6 @@ class Monitor(pulumi.CustomResource):
|
|
1096
1071
|
treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
|
1097
1072
|
type: Optional[pulumi.Input[str]] = None,
|
1098
1073
|
uri: Optional[pulumi.Input[str]] = None,
|
1099
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
1100
1074
|
validation_string: Optional[pulumi.Input[str]] = None,
|
1101
1075
|
verify_ssl: Optional[pulumi.Input[bool]] = None,
|
1102
1076
|
__props__=None):
|
@@ -1130,7 +1104,6 @@ class Monitor(pulumi.CustomResource):
|
|
1130
1104
|
raise TypeError("Missing required property 'type'")
|
1131
1105
|
__props__.__dict__["type"] = type
|
1132
1106
|
__props__.__dict__["uri"] = uri
|
1133
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
1134
1107
|
__props__.__dict__["validation_string"] = validation_string
|
1135
1108
|
__props__.__dict__["verify_ssl"] = verify_ssl
|
1136
1109
|
__props__.__dict__["period_in_minutes"] = None
|
@@ -1163,7 +1136,6 @@ class Monitor(pulumi.CustomResource):
|
|
1163
1136
|
treat_redirect_as_failure: Optional[pulumi.Input[bool]] = None,
|
1164
1137
|
type: Optional[pulumi.Input[str]] = None,
|
1165
1138
|
uri: Optional[pulumi.Input[str]] = None,
|
1166
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
1167
1139
|
validation_string: Optional[pulumi.Input[str]] = None,
|
1168
1140
|
verify_ssl: Optional[pulumi.Input[bool]] = None) -> 'Monitor':
|
1169
1141
|
"""
|
@@ -1222,7 +1194,6 @@ class Monitor(pulumi.CustomResource):
|
|
1222
1194
|
__props__.__dict__["treat_redirect_as_failure"] = treat_redirect_as_failure
|
1223
1195
|
__props__.__dict__["type"] = type
|
1224
1196
|
__props__.__dict__["uri"] = uri
|
1225
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
1226
1197
|
__props__.__dict__["validation_string"] = validation_string
|
1227
1198
|
__props__.__dict__["verify_ssl"] = verify_ssl
|
1228
1199
|
return Monitor(resource_name, opts=opts, __props__=__props__)
|
@@ -1383,11 +1354,6 @@ class Monitor(pulumi.CustomResource):
|
|
1383
1354
|
"""
|
1384
1355
|
return pulumi.get(self, "uri")
|
1385
1356
|
|
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
1357
|
@property
|
1392
1358
|
@pulumi.getter(name="validationString")
|
1393
1359
|
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,7 +566,6 @@ 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
|
"""
|
596
571
|
## Example Usage
|
@@ -912,7 +887,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
912
887
|
status: Optional[pulumi.Input[str]] = None,
|
913
888
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScriptMonitorTagArgs', 'ScriptMonitorTagArgsDict']]]]] = None,
|
914
889
|
type: Optional[pulumi.Input[str]] = None,
|
915
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
916
890
|
__props__=None):
|
917
891
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
918
892
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -943,7 +917,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
943
917
|
if type is None and not opts.urn:
|
944
918
|
raise TypeError("Missing required property 'type'")
|
945
919
|
__props__.__dict__["type"] = type
|
946
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
947
920
|
__props__.__dict__["guid"] = None
|
948
921
|
__props__.__dict__["period_in_minutes"] = None
|
949
922
|
super(ScriptMonitor, __self__).__init__(
|
@@ -972,8 +945,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
972
945
|
script_language: Optional[pulumi.Input[str]] = None,
|
973
946
|
status: Optional[pulumi.Input[str]] = None,
|
974
947
|
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':
|
948
|
+
type: Optional[pulumi.Input[str]] = None) -> 'ScriptMonitor':
|
977
949
|
"""
|
978
950
|
Get an existing ScriptMonitor resource's state with the given name, id, and optional extra
|
979
951
|
properties used to qualify the lookup.
|
@@ -1022,7 +994,6 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
1022
994
|
__props__.__dict__["status"] = status
|
1023
995
|
__props__.__dict__["tags"] = tags
|
1024
996
|
__props__.__dict__["type"] = type
|
1025
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
1026
997
|
return ScriptMonitor(resource_name, opts=opts, __props__=__props__)
|
1027
998
|
|
1028
999
|
@property
|
@@ -1163,8 +1134,3 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
1163
1134
|
"""
|
1164
1135
|
return pulumi.get(self, "type")
|
1165
1136
|
|
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`.
|
@@ -61,8 +60,6 @@ class StepMonitorArgs:
|
|
61
60
|
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
62
61
|
if tags is not None:
|
63
62
|
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
63
|
|
67
64
|
@property
|
68
65
|
@pulumi.getter
|
@@ -196,15 +193,6 @@ class StepMonitorArgs:
|
|
196
193
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]]):
|
197
194
|
pulumi.set(self, "tags", value)
|
198
195
|
|
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
196
|
|
209
197
|
@pulumi.input_type
|
210
198
|
class _StepMonitorState:
|
@@ -221,8 +209,7 @@ class _StepMonitorState:
|
|
221
209
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
222
210
|
status: Optional[pulumi.Input[str]] = None,
|
223
211
|
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):
|
212
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None):
|
226
213
|
"""
|
227
214
|
Input properties used for looking up and filtering StepMonitor resources.
|
228
215
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
@@ -265,8 +252,6 @@ class _StepMonitorState:
|
|
265
252
|
pulumi.set(__self__, "steps", steps)
|
266
253
|
if tags is not None:
|
267
254
|
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
255
|
|
271
256
|
@property
|
272
257
|
@pulumi.getter(name="accountId")
|
@@ -424,15 +409,6 @@ class _StepMonitorState:
|
|
424
409
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]]):
|
425
410
|
pulumi.set(self, "tags", value)
|
426
411
|
|
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
412
|
|
437
413
|
class StepMonitor(pulumi.CustomResource):
|
438
414
|
@overload
|
@@ -450,7 +426,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
450
426
|
status: Optional[pulumi.Input[str]] = None,
|
451
427
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
452
428
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
453
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
454
429
|
__props__=None):
|
455
430
|
"""
|
456
431
|
## Example Usage
|
@@ -648,7 +623,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
648
623
|
status: Optional[pulumi.Input[str]] = None,
|
649
624
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
650
625
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
651
|
-
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
652
626
|
__props__=None):
|
653
627
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
654
628
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -675,7 +649,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
675
649
|
raise TypeError("Missing required property 'steps'")
|
676
650
|
__props__.__dict__["steps"] = steps
|
677
651
|
__props__.__dict__["tags"] = tags
|
678
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
679
652
|
__props__.__dict__["guid"] = None
|
680
653
|
__props__.__dict__["period_in_minutes"] = None
|
681
654
|
super(StepMonitor, __self__).__init__(
|
@@ -700,8 +673,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
700
673
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
701
674
|
status: Optional[pulumi.Input[str]] = None,
|
702
675
|
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':
|
676
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None) -> 'StepMonitor':
|
705
677
|
"""
|
706
678
|
Get an existing StepMonitor resource's state with the given name, id, and optional extra
|
707
679
|
properties used to qualify the lookup.
|
@@ -740,7 +712,6 @@ class StepMonitor(pulumi.CustomResource):
|
|
740
712
|
__props__.__dict__["status"] = status
|
741
713
|
__props__.__dict__["steps"] = steps
|
742
714
|
__props__.__dict__["tags"] = tags
|
743
|
-
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
744
715
|
return StepMonitor(resource_name, opts=opts, __props__=__props__)
|
745
716
|
|
746
717
|
@property
|
@@ -847,8 +818,3 @@ class StepMonitor(pulumi.CustomResource):
|
|
847
818
|
"""
|
848
819
|
return pulumi.get(self, "tags")
|
849
820
|
|
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=RYIbO1RHM8NU7sS6oRRO_sW7f9n541JpuhLOFprV_6c,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=khHjZDQcsWJRO9dujzb1ele3EHMtYgUeHcUgUroE7U4,35054
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=Guzwjugp-03GRBC1tv0rs0BQdKwE01-JcdTr1BeyNc0,45958
|
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=9HPsEDGaIIeKSfsyxgQ_8gCP1f_SZKJ34Qapohr992E,64270
|
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=5uhIX-JD26CrSqTTXF0cPnOZkFkCH48VjUruewtPWH4,55400
|
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=-TL4j3hju0vI60NzXGl4DcwlmdZEjJZ2v7qdZBUvukQ,40326
|
86
|
+
pulumi_newrelic-5.30.0a1724219534.dist-info/METADATA,sha256=3Ta11fwTY2DeoLLltT20qxGPCQcu_L1iK8gLfgijhDU,3900
|
87
|
+
pulumi_newrelic-5.30.0a1724219534.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
88
|
+
pulumi_newrelic-5.30.0a1724219534.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.30.0a1724219534.dist-info/RECORD,,
|
File without changes
|
{pulumi_newrelic-5.30.0.dist-info → pulumi_newrelic-5.30.0a1724219534.dist-info}/top_level.txt
RENAMED
File without changes
|