pulumi-newrelic 5.21.0__py3-none-any.whl → 5.21.0a1710918336__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 +29 -69
- pulumi_newrelic/get_notification_destination.py +1 -14
- pulumi_newrelic/notification_destination.py +0 -28
- pulumi_newrelic/outputs.py +29 -78
- pulumi_newrelic/plugins/_inputs.py +2 -2
- pulumi_newrelic/plugins/outputs.py +2 -2
- pulumi_newrelic/synthetics/broken_links_monitor.py +21 -7
- pulumi_newrelic/synthetics/cert_check_monitor.py +21 -7
- pulumi_newrelic/synthetics/monitor.py +21 -7
- pulumi_newrelic/synthetics/script_monitor.py +21 -7
- pulumi_newrelic/synthetics/step_monitor.py +21 -7
- {pulumi_newrelic-5.21.0.dist-info → pulumi_newrelic-5.21.0a1710918336.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.21.0.dist-info → pulumi_newrelic-5.21.0a1710918336.dist-info}/RECORD +15 -15
- {pulumi_newrelic-5.21.0.dist-info → pulumi_newrelic-5.21.0a1710918336.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.21.0.dist-info → pulumi_newrelic-5.21.0a1710918336.dist-info}/top_level.txt +0 -0
@@ -38,7 +38,9 @@ class MonitorArgs:
|
|
38
38
|
verify_ssl: Optional[pulumi.Input[bool]] = None):
|
39
39
|
"""
|
40
40
|
The set of arguments for constructing a Monitor resource.
|
41
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
41
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
42
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
43
|
+
refrain from using this value and shift to alternatives.
|
42
44
|
:param pulumi.Input[str] type: The monitor type. Valid values are `SIMPLE` and `BROWSER`.
|
43
45
|
:param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
|
44
46
|
:param pulumi.Input[bool] bypass_head_request: Monitor should skip default HEAD request and instead use GET verb in check.
|
@@ -106,7 +108,9 @@ class MonitorArgs:
|
|
106
108
|
@pulumi.getter
|
107
109
|
def status(self) -> pulumi.Input[str]:
|
108
110
|
"""
|
109
|
-
The monitor status (ENABLED
|
111
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
112
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
113
|
+
refrain from using this value and shift to alternatives.
|
110
114
|
"""
|
111
115
|
return pulumi.get(self, "status")
|
112
116
|
|
@@ -389,7 +393,9 @@ class _MonitorState:
|
|
389
393
|
:param pulumi.Input[str] runtime_type: The runtime type that the monitor will run.
|
390
394
|
:param pulumi.Input[str] runtime_type_version: The runtime type that the monitor will run.
|
391
395
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
392
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
396
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
397
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
398
|
+
refrain from using this value and shift to alternatives.
|
393
399
|
:param pulumi.Input[Sequence[pulumi.Input['MonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
394
400
|
|
395
401
|
The `SIMPLE` monitor type supports the following additional arguments:
|
@@ -616,7 +622,9 @@ class _MonitorState:
|
|
616
622
|
@pulumi.getter
|
617
623
|
def status(self) -> Optional[pulumi.Input[str]]:
|
618
624
|
"""
|
619
|
-
The monitor status (ENABLED
|
625
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
626
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
627
|
+
refrain from using this value and shift to alternatives.
|
620
628
|
"""
|
621
629
|
return pulumi.get(self, "status")
|
622
630
|
|
@@ -881,7 +889,9 @@ class Monitor(pulumi.CustomResource):
|
|
881
889
|
:param pulumi.Input[str] runtime_type: The runtime type that the monitor will run.
|
882
890
|
:param pulumi.Input[str] runtime_type_version: The runtime type that the monitor will run.
|
883
891
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
884
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
892
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
893
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
894
|
+
refrain from using this value and shift to alternatives.
|
885
895
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
886
896
|
|
887
897
|
The `SIMPLE` monitor type supports the following additional arguments:
|
@@ -1159,7 +1169,9 @@ class Monitor(pulumi.CustomResource):
|
|
1159
1169
|
:param pulumi.Input[str] runtime_type: The runtime type that the monitor will run.
|
1160
1170
|
:param pulumi.Input[str] runtime_type_version: The runtime type that the monitor will run.
|
1161
1171
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
1162
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
1172
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
1173
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
1174
|
+
refrain from using this value and shift to alternatives.
|
1163
1175
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
1164
1176
|
|
1165
1177
|
The `SIMPLE` monitor type supports the following additional arguments:
|
@@ -1314,7 +1326,9 @@ class Monitor(pulumi.CustomResource):
|
|
1314
1326
|
@pulumi.getter
|
1315
1327
|
def status(self) -> pulumi.Output[str]:
|
1316
1328
|
"""
|
1317
|
-
The monitor status (ENABLED
|
1329
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
1330
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
1331
|
+
refrain from using this value and shift to alternatives.
|
1318
1332
|
"""
|
1319
1333
|
return pulumi.get(self, "status")
|
1320
1334
|
|
@@ -34,7 +34,9 @@ class ScriptMonitorArgs:
|
|
34
34
|
"""
|
35
35
|
The set of arguments for constructing a ScriptMonitor resource.
|
36
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.
|
37
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
37
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
38
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
39
|
+
refrain from using this value and shift to alternatives.
|
38
40
|
:param pulumi.Input[str] type: The plaintext representing the monitor script. Valid values are SCRIPT_BROWSER or SCRIPT_API
|
39
41
|
:param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
|
40
42
|
:param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
|
@@ -95,7 +97,9 @@ class ScriptMonitorArgs:
|
|
95
97
|
@pulumi.getter
|
96
98
|
def status(self) -> pulumi.Input[str]:
|
97
99
|
"""
|
98
|
-
The monitor status (ENABLED
|
100
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
101
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
102
|
+
refrain from using this value and shift to alternatives.
|
99
103
|
"""
|
100
104
|
return pulumi.get(self, "status")
|
101
105
|
|
@@ -298,7 +302,9 @@ class _ScriptMonitorState:
|
|
298
302
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
299
303
|
:param pulumi.Input[str] script: The script that the monitor runs.
|
300
304
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
301
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
305
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
306
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
307
|
+
refrain from using this value and shift to alternatives.
|
302
308
|
:param pulumi.Input[Sequence[pulumi.Input['ScriptMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
303
309
|
|
304
310
|
The `SCRIPTED_BROWSER` monitor type supports the following additional argument:
|
@@ -511,7 +517,9 @@ class _ScriptMonitorState:
|
|
511
517
|
@pulumi.getter
|
512
518
|
def status(self) -> Optional[pulumi.Input[str]]:
|
513
519
|
"""
|
514
|
-
The monitor status (ENABLED
|
520
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
521
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
522
|
+
refrain from using this value and shift to alternatives.
|
515
523
|
"""
|
516
524
|
return pulumi.get(self, "status")
|
517
525
|
|
@@ -715,7 +723,9 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
715
723
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
716
724
|
:param pulumi.Input[str] script: The script that the monitor runs.
|
717
725
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
718
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
726
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
727
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
728
|
+
refrain from using this value and shift to alternatives.
|
719
729
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ScriptMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
720
730
|
|
721
731
|
The `SCRIPTED_BROWSER` monitor type supports the following additional argument:
|
@@ -971,7 +981,9 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
971
981
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
972
982
|
:param pulumi.Input[str] script: The script that the monitor runs.
|
973
983
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
974
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
984
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
985
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
986
|
+
refrain from using this value and shift to alternatives.
|
975
987
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ScriptMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
976
988
|
|
977
989
|
The `SCRIPTED_BROWSER` monitor type supports the following additional argument:
|
@@ -1116,7 +1128,9 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
1116
1128
|
@pulumi.getter
|
1117
1129
|
def status(self) -> pulumi.Output[str]:
|
1118
1130
|
"""
|
1119
|
-
The monitor status (ENABLED
|
1131
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
1132
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
1133
|
+
refrain from using this value and shift to alternatives.
|
1120
1134
|
"""
|
1121
1135
|
return pulumi.get(self, "status")
|
1122
1136
|
|
@@ -28,7 +28,9 @@ class StepMonitorArgs:
|
|
28
28
|
"""
|
29
29
|
The set of arguments for constructing a StepMonitor resource.
|
30
30
|
: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.
|
31
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
31
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
32
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
33
|
+
refrain from using this value and shift to alternatives.
|
32
34
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
33
35
|
:param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
|
34
36
|
:param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
|
@@ -69,7 +71,9 @@ class StepMonitorArgs:
|
|
69
71
|
@pulumi.getter
|
70
72
|
def status(self) -> pulumi.Input[str]:
|
71
73
|
"""
|
72
|
-
The monitor status (ENABLED
|
74
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
75
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
76
|
+
refrain from using this value and shift to alternatives.
|
73
77
|
"""
|
74
78
|
return pulumi.get(self, "status")
|
75
79
|
|
@@ -186,7 +190,9 @@ class _StepMonitorState:
|
|
186
190
|
:param pulumi.Input[str] name: The name for the monitor.
|
187
191
|
: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.
|
188
192
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
189
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
193
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
194
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
195
|
+
refrain from using this value and shift to alternatives.
|
190
196
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
191
197
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
192
198
|
"""
|
@@ -313,7 +319,9 @@ class _StepMonitorState:
|
|
313
319
|
@pulumi.getter
|
314
320
|
def status(self) -> Optional[pulumi.Input[str]]:
|
315
321
|
"""
|
316
|
-
The monitor status (ENABLED
|
322
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
323
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
324
|
+
refrain from using this value and shift to alternatives.
|
317
325
|
"""
|
318
326
|
return pulumi.get(self, "status")
|
319
327
|
|
@@ -412,7 +420,9 @@ class StepMonitor(pulumi.CustomResource):
|
|
412
420
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Valid public locations are https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
|
413
421
|
:param pulumi.Input[str] name: The name for the monitor.
|
414
422
|
: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.
|
415
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
423
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
424
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
425
|
+
refrain from using this value and shift to alternatives.
|
416
426
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorStepArgs']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
417
427
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
418
428
|
"""
|
@@ -551,7 +561,9 @@ class StepMonitor(pulumi.CustomResource):
|
|
551
561
|
:param pulumi.Input[str] name: The name for the monitor.
|
552
562
|
: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.
|
553
563
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
554
|
-
:param pulumi.Input[str] status: The monitor status (ENABLED
|
564
|
+
:param pulumi.Input[str] status: The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
565
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
566
|
+
refrain from using this value and shift to alternatives.
|
555
567
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorStepArgs']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
|
556
568
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['StepMonitorTagArgs']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
557
569
|
"""
|
@@ -640,7 +652,9 @@ class StepMonitor(pulumi.CustomResource):
|
|
640
652
|
@pulumi.getter
|
641
653
|
def status(self) -> pulumi.Output[str]:
|
642
654
|
"""
|
643
|
-
The monitor status (ENABLED
|
655
|
+
The monitor status (i.e. ENABLED, MUTED, DISABLED). Note: The 'MUTED' status is now deprecated, and support for this
|
656
|
+
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
657
|
+
refrain from using this value and shift to alternatives.
|
644
658
|
"""
|
645
659
|
return pulumi.get(self, "status")
|
646
660
|
|
@@ -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=IK3QSgzencxOTb3L-iSDvdaEvKORUTKYewvS8c5VeA8,476794
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
4
|
pulumi_newrelic/account_management.py,sha256=s6N58vHOYTkFTvJzqOgD-ccytFdHERL2s_r_itSlrXM,8845
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=PWZanRviw-SAxmrJq4t-zKv1hGVOpqlBMqVScNJedvw,21984
|
@@ -21,7 +21,7 @@ pulumi_newrelic/get_cloud_account.py,sha256=6ZH4EJKd496uCt1rD5wYsfZxxJTPEi0g_biu
|
|
21
21
|
pulumi_newrelic/get_entity.py,sha256=n2kX6l4YbWz6ij3YWksdm0OpCqxZOHbkUxbLwJLXSE4,15853
|
22
22
|
pulumi_newrelic/get_group.py,sha256=taAkgQqBRxv_jkwl6sD-EYqWyqThF0LSKpUeBJbD3as,5803
|
23
23
|
pulumi_newrelic/get_key_transaction.py,sha256=MVb6rIX0nEOd4IR7ynQZa0quksdkZrm2coGB_Q7j76I,4221
|
24
|
-
pulumi_newrelic/get_notification_destination.py,sha256=
|
24
|
+
pulumi_newrelic/get_notification_destination.py,sha256=x13_HISLPz42t8MnE9QGf1QEhhc_WfDN3OE4Cx1wB8Q,6365
|
25
25
|
pulumi_newrelic/get_obfuscation_expression.py,sha256=fSpfxkyvph20r6JD6pGtrQCIglRaADUnCoQUS3UHCI0,5007
|
26
26
|
pulumi_newrelic/get_service_level_alert_helper.py,sha256=fSlXPtnYD-CWTCbbPZmkZr_3PhXWeyRxueU3yN6dVW0,20560
|
27
27
|
pulumi_newrelic/get_test_grok_pattern.py,sha256=pzspH3YKGEfw9FL0mJZfNzXXpd1mybQ3QBW8IN7cbGQ,5644
|
@@ -31,7 +31,7 @@ pulumi_newrelic/infra_alert_condition.py,sha256=Nrlexa4g2l_qgl2M4DDpEe-pxE5f6fz0
|
|
31
31
|
pulumi_newrelic/log_parsing_rule.py,sha256=mvgbaPWavaoFyXqaplGVtdb226v-IkZpeMxcAGrUe2A,22582
|
32
32
|
pulumi_newrelic/monitor_downtime.py,sha256=2aCFAgYiPiO_nBXcrvNVzf6QRVzLQtAs6qkdh5aYfZg,46150
|
33
33
|
pulumi_newrelic/notification_channel.py,sha256=O54FGSeanMaJIJ9OudXUp6HfsHyUchYYXAC3WSnYI6M,46822
|
34
|
-
pulumi_newrelic/notification_destination.py,sha256=
|
34
|
+
pulumi_newrelic/notification_destination.py,sha256=ujHucehZlfTpIW83vUEavXD-Qm389pdPqj7M0K3PPUE,28421
|
35
35
|
pulumi_newrelic/nrql_alert_condition.py,sha256=pGxEfYuC5XJzduBm06WhEbQmJvF0Za1yx21CSiBf1D4,106341
|
36
36
|
pulumi_newrelic/nrql_drop_rule.py,sha256=BOCGXd8gugGmZXFtJThzcHrKdCuXWOdFFud8X_7kyxA,17682
|
37
37
|
pulumi_newrelic/obfuscation_expression.py,sha256=kg28CSPY_H3HEvFNmX23viizOcSt24bP_KISIsB1228,12445
|
@@ -39,7 +39,7 @@ pulumi_newrelic/obfuscation_rule.py,sha256=ZvjFqN3tB-k7yJHUzQ5l_IMdqL3We6sdTHL2S
|
|
39
39
|
pulumi_newrelic/one_dashboard.py,sha256=WV_3eumopsQ26zEzcivKMc5lLKsWQdLBQhouUgr-BEE,20490
|
40
40
|
pulumi_newrelic/one_dashboard_json.py,sha256=nol5XYIGnZImO2UfE3QbQVSMTxlC4FlVLf0VzuNALJU,12622
|
41
41
|
pulumi_newrelic/one_dashboard_raw.py,sha256=_MmaSoHiILB0Xv3dP-3m0gXRWaA1vjYSarcvPliIrUo,23274
|
42
|
-
pulumi_newrelic/outputs.py,sha256=
|
42
|
+
pulumi_newrelic/outputs.py,sha256=nSt6iAV687_xXCC8n2TXxo7bIBLN97DLQvI70zGj5Sw,469781
|
43
43
|
pulumi_newrelic/provider.py,sha256=VPXhUfFLSVoIFew1P_oy7pHeondN5LbHsLoLqD3z7qs,19536
|
44
44
|
pulumi_newrelic/pulumi-plugin.json,sha256=BB2nuoRbgCmufIppkKjSbeCa7oIqt8NBakO_A4QV0Pk,45
|
45
45
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -65,25 +65,25 @@ pulumi_newrelic/insights/_inputs.py,sha256=_N6liJuXjt9GK3HWgA94q0fLjAckJd6Ou5ntA
|
|
65
65
|
pulumi_newrelic/insights/event.py,sha256=OGFe9Z0aRRQTYokCS6fN1HqUU4SITjr2m3TLhLsRODA,10210
|
66
66
|
pulumi_newrelic/insights/outputs.py,sha256=Rsw2x8EcSF_LE4pt_9jJtoF_ut0D1S4cRCxPzCIBVsU,3335
|
67
67
|
pulumi_newrelic/plugins/__init__.py,sha256=UeoukmKyu6Xm6K4W4z5N_CzyB634ttFEcP7GH9nTyeA,374
|
68
|
-
pulumi_newrelic/plugins/_inputs.py,sha256=
|
68
|
+
pulumi_newrelic/plugins/_inputs.py,sha256=FxdmKs4Tg8NXXcXW4YIIHtwxSzwvc_FizQS_QeAoRiw,17018
|
69
69
|
pulumi_newrelic/plugins/application_settings.py,sha256=BKJfmPz-f5IvhSVWaFKua-C-lRs9OLKE3i36M2shtWI,16195
|
70
|
-
pulumi_newrelic/plugins/outputs.py,sha256
|
70
|
+
pulumi_newrelic/plugins/outputs.py,sha256=-QBbMX5uPcEPsTA3v-Qia3kT9DzQp-dA6D80E6cfFn4,16831
|
71
71
|
pulumi_newrelic/plugins/workload.py,sha256=p-ff2bqWLZcmpaDKjdZICgdm0yjRxRo9IhnHC0RXkX8,36362
|
72
72
|
pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
|
73
73
|
pulumi_newrelic/synthetics/_inputs.py,sha256=F8ecjlj2j3gv0oWwFNYGht9gktjMDumW-_hxoz852UE,13597
|
74
74
|
pulumi_newrelic/synthetics/alert_condition.py,sha256=ngkIeaXtjCYl-Rw7Qyoo9RYXzts0UX_4Vojlw9taZHk,21478
|
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=qn7UrcWq7lisX6uzPrP3QSbsXuKA-EAeHoKp4X8j2-Q,32353
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=jymDHMhU6Rl49rJIei10sU__FpG3PToNqKpDyRIKm4U,34449
|
77
77
|
pulumi_newrelic/synthetics/get_private_location.py,sha256=uN_Tq4sjJVbiS0QCxNjEesZVGuZfIDk63FCauArTWQ0,6067
|
78
78
|
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=RpMMEU2-hCoKZ8oT0rrCq8Rk0skr90NQtuEpM9L-T3M,5619
|
79
|
-
pulumi_newrelic/synthetics/monitor.py,sha256=
|
79
|
+
pulumi_newrelic/synthetics/monitor.py,sha256=O0OV3AZWdAzqPsZrggf5wdNmjFq4dXeYfCcansUF6mk,65877
|
80
80
|
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=di1V2yKwIbpTB8Gj3Ab5Ei09VyQy94wChR11cCOPbiY,35063
|
81
81
|
pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
|
82
82
|
pulumi_newrelic/synthetics/private_location.py,sha256=sfKNs1-BdEdbrvAsG7N07p6OY1NsY7IiAvpFJjm8a6E,17325
|
83
|
-
pulumi_newrelic/synthetics/script_monitor.py,sha256=
|
83
|
+
pulumi_newrelic/synthetics/script_monitor.py,sha256=5BN0vIKP14X-__XKYIzl20Ol5m-AzUvyQyn5YR50-5M,55206
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=zniaAb_wXwph3sPSxo_aU--DIgAl7TUR90-DxRBLhac,15758
|
85
|
-
pulumi_newrelic/synthetics/step_monitor.py,sha256=
|
86
|
-
pulumi_newrelic-5.21.
|
87
|
-
pulumi_newrelic-5.21.
|
88
|
-
pulumi_newrelic-5.21.
|
89
|
-
pulumi_newrelic-5.21.
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=V-EisOGDUdE7KUmp6c79HcStoKIOeptdyc-yhfy23-g,35297
|
86
|
+
pulumi_newrelic-5.21.0a1710918336.dist-info/METADATA,sha256=5-2r_mj9JuC3pcCFnZFfW28wq1R0NOjaP-zpCLEujlk,3900
|
87
|
+
pulumi_newrelic-5.21.0a1710918336.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
+
pulumi_newrelic-5.21.0a1710918336.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.21.0a1710918336.dist-info/RECORD,,
|
File without changes
|
{pulumi_newrelic-5.21.0.dist-info → pulumi_newrelic-5.21.0a1710918336.dist-info}/top_level.txt
RENAMED
File without changes
|