pulumi-newrelic 5.21.0a1710157101__py3-none-any.whl → 5.39.0a1736849617__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_newrelic/__init__.py +9 -0
- pulumi_newrelic/_inputs.py +7153 -461
- pulumi_newrelic/_utilities.py +41 -5
- pulumi_newrelic/account_management.py +11 -6
- pulumi_newrelic/alert_channel.py +116 -127
- pulumi_newrelic/alert_condition.py +116 -129
- pulumi_newrelic/alert_muting_rule.py +128 -76
- pulumi_newrelic/alert_policy.py +78 -75
- pulumi_newrelic/alert_policy_channel.py +77 -68
- pulumi_newrelic/api_access_key.py +45 -28
- pulumi_newrelic/browser_application.py +77 -78
- pulumi_newrelic/cloud/_inputs.py +2527 -1082
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +133 -128
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +23 -20
- pulumi_newrelic/cloud/aws_integrations.py +298 -1326
- pulumi_newrelic/cloud/aws_link_account.py +23 -20
- pulumi_newrelic/cloud/azure_integrations.py +521 -483
- pulumi_newrelic/cloud/azure_link_account.py +34 -31
- pulumi_newrelic/cloud/gcp_integrations.py +341 -322
- pulumi_newrelic/cloud/gcp_link_account.py +23 -20
- pulumi_newrelic/cloud/outputs.py +327 -1072
- pulumi_newrelic/config/__init__.pyi +6 -1
- pulumi_newrelic/config/vars.py +7 -2
- pulumi_newrelic/data_partition_rule.py +19 -18
- pulumi_newrelic/entity_tags.py +32 -31
- pulumi_newrelic/events_to_metrics_rule.py +23 -20
- pulumi_newrelic/get_account.py +24 -16
- pulumi_newrelic/get_alert_channel.py +26 -13
- pulumi_newrelic/get_alert_policy.py +35 -12
- pulumi_newrelic/get_application.py +39 -31
- pulumi_newrelic/get_authentication_domain.py +17 -13
- pulumi_newrelic/get_cloud_account.py +26 -18
- pulumi_newrelic/get_entity.py +90 -147
- pulumi_newrelic/get_group.py +58 -13
- pulumi_newrelic/get_key_transaction.py +109 -34
- pulumi_newrelic/get_notification_destination.py +64 -14
- pulumi_newrelic/get_obfuscation_expression.py +36 -28
- pulumi_newrelic/get_service_level_alert_helper.py +135 -117
- pulumi_newrelic/get_test_grok_pattern.py +29 -18
- pulumi_newrelic/get_user.py +17 -9
- pulumi_newrelic/group.py +5 -146
- pulumi_newrelic/infra_alert_condition.py +160 -167
- pulumi_newrelic/insights/_inputs.py +43 -0
- pulumi_newrelic/insights/event.py +48 -47
- pulumi_newrelic/insights/outputs.py +5 -0
- pulumi_newrelic/key_transaction.py +464 -0
- pulumi_newrelic/log_parsing_rule.py +25 -24
- pulumi_newrelic/monitor_downtime.py +211 -225
- pulumi_newrelic/notification_channel.py +381 -366
- pulumi_newrelic/notification_destination.py +192 -54
- pulumi_newrelic/nrql_alert_condition.py +345 -262
- pulumi_newrelic/nrql_drop_rule.py +31 -30
- pulumi_newrelic/obfuscation_expression.py +23 -20
- pulumi_newrelic/obfuscation_rule.py +38 -33
- pulumi_newrelic/one_dashboard.py +29 -24
- pulumi_newrelic/one_dashboard_json.py +19 -14
- pulumi_newrelic/one_dashboard_raw.py +110 -105
- pulumi_newrelic/outputs.py +2446 -245
- pulumi_newrelic/plugins/_inputs.py +145 -10
- pulumi_newrelic/plugins/application_settings.py +25 -36
- pulumi_newrelic/plugins/outputs.py +15 -10
- pulumi_newrelic/plugins/workload.py +215 -92
- pulumi_newrelic/provider.py +27 -33
- pulumi_newrelic/pulumi-plugin.json +2 -1
- pulumi_newrelic/service_level.py +185 -186
- pulumi_newrelic/synthetics/_inputs.py +159 -2
- pulumi_newrelic/synthetics/alert_condition.py +87 -98
- pulumi_newrelic/synthetics/broken_links_monitor.py +216 -99
- pulumi_newrelic/synthetics/cert_check_monitor.py +219 -100
- pulumi_newrelic/synthetics/get_private_location.py +34 -30
- pulumi_newrelic/synthetics/get_secure_credential.py +24 -16
- pulumi_newrelic/synthetics/monitor.py +348 -193
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +105 -100
- pulumi_newrelic/synthetics/outputs.py +7 -2
- pulumi_newrelic/synthetics/private_location.py +25 -20
- pulumi_newrelic/synthetics/script_monitor.py +317 -182
- pulumi_newrelic/synthetics/secure_credential.py +23 -22
- pulumi_newrelic/synthetics/step_monitor.py +405 -100
- pulumi_newrelic/user.py +13 -10
- pulumi_newrelic/workflow.py +209 -196
- {pulumi_newrelic-5.21.0a1710157101.dist-info → pulumi_newrelic-5.39.0a1736849617.dist-info}/METADATA +7 -6
- pulumi_newrelic-5.39.0a1736849617.dist-info/RECORD +90 -0
- {pulumi_newrelic-5.21.0a1710157101.dist-info → pulumi_newrelic-5.39.0a1736849617.dist-info}/WHEEL +1 -1
- pulumi_newrelic-5.21.0a1710157101.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.21.0a1710157101.dist-info → pulumi_newrelic-5.39.0a1736849617.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -19,22 +24,25 @@ class BrokenLinksMonitorArgs:
|
|
19
24
|
period: pulumi.Input[str],
|
20
25
|
status: pulumi.Input[str],
|
21
26
|
uri: pulumi.Input[str],
|
22
|
-
account_id: Optional[pulumi.Input[
|
27
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
23
28
|
locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
24
29
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
25
30
|
name: Optional[pulumi.Input[str]] = None,
|
26
|
-
|
31
|
+
runtime_type: Optional[pulumi.Input[str]] = None,
|
32
|
+
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
33
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]] = None,
|
34
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
27
35
|
"""
|
28
36
|
The set of arguments for constructing a BrokenLinksMonitor resource.
|
29
|
-
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE
|
30
|
-
:param pulumi.Input[str] status: The
|
31
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
32
|
-
refrain from using this value and shift to alternatives.
|
37
|
+
: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`.
|
38
|
+
:param pulumi.Input[str] status: The run state of the monitor. (`ENABLED` or `DISABLED`).
|
33
39
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
34
|
-
:param pulumi.Input[
|
40
|
+
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
35
41
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
|
36
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from.
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
|
37
43
|
:param pulumi.Input[str] name: The name for the monitor.
|
44
|
+
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs (`NODE_API`).
|
45
|
+
:param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
|
38
46
|
:param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
39
47
|
"""
|
40
48
|
pulumi.set(__self__, "period", period)
|
@@ -48,14 +56,20 @@ class BrokenLinksMonitorArgs:
|
|
48
56
|
pulumi.set(__self__, "locations_publics", locations_publics)
|
49
57
|
if name is not None:
|
50
58
|
pulumi.set(__self__, "name", name)
|
59
|
+
if runtime_type is not None:
|
60
|
+
pulumi.set(__self__, "runtime_type", runtime_type)
|
61
|
+
if runtime_type_version is not None:
|
62
|
+
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
51
63
|
if tags is not None:
|
52
64
|
pulumi.set(__self__, "tags", tags)
|
65
|
+
if use_unsupported_legacy_runtime is not None:
|
66
|
+
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
53
67
|
|
54
68
|
@property
|
55
69
|
@pulumi.getter
|
56
70
|
def period(self) -> pulumi.Input[str]:
|
57
71
|
"""
|
58
|
-
The interval at which this monitor should run. Valid values are EVERY_MINUTE
|
72
|
+
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`.
|
59
73
|
"""
|
60
74
|
return pulumi.get(self, "period")
|
61
75
|
|
@@ -67,9 +81,7 @@ class BrokenLinksMonitorArgs:
|
|
67
81
|
@pulumi.getter
|
68
82
|
def status(self) -> pulumi.Input[str]:
|
69
83
|
"""
|
70
|
-
The
|
71
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
72
|
-
refrain from using this value and shift to alternatives.
|
84
|
+
The run state of the monitor. (`ENABLED` or `DISABLED`).
|
73
85
|
"""
|
74
86
|
return pulumi.get(self, "status")
|
75
87
|
|
@@ -91,14 +103,14 @@ class BrokenLinksMonitorArgs:
|
|
91
103
|
|
92
104
|
@property
|
93
105
|
@pulumi.getter(name="accountId")
|
94
|
-
def account_id(self) -> Optional[pulumi.Input[
|
106
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
95
107
|
"""
|
96
108
|
The account in which the Synthetics monitor will be created.
|
97
109
|
"""
|
98
110
|
return pulumi.get(self, "account_id")
|
99
111
|
|
100
112
|
@account_id.setter
|
101
|
-
def account_id(self, value: Optional[pulumi.Input[
|
113
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
102
114
|
pulumi.set(self, "account_id", value)
|
103
115
|
|
104
116
|
@property
|
@@ -117,7 +129,7 @@ class BrokenLinksMonitorArgs:
|
|
117
129
|
@pulumi.getter(name="locationsPublics")
|
118
130
|
def locations_publics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
119
131
|
"""
|
120
|
-
The location the monitor will run from.
|
132
|
+
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.
|
121
133
|
"""
|
122
134
|
return pulumi.get(self, "locations_publics")
|
123
135
|
|
@@ -137,6 +149,30 @@ class BrokenLinksMonitorArgs:
|
|
137
149
|
def name(self, value: Optional[pulumi.Input[str]]):
|
138
150
|
pulumi.set(self, "name", value)
|
139
151
|
|
152
|
+
@property
|
153
|
+
@pulumi.getter(name="runtimeType")
|
154
|
+
def runtime_type(self) -> Optional[pulumi.Input[str]]:
|
155
|
+
"""
|
156
|
+
The runtime that the monitor will use to run jobs (`NODE_API`).
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "runtime_type")
|
159
|
+
|
160
|
+
@runtime_type.setter
|
161
|
+
def runtime_type(self, value: Optional[pulumi.Input[str]]):
|
162
|
+
pulumi.set(self, "runtime_type", value)
|
163
|
+
|
164
|
+
@property
|
165
|
+
@pulumi.getter(name="runtimeTypeVersion")
|
166
|
+
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
167
|
+
"""
|
168
|
+
The specific semver version of the runtime type.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "runtime_type_version")
|
171
|
+
|
172
|
+
@runtime_type_version.setter
|
173
|
+
def runtime_type_version(self, value: Optional[pulumi.Input[str]]):
|
174
|
+
pulumi.set(self, "runtime_type_version", value)
|
175
|
+
|
140
176
|
@property
|
141
177
|
@pulumi.getter
|
142
178
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]]:
|
@@ -149,32 +185,44 @@ class BrokenLinksMonitorArgs:
|
|
149
185
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]]):
|
150
186
|
pulumi.set(self, "tags", value)
|
151
187
|
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
190
|
+
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
191
|
+
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
192
|
+
|
193
|
+
@use_unsupported_legacy_runtime.setter
|
194
|
+
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
195
|
+
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
196
|
+
|
152
197
|
|
153
198
|
@pulumi.input_type
|
154
199
|
class _BrokenLinksMonitorState:
|
155
200
|
def __init__(__self__, *,
|
156
|
-
account_id: Optional[pulumi.Input[
|
201
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
157
202
|
guid: Optional[pulumi.Input[str]] = None,
|
158
203
|
locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
159
204
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
160
205
|
name: Optional[pulumi.Input[str]] = None,
|
161
206
|
period: Optional[pulumi.Input[str]] = None,
|
162
207
|
period_in_minutes: Optional[pulumi.Input[int]] = None,
|
208
|
+
runtime_type: Optional[pulumi.Input[str]] = None,
|
209
|
+
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
163
210
|
status: Optional[pulumi.Input[str]] = None,
|
164
211
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]]] = None,
|
165
|
-
uri: Optional[pulumi.Input[str]] = None
|
212
|
+
uri: Optional[pulumi.Input[str]] = None,
|
213
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
166
214
|
"""
|
167
215
|
Input properties used for looking up and filtering BrokenLinksMonitor resources.
|
168
|
-
:param pulumi.Input[
|
216
|
+
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
169
217
|
:param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
|
170
218
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
|
171
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from.
|
219
|
+
: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.
|
172
220
|
:param pulumi.Input[str] name: The name for the monitor.
|
173
|
-
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE
|
221
|
+
: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`.
|
174
222
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
175
|
-
:param pulumi.Input[str]
|
176
|
-
|
177
|
-
|
223
|
+
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs (`NODE_API`).
|
224
|
+
:param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
|
225
|
+
:param pulumi.Input[str] status: The run state of the monitor. (`ENABLED` or `DISABLED`).
|
178
226
|
:param pulumi.Input[Sequence[pulumi.Input['BrokenLinksMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details
|
179
227
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
180
228
|
"""
|
@@ -192,23 +240,29 @@ class _BrokenLinksMonitorState:
|
|
192
240
|
pulumi.set(__self__, "period", period)
|
193
241
|
if period_in_minutes is not None:
|
194
242
|
pulumi.set(__self__, "period_in_minutes", period_in_minutes)
|
243
|
+
if runtime_type is not None:
|
244
|
+
pulumi.set(__self__, "runtime_type", runtime_type)
|
245
|
+
if runtime_type_version is not None:
|
246
|
+
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
195
247
|
if status is not None:
|
196
248
|
pulumi.set(__self__, "status", status)
|
197
249
|
if tags is not None:
|
198
250
|
pulumi.set(__self__, "tags", tags)
|
199
251
|
if uri is not None:
|
200
252
|
pulumi.set(__self__, "uri", uri)
|
253
|
+
if use_unsupported_legacy_runtime is not None:
|
254
|
+
pulumi.set(__self__, "use_unsupported_legacy_runtime", use_unsupported_legacy_runtime)
|
201
255
|
|
202
256
|
@property
|
203
257
|
@pulumi.getter(name="accountId")
|
204
|
-
def account_id(self) -> Optional[pulumi.Input[
|
258
|
+
def account_id(self) -> Optional[pulumi.Input[str]]:
|
205
259
|
"""
|
206
260
|
The account in which the Synthetics monitor will be created.
|
207
261
|
"""
|
208
262
|
return pulumi.get(self, "account_id")
|
209
263
|
|
210
264
|
@account_id.setter
|
211
|
-
def account_id(self, value: Optional[pulumi.Input[
|
265
|
+
def account_id(self, value: Optional[pulumi.Input[str]]):
|
212
266
|
pulumi.set(self, "account_id", value)
|
213
267
|
|
214
268
|
@property
|
@@ -239,7 +293,7 @@ class _BrokenLinksMonitorState:
|
|
239
293
|
@pulumi.getter(name="locationsPublics")
|
240
294
|
def locations_publics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
241
295
|
"""
|
242
|
-
The location the monitor will run from.
|
296
|
+
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.
|
243
297
|
"""
|
244
298
|
return pulumi.get(self, "locations_publics")
|
245
299
|
|
@@ -263,7 +317,7 @@ class _BrokenLinksMonitorState:
|
|
263
317
|
@pulumi.getter
|
264
318
|
def period(self) -> Optional[pulumi.Input[str]]:
|
265
319
|
"""
|
266
|
-
The interval at which this monitor should run. Valid values are EVERY_MINUTE
|
320
|
+
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`.
|
267
321
|
"""
|
268
322
|
return pulumi.get(self, "period")
|
269
323
|
|
@@ -283,13 +337,35 @@ class _BrokenLinksMonitorState:
|
|
283
337
|
def period_in_minutes(self, value: Optional[pulumi.Input[int]]):
|
284
338
|
pulumi.set(self, "period_in_minutes", value)
|
285
339
|
|
340
|
+
@property
|
341
|
+
@pulumi.getter(name="runtimeType")
|
342
|
+
def runtime_type(self) -> Optional[pulumi.Input[str]]:
|
343
|
+
"""
|
344
|
+
The runtime that the monitor will use to run jobs (`NODE_API`).
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "runtime_type")
|
347
|
+
|
348
|
+
@runtime_type.setter
|
349
|
+
def runtime_type(self, value: Optional[pulumi.Input[str]]):
|
350
|
+
pulumi.set(self, "runtime_type", value)
|
351
|
+
|
352
|
+
@property
|
353
|
+
@pulumi.getter(name="runtimeTypeVersion")
|
354
|
+
def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
|
355
|
+
"""
|
356
|
+
The specific semver version of the runtime type.
|
357
|
+
"""
|
358
|
+
return pulumi.get(self, "runtime_type_version")
|
359
|
+
|
360
|
+
@runtime_type_version.setter
|
361
|
+
def runtime_type_version(self, value: Optional[pulumi.Input[str]]):
|
362
|
+
pulumi.set(self, "runtime_type_version", value)
|
363
|
+
|
286
364
|
@property
|
287
365
|
@pulumi.getter
|
288
366
|
def status(self) -> Optional[pulumi.Input[str]]:
|
289
367
|
"""
|
290
|
-
The
|
291
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
292
|
-
refrain from using this value and shift to alternatives.
|
368
|
+
The run state of the monitor. (`ENABLED` or `DISABLED`).
|
293
369
|
"""
|
294
370
|
return pulumi.get(self, "status")
|
295
371
|
|
@@ -321,42 +397,53 @@ class _BrokenLinksMonitorState:
|
|
321
397
|
def uri(self, value: Optional[pulumi.Input[str]]):
|
322
398
|
pulumi.set(self, "uri", value)
|
323
399
|
|
400
|
+
@property
|
401
|
+
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
402
|
+
def use_unsupported_legacy_runtime(self) -> Optional[pulumi.Input[bool]]:
|
403
|
+
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
404
|
+
|
405
|
+
@use_unsupported_legacy_runtime.setter
|
406
|
+
def use_unsupported_legacy_runtime(self, value: Optional[pulumi.Input[bool]]):
|
407
|
+
pulumi.set(self, "use_unsupported_legacy_runtime", value)
|
408
|
+
|
324
409
|
|
325
410
|
class BrokenLinksMonitor(pulumi.CustomResource):
|
326
411
|
@overload
|
327
412
|
def __init__(__self__,
|
328
413
|
resource_name: str,
|
329
414
|
opts: Optional[pulumi.ResourceOptions] = None,
|
330
|
-
account_id: Optional[pulumi.Input[
|
415
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
331
416
|
locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
332
417
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
333
418
|
name: Optional[pulumi.Input[str]] = None,
|
334
419
|
period: Optional[pulumi.Input[str]] = None,
|
420
|
+
runtime_type: Optional[pulumi.Input[str]] = None,
|
421
|
+
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
335
422
|
status: Optional[pulumi.Input[str]] = None,
|
336
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
423
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
337
424
|
uri: Optional[pulumi.Input[str]] = None,
|
425
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
338
426
|
__props__=None):
|
339
427
|
"""
|
340
|
-
Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
|
341
|
-
|
342
428
|
## Example Usage
|
343
429
|
|
344
|
-
<!--Start PulumiCodeChooser -->
|
345
430
|
```python
|
346
431
|
import pulumi
|
347
432
|
import pulumi_newrelic as newrelic
|
348
433
|
|
349
|
-
|
434
|
+
foo = newrelic.synthetics.BrokenLinksMonitor("foo",
|
435
|
+
name="Sample Broken Links Monitor",
|
436
|
+
uri="https://www.one.example.com",
|
350
437
|
locations_publics=["AP_SOUTH_1"],
|
351
438
|
period="EVERY_6_HOURS",
|
352
439
|
status="ENABLED",
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
440
|
+
runtime_type="NODE_API",
|
441
|
+
runtime_type_version="16.10",
|
442
|
+
tags=[{
|
443
|
+
"key": "some_key",
|
444
|
+
"values": ["some_value"],
|
445
|
+
}])
|
358
446
|
```
|
359
|
-
<!--End PulumiCodeChooser -->
|
360
447
|
See additional examples.
|
361
448
|
|
362
449
|
## Additional Examples
|
@@ -367,29 +454,29 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
367
454
|
|
368
455
|
> **NOTE:** It can take up to 10 minutes for a private location to become available.
|
369
456
|
|
370
|
-
<!--Start PulumiCodeChooser -->
|
371
457
|
```python
|
372
458
|
import pulumi
|
373
459
|
import pulumi_newrelic as newrelic
|
374
460
|
|
375
|
-
|
376
|
-
|
461
|
+
foo = newrelic.synthetics.PrivateLocation("foo",
|
462
|
+
name="Sample Private Location",
|
463
|
+
description="Sample Private Location Description",
|
377
464
|
verified_script_execution=False)
|
378
|
-
|
465
|
+
foo_broken_links_monitor = newrelic.synthetics.BrokenLinksMonitor("foo",
|
466
|
+
name="Sample Broken Links Monitor",
|
379
467
|
uri="https://www.one.example.com",
|
380
|
-
locations_privates=[
|
468
|
+
locations_privates=[foo.id],
|
381
469
|
period="EVERY_6_HOURS",
|
382
470
|
status="ENABLED",
|
383
|
-
tags=[
|
384
|
-
key
|
385
|
-
values
|
386
|
-
|
471
|
+
tags=[{
|
472
|
+
"key": "some_key",
|
473
|
+
"values": ["some_value"],
|
474
|
+
}])
|
387
475
|
```
|
388
|
-
<!--End PulumiCodeChooser -->
|
389
476
|
|
390
477
|
## Import
|
391
478
|
|
392
|
-
|
479
|
+
A broken links monitor can be imported using its GUID, using the following command.
|
393
480
|
|
394
481
|
bash
|
395
482
|
|
@@ -399,15 +486,15 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
399
486
|
|
400
487
|
:param str resource_name: The name of the resource.
|
401
488
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
402
|
-
:param pulumi.Input[
|
489
|
+
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
403
490
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
|
404
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from.
|
491
|
+
: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.
|
405
492
|
:param pulumi.Input[str] name: The name for the monitor.
|
406
|
-
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE
|
407
|
-
:param pulumi.Input[str]
|
408
|
-
|
409
|
-
|
410
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
493
|
+
: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`.
|
494
|
+
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs (`NODE_API`).
|
495
|
+
:param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
|
496
|
+
:param pulumi.Input[str] status: The run state of the monitor. (`ENABLED` or `DISABLED`).
|
497
|
+
: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
|
411
498
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
412
499
|
"""
|
413
500
|
...
|
@@ -417,26 +504,25 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
417
504
|
args: BrokenLinksMonitorArgs,
|
418
505
|
opts: Optional[pulumi.ResourceOptions] = None):
|
419
506
|
"""
|
420
|
-
Use this resource to create, update, and delete a Synthetics Broken Links monitor in New Relic.
|
421
|
-
|
422
507
|
## Example Usage
|
423
508
|
|
424
|
-
<!--Start PulumiCodeChooser -->
|
425
509
|
```python
|
426
510
|
import pulumi
|
427
511
|
import pulumi_newrelic as newrelic
|
428
512
|
|
429
|
-
|
513
|
+
foo = newrelic.synthetics.BrokenLinksMonitor("foo",
|
514
|
+
name="Sample Broken Links Monitor",
|
515
|
+
uri="https://www.one.example.com",
|
430
516
|
locations_publics=["AP_SOUTH_1"],
|
431
517
|
period="EVERY_6_HOURS",
|
432
518
|
status="ENABLED",
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
519
|
+
runtime_type="NODE_API",
|
520
|
+
runtime_type_version="16.10",
|
521
|
+
tags=[{
|
522
|
+
"key": "some_key",
|
523
|
+
"values": ["some_value"],
|
524
|
+
}])
|
438
525
|
```
|
439
|
-
<!--End PulumiCodeChooser -->
|
440
526
|
See additional examples.
|
441
527
|
|
442
528
|
## Additional Examples
|
@@ -447,29 +533,29 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
447
533
|
|
448
534
|
> **NOTE:** It can take up to 10 minutes for a private location to become available.
|
449
535
|
|
450
|
-
<!--Start PulumiCodeChooser -->
|
451
536
|
```python
|
452
537
|
import pulumi
|
453
538
|
import pulumi_newrelic as newrelic
|
454
539
|
|
455
|
-
|
456
|
-
|
540
|
+
foo = newrelic.synthetics.PrivateLocation("foo",
|
541
|
+
name="Sample Private Location",
|
542
|
+
description="Sample Private Location Description",
|
457
543
|
verified_script_execution=False)
|
458
|
-
|
544
|
+
foo_broken_links_monitor = newrelic.synthetics.BrokenLinksMonitor("foo",
|
545
|
+
name="Sample Broken Links Monitor",
|
459
546
|
uri="https://www.one.example.com",
|
460
|
-
locations_privates=[
|
547
|
+
locations_privates=[foo.id],
|
461
548
|
period="EVERY_6_HOURS",
|
462
549
|
status="ENABLED",
|
463
|
-
tags=[
|
464
|
-
key
|
465
|
-
values
|
466
|
-
|
550
|
+
tags=[{
|
551
|
+
"key": "some_key",
|
552
|
+
"values": ["some_value"],
|
553
|
+
}])
|
467
554
|
```
|
468
|
-
<!--End PulumiCodeChooser -->
|
469
555
|
|
470
556
|
## Import
|
471
557
|
|
472
|
-
|
558
|
+
A broken links monitor can be imported using its GUID, using the following command.
|
473
559
|
|
474
560
|
bash
|
475
561
|
|
@@ -492,14 +578,17 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
492
578
|
def _internal_init(__self__,
|
493
579
|
resource_name: str,
|
494
580
|
opts: Optional[pulumi.ResourceOptions] = None,
|
495
|
-
account_id: Optional[pulumi.Input[
|
581
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
496
582
|
locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
497
583
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
498
584
|
name: Optional[pulumi.Input[str]] = None,
|
499
585
|
period: Optional[pulumi.Input[str]] = None,
|
586
|
+
runtime_type: Optional[pulumi.Input[str]] = None,
|
587
|
+
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
500
588
|
status: Optional[pulumi.Input[str]] = None,
|
501
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
589
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
502
590
|
uri: Optional[pulumi.Input[str]] = None,
|
591
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
503
592
|
__props__=None):
|
504
593
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
505
594
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -516,6 +605,8 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
516
605
|
if period is None and not opts.urn:
|
517
606
|
raise TypeError("Missing required property 'period'")
|
518
607
|
__props__.__dict__["period"] = period
|
608
|
+
__props__.__dict__["runtime_type"] = runtime_type
|
609
|
+
__props__.__dict__["runtime_type_version"] = runtime_type_version
|
519
610
|
if status is None and not opts.urn:
|
520
611
|
raise TypeError("Missing required property 'status'")
|
521
612
|
__props__.__dict__["status"] = status
|
@@ -523,6 +614,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
523
614
|
if uri is None and not opts.urn:
|
524
615
|
raise TypeError("Missing required property 'uri'")
|
525
616
|
__props__.__dict__["uri"] = uri
|
617
|
+
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
526
618
|
__props__.__dict__["guid"] = None
|
527
619
|
__props__.__dict__["period_in_minutes"] = None
|
528
620
|
super(BrokenLinksMonitor, __self__).__init__(
|
@@ -535,16 +627,19 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
535
627
|
def get(resource_name: str,
|
536
628
|
id: pulumi.Input[str],
|
537
629
|
opts: Optional[pulumi.ResourceOptions] = None,
|
538
|
-
account_id: Optional[pulumi.Input[
|
630
|
+
account_id: Optional[pulumi.Input[str]] = None,
|
539
631
|
guid: Optional[pulumi.Input[str]] = None,
|
540
632
|
locations_privates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
541
633
|
locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
542
634
|
name: Optional[pulumi.Input[str]] = None,
|
543
635
|
period: Optional[pulumi.Input[str]] = None,
|
544
636
|
period_in_minutes: Optional[pulumi.Input[int]] = None,
|
637
|
+
runtime_type: Optional[pulumi.Input[str]] = None,
|
638
|
+
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
545
639
|
status: Optional[pulumi.Input[str]] = None,
|
546
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
547
|
-
uri: Optional[pulumi.Input[str]] = None
|
640
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BrokenLinksMonitorTagArgs', 'BrokenLinksMonitorTagArgsDict']]]]] = None,
|
641
|
+
uri: Optional[pulumi.Input[str]] = None,
|
642
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None) -> 'BrokenLinksMonitor':
|
548
643
|
"""
|
549
644
|
Get an existing BrokenLinksMonitor resource's state with the given name, id, and optional extra
|
550
645
|
properties used to qualify the lookup.
|
@@ -552,17 +647,17 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
552
647
|
:param str resource_name: The unique name of the resulting resource.
|
553
648
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
554
649
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
555
|
-
:param pulumi.Input[
|
650
|
+
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
556
651
|
:param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
|
557
652
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_privates: The location the monitor will run from. Accepts a list of private location GUIDs. At least one of either `locations_public` or `locations_private` is required.
|
558
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from.
|
653
|
+
: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.
|
559
654
|
:param pulumi.Input[str] name: The name for the monitor.
|
560
|
-
:param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are EVERY_MINUTE
|
655
|
+
: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`.
|
561
656
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
562
|
-
:param pulumi.Input[str]
|
563
|
-
|
564
|
-
|
565
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
657
|
+
:param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs (`NODE_API`).
|
658
|
+
:param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
|
659
|
+
:param pulumi.Input[str] status: The run state of the monitor. (`ENABLED` or `DISABLED`).
|
660
|
+
: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
|
566
661
|
:param pulumi.Input[str] uri: The URI the monitor runs against.
|
567
662
|
"""
|
568
663
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -576,14 +671,17 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
576
671
|
__props__.__dict__["name"] = name
|
577
672
|
__props__.__dict__["period"] = period
|
578
673
|
__props__.__dict__["period_in_minutes"] = period_in_minutes
|
674
|
+
__props__.__dict__["runtime_type"] = runtime_type
|
675
|
+
__props__.__dict__["runtime_type_version"] = runtime_type_version
|
579
676
|
__props__.__dict__["status"] = status
|
580
677
|
__props__.__dict__["tags"] = tags
|
581
678
|
__props__.__dict__["uri"] = uri
|
679
|
+
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
582
680
|
return BrokenLinksMonitor(resource_name, opts=opts, __props__=__props__)
|
583
681
|
|
584
682
|
@property
|
585
683
|
@pulumi.getter(name="accountId")
|
586
|
-
def account_id(self) -> pulumi.Output[
|
684
|
+
def account_id(self) -> pulumi.Output[str]:
|
587
685
|
"""
|
588
686
|
The account in which the Synthetics monitor will be created.
|
589
687
|
"""
|
@@ -609,7 +707,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
609
707
|
@pulumi.getter(name="locationsPublics")
|
610
708
|
def locations_publics(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
611
709
|
"""
|
612
|
-
The location the monitor will run from.
|
710
|
+
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.
|
613
711
|
"""
|
614
712
|
return pulumi.get(self, "locations_publics")
|
615
713
|
|
@@ -625,7 +723,7 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
625
723
|
@pulumi.getter
|
626
724
|
def period(self) -> pulumi.Output[str]:
|
627
725
|
"""
|
628
|
-
The interval at which this monitor should run. Valid values are EVERY_MINUTE
|
726
|
+
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`.
|
629
727
|
"""
|
630
728
|
return pulumi.get(self, "period")
|
631
729
|
|
@@ -637,13 +735,27 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
637
735
|
"""
|
638
736
|
return pulumi.get(self, "period_in_minutes")
|
639
737
|
|
738
|
+
@property
|
739
|
+
@pulumi.getter(name="runtimeType")
|
740
|
+
def runtime_type(self) -> pulumi.Output[Optional[str]]:
|
741
|
+
"""
|
742
|
+
The runtime that the monitor will use to run jobs (`NODE_API`).
|
743
|
+
"""
|
744
|
+
return pulumi.get(self, "runtime_type")
|
745
|
+
|
746
|
+
@property
|
747
|
+
@pulumi.getter(name="runtimeTypeVersion")
|
748
|
+
def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
|
749
|
+
"""
|
750
|
+
The specific semver version of the runtime type.
|
751
|
+
"""
|
752
|
+
return pulumi.get(self, "runtime_type_version")
|
753
|
+
|
640
754
|
@property
|
641
755
|
@pulumi.getter
|
642
756
|
def status(self) -> pulumi.Output[str]:
|
643
757
|
"""
|
644
|
-
The
|
645
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
646
|
-
refrain from using this value and shift to alternatives.
|
758
|
+
The run state of the monitor. (`ENABLED` or `DISABLED`).
|
647
759
|
"""
|
648
760
|
return pulumi.get(self, "status")
|
649
761
|
|
@@ -663,3 +775,8 @@ class BrokenLinksMonitor(pulumi.CustomResource):
|
|
663
775
|
"""
|
664
776
|
return pulumi.get(self, "uri")
|
665
777
|
|
778
|
+
@property
|
779
|
+
@pulumi.getter(name="useUnsupportedLegacyRuntime")
|
780
|
+
def use_unsupported_legacy_runtime(self) -> pulumi.Output[Optional[bool]]:
|
781
|
+
return pulumi.get(self, "use_unsupported_legacy_runtime")
|
782
|
+
|