pulumi-newrelic 5.30.0a1724478404__py3-none-any.whl → 5.31.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_newrelic/_inputs.py +980 -0
- pulumi_newrelic/api_access_key.py +12 -0
- pulumi_newrelic/notification_channel.py +4 -0
- pulumi_newrelic/outputs.py +812 -0
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/synthetics/broken_links_monitor.py +37 -3
- pulumi_newrelic/synthetics/cert_check_monitor.py +44 -38
- pulumi_newrelic/synthetics/monitor.py +34 -0
- pulumi_newrelic/synthetics/script_monitor.py +37 -3
- pulumi_newrelic/synthetics/step_monitor.py +37 -3
- {pulumi_newrelic-5.30.0a1724478404.dist-info → pulumi_newrelic-5.31.0.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.30.0a1724478404.dist-info → pulumi_newrelic-5.31.0.dist-info}/RECORD +14 -14
- {pulumi_newrelic-5.30.0a1724478404.dist-info → pulumi_newrelic-5.31.0.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.30.0a1724478404.dist-info → pulumi_newrelic-5.31.0.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,8 @@ 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
|
29
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None,
|
30
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
30
31
|
"""
|
31
32
|
The set of arguments for constructing a StepMonitor resource.
|
32
33
|
: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`.
|
@@ -60,6 +61,8 @@ class StepMonitorArgs:
|
|
60
61
|
pulumi.set(__self__, "runtime_type_version", runtime_type_version)
|
61
62
|
if tags is not None:
|
62
63
|
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)
|
63
66
|
|
64
67
|
@property
|
65
68
|
@pulumi.getter
|
@@ -193,6 +196,15 @@ class StepMonitorArgs:
|
|
193
196
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]]):
|
194
197
|
pulumi.set(self, "tags", value)
|
195
198
|
|
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
|
+
|
196
208
|
|
197
209
|
@pulumi.input_type
|
198
210
|
class _StepMonitorState:
|
@@ -209,7 +221,8 @@ class _StepMonitorState:
|
|
209
221
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
210
222
|
status: Optional[pulumi.Input[str]] = None,
|
211
223
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]]] = None,
|
212
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None
|
224
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]] = None,
|
225
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None):
|
213
226
|
"""
|
214
227
|
Input properties used for looking up and filtering StepMonitor resources.
|
215
228
|
:param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
|
@@ -252,6 +265,8 @@ class _StepMonitorState:
|
|
252
265
|
pulumi.set(__self__, "steps", steps)
|
253
266
|
if tags is not None:
|
254
267
|
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)
|
255
270
|
|
256
271
|
@property
|
257
272
|
@pulumi.getter(name="accountId")
|
@@ -409,6 +424,15 @@ class _StepMonitorState:
|
|
409
424
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]]]):
|
410
425
|
pulumi.set(self, "tags", value)
|
411
426
|
|
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
|
+
|
412
436
|
|
413
437
|
class StepMonitor(pulumi.CustomResource):
|
414
438
|
@overload
|
@@ -426,6 +450,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
426
450
|
status: Optional[pulumi.Input[str]] = None,
|
427
451
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
428
452
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
453
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
429
454
|
__props__=None):
|
430
455
|
"""
|
431
456
|
## Example Usage
|
@@ -623,6 +648,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
623
648
|
status: Optional[pulumi.Input[str]] = None,
|
624
649
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
625
650
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
651
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None,
|
626
652
|
__props__=None):
|
627
653
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
628
654
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -649,6 +675,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
649
675
|
raise TypeError("Missing required property 'steps'")
|
650
676
|
__props__.__dict__["steps"] = steps
|
651
677
|
__props__.__dict__["tags"] = tags
|
678
|
+
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
652
679
|
__props__.__dict__["guid"] = None
|
653
680
|
__props__.__dict__["period_in_minutes"] = None
|
654
681
|
super(StepMonitor, __self__).__init__(
|
@@ -673,7 +700,8 @@ class StepMonitor(pulumi.CustomResource):
|
|
673
700
|
runtime_type_version: Optional[pulumi.Input[str]] = None,
|
674
701
|
status: Optional[pulumi.Input[str]] = None,
|
675
702
|
steps: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]]] = None,
|
676
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None
|
703
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]]] = None,
|
704
|
+
use_unsupported_legacy_runtime: Optional[pulumi.Input[bool]] = None) -> 'StepMonitor':
|
677
705
|
"""
|
678
706
|
Get an existing StepMonitor resource's state with the given name, id, and optional extra
|
679
707
|
properties used to qualify the lookup.
|
@@ -712,6 +740,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
712
740
|
__props__.__dict__["status"] = status
|
713
741
|
__props__.__dict__["steps"] = steps
|
714
742
|
__props__.__dict__["tags"] = tags
|
743
|
+
__props__.__dict__["use_unsupported_legacy_runtime"] = use_unsupported_legacy_runtime
|
715
744
|
return StepMonitor(resource_name, opts=opts, __props__=__props__)
|
716
745
|
|
717
746
|
@property
|
@@ -818,3 +847,8 @@ class StepMonitor(pulumi.CustomResource):
|
|
818
847
|
"""
|
819
848
|
return pulumi.get(self, "tags")
|
820
849
|
|
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
|
+
|
@@ -1,5 +1,5 @@
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=luicxeYNxDmIsa2-nMVrwOSsVDM2OlfNvTtAJJHnqIY,547954
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
4
|
pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=dg9-BYRjiQdXo_ykqrkQZZC8zrgS76dQI1nnV3lM2ZA,21387
|
@@ -7,7 +7,7 @@ pulumi_newrelic/alert_condition.py,sha256=cZ4Je12c1plt0z06Ash7DrE0_EDqcIn7cTxeNh
|
|
7
7
|
pulumi_newrelic/alert_muting_rule.py,sha256=29krxHeSE5j6Cl1GNjWAZuBc1pQrozy-8doyXSMdEbM,19154
|
8
8
|
pulumi_newrelic/alert_policy.py,sha256=Titb2zd1irx9HWPU7Z0MZkuzf9nfvuJdbQELnmnuSZw,26106
|
9
9
|
pulumi_newrelic/alert_policy_channel.py,sha256=1XE1pJ3F17F1V1RJ4gi4hNX7YSLH7QMRnjb44lN-YaI,15587
|
10
|
-
pulumi_newrelic/api_access_key.py,sha256=
|
10
|
+
pulumi_newrelic/api_access_key.py,sha256=Yd0aISR9SEHHFow2o8xlO4k602EKdJmxV0OocWqKJjs,22257
|
11
11
|
pulumi_newrelic/browser_application.py,sha256=tVD3ZgHHXTTe1t9fFBDbeT9agigtzCajQJlmupdMd-4,21042
|
12
12
|
pulumi_newrelic/data_partition_rule.py,sha256=C_G9maLjFeJlv_XUfDmgWZIgGVO2ojlOcx0mZsciMZU,20433
|
13
13
|
pulumi_newrelic/entity_tags.py,sha256=tDB1LlkPXMM9cjxdxa0IVBhee8VBm3uyyELSUvKuNgk,10117
|
@@ -30,7 +30,7 @@ pulumi_newrelic/group.py,sha256=ifVMSVvNIQ4YtoRXIBCpzu7jy3AsEt0iQAFC4M3Rb8g,2090
|
|
30
30
|
pulumi_newrelic/infra_alert_condition.py,sha256=Tyb0hKgQLymb9IQ4a5oQPk3Te8mnLNDiwwBugXI9hEQ,57500
|
31
31
|
pulumi_newrelic/log_parsing_rule.py,sha256=1NgUsL1PQNd5-5eMUiOA5fL0vT91DNQ6KqmcWSyn5l0,22408
|
32
32
|
pulumi_newrelic/monitor_downtime.py,sha256=xykQl049eRPdC65CMoJ8f2tDziQ_iz16zcGX79Wg1Tg,40688
|
33
|
-
pulumi_newrelic/notification_channel.py,sha256=
|
33
|
+
pulumi_newrelic/notification_channel.py,sha256=lN75Hu1F5LYRt8GaOk_fPhITmubaLv92x1pWQ7HQuWM,46773
|
34
34
|
pulumi_newrelic/notification_destination.py,sha256=hYOsSjKmY4wqk6KMpmVMrBMMvfIXchjQi-HA27_B4wA,39007
|
35
35
|
pulumi_newrelic/nrql_alert_condition.py,sha256=AgaK5W9BEPnsr8jGPDFTh3SKi9_C_4qNcbBp-N8NH1A,112035
|
36
36
|
pulumi_newrelic/nrql_drop_rule.py,sha256=PO9gtn6xHMEHjUdfZB_h5AWnWFFnfihRxwxEoGsS_tk,17538
|
@@ -39,9 +39,9 @@ pulumi_newrelic/obfuscation_rule.py,sha256=Cz6dmdXb6JNf2_jiFjAEk4Nd0RSOwF9D9A1vW
|
|
39
39
|
pulumi_newrelic/one_dashboard.py,sha256=bDsY4sEBzjnz2iZb_JmWptApai3Blpzo25vHIRQsjDw,20680
|
40
40
|
pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0qg-NVT-s,12622
|
41
41
|
pulumi_newrelic/one_dashboard_raw.py,sha256=_5CWA6p6_tCfI135mTysVo0qjQf1xnYBNEZBDNmKqsw,23502
|
42
|
-
pulumi_newrelic/outputs.py,sha256=
|
42
|
+
pulumi_newrelic/outputs.py,sha256=TdO-CuVJTKhSmIRRYYtL6L6i55OPM2XfwiamJrddutA,532114
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=sSBoYvLc8r_vzMkKeDA7kfhwEhpp3bMLaSnKukVSAe0,68
|
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=hyQem6uR9RmPaf4fedhk-HqnSihbfgsLbLp8PiMPcJ4,37008
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=FwRe7xXr_MG8sbICoM_w6CX4xUAJFFLe2W86zaVgyZg,39084
|
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=qRNTNb6r892TwD_oNGHwZDoNJ35r0AfjhQQ1fUawqBc,66224
|
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=3McDfGQHxaMQ7a_OlUdc3MWBqfL7RxfTpBbi4f2zZvA,57354
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
|
85
|
-
pulumi_newrelic/synthetics/step_monitor.py,sha256
|
86
|
-
pulumi_newrelic-5.
|
87
|
-
pulumi_newrelic-5.
|
88
|
-
pulumi_newrelic-5.
|
89
|
-
pulumi_newrelic-5.
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=46ZEzNqsgxhgS7LUP7M4S7UgXQqA-1G45_bN7vfi8RI,42280
|
86
|
+
pulumi_newrelic-5.31.0.dist-info/METADATA,sha256=4rjfwO7Qb7bVZNwJj-s_HxOem_X02Vv36ERIauKFtP0,3889
|
87
|
+
pulumi_newrelic-5.31.0.dist-info/WHEEL,sha256=uCRv0ZEik_232NlR4YDw4Pv3Ajt5bKvMH13NUU7hFuI,91
|
88
|
+
pulumi_newrelic-5.31.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.31.0.dist-info/RECORD,,
|
{pulumi_newrelic-5.30.0a1724478404.dist-info → pulumi_newrelic-5.31.0.dist-info}/top_level.txt
RENAMED
File without changes
|