pulumi-newrelic 5.20.0a1709365820__py3-none-any.whl → 5.21.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/__init__.py +10 -0
- pulumi_newrelic/_inputs.py +69 -29
- pulumi_newrelic/account_management.py +6 -2
- pulumi_newrelic/alert_channel.py +34 -2
- pulumi_newrelic/alert_condition.py +26 -2
- pulumi_newrelic/alert_muting_rule.py +6 -2
- pulumi_newrelic/alert_policy.py +48 -4
- pulumi_newrelic/alert_policy_channel.py +8 -4
- pulumi_newrelic/api_access_key.py +6 -26
- pulumi_newrelic/browser_application.py +6 -2
- pulumi_newrelic/cloud/aws_govcloud_integrations.py +2 -2
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +6 -2
- pulumi_newrelic/cloud/aws_integrations.py +6 -2
- pulumi_newrelic/cloud/aws_link_account.py +6 -2
- pulumi_newrelic/cloud/azure_integrations.py +6 -2
- pulumi_newrelic/cloud/azure_link_account.py +6 -2
- pulumi_newrelic/cloud/gcp_integrations.py +6 -2
- pulumi_newrelic/cloud/gcp_link_account.py +6 -2
- pulumi_newrelic/data_partition_rule.py +8 -2
- pulumi_newrelic/entity_tags.py +8 -4
- pulumi_newrelic/events_to_metrics_rule.py +8 -4
- pulumi_newrelic/get_account.py +4 -0
- pulumi_newrelic/get_alert_policy.py +3 -3
- pulumi_newrelic/get_application.py +4 -0
- pulumi_newrelic/get_authentication_domain.py +4 -0
- pulumi_newrelic/get_cloud_account.py +4 -0
- pulumi_newrelic/get_entity.py +66 -4
- pulumi_newrelic/get_group.py +145 -0
- pulumi_newrelic/get_key_transaction.py +4 -0
- pulumi_newrelic/get_notification_destination.py +14 -1
- pulumi_newrelic/get_obfuscation_expression.py +4 -0
- pulumi_newrelic/get_service_level_alert_helper.py +12 -0
- pulumi_newrelic/get_test_grok_pattern.py +4 -0
- pulumi_newrelic/get_user.py +10 -6
- pulumi_newrelic/group.py +426 -0
- pulumi_newrelic/infra_alert_condition.py +33 -9
- pulumi_newrelic/insights/event.py +6 -0
- pulumi_newrelic/log_parsing_rule.py +12 -2
- pulumi_newrelic/monitor_downtime.py +28 -2
- pulumi_newrelic/notification_channel.py +72 -0
- pulumi_newrelic/notification_destination.py +160 -2
- pulumi_newrelic/nrql_alert_condition.py +28 -4
- pulumi_newrelic/nrql_drop_rule.py +30 -4
- pulumi_newrelic/obfuscation_expression.py +6 -2
- pulumi_newrelic/obfuscation_rule.py +6 -2
- pulumi_newrelic/one_dashboard.py +2 -2
- pulumi_newrelic/one_dashboard_json.py +2 -2
- pulumi_newrelic/one_dashboard_raw.py +6 -0
- pulumi_newrelic/outputs.py +78 -29
- pulumi_newrelic/plugins/_inputs.py +2 -2
- pulumi_newrelic/plugins/application_settings.py +22 -2
- pulumi_newrelic/plugins/outputs.py +2 -2
- pulumi_newrelic/plugins/workload.py +112 -4
- pulumi_newrelic/service_level.py +20 -6
- pulumi_newrelic/synthetics/alert_condition.py +26 -2
- pulumi_newrelic/synthetics/broken_links_monitor.py +19 -23
- pulumi_newrelic/synthetics/cert_check_monitor.py +19 -23
- pulumi_newrelic/synthetics/get_private_location.py +8 -0
- pulumi_newrelic/synthetics/get_secure_credential.py +4 -0
- pulumi_newrelic/synthetics/monitor.py +27 -23
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +12 -4
- pulumi_newrelic/synthetics/private_location.py +6 -2
- pulumi_newrelic/synthetics/script_monitor.py +27 -23
- pulumi_newrelic/synthetics/secure_credential.py +6 -2
- pulumi_newrelic/synthetics/step_monitor.py +15 -23
- pulumi_newrelic/user.py +4 -0
- pulumi_newrelic/workflow.py +22 -4
- {pulumi_newrelic-5.20.0a1709365820.dist-info → pulumi_newrelic-5.21.0.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.21.0.dist-info/RECORD +89 -0
- {pulumi_newrelic-5.20.0a1709365820.dist-info → pulumi_newrelic-5.21.0.dist-info}/WHEEL +1 -1
- pulumi_newrelic-5.20.0a1709365820.dist-info/RECORD +0 -87
- {pulumi_newrelic-5.20.0a1709365820.dist-info → pulumi_newrelic-5.21.0.dist-info}/top_level.txt +0 -0
@@ -34,9 +34,7 @@ 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 (
|
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.
|
37
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
40
38
|
:param pulumi.Input[str] type: The plaintext representing the monitor script. Valid values are SCRIPT_BROWSER or SCRIPT_API
|
41
39
|
:param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
|
42
40
|
:param pulumi.Input[str] device_orientation: Device emulation orientation field. Valid values are `LANDSCAPE` and `PORTRAIT`.
|
@@ -97,9 +95,7 @@ class ScriptMonitorArgs:
|
|
97
95
|
@pulumi.getter
|
98
96
|
def status(self) -> pulumi.Input[str]:
|
99
97
|
"""
|
100
|
-
The monitor status (
|
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.
|
98
|
+
The monitor status (ENABLED or DISABLED).
|
103
99
|
"""
|
104
100
|
return pulumi.get(self, "status")
|
105
101
|
|
@@ -302,9 +298,7 @@ class _ScriptMonitorState:
|
|
302
298
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
303
299
|
:param pulumi.Input[str] script: The script that the monitor runs.
|
304
300
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
305
|
-
:param pulumi.Input[str] status: The monitor status (
|
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.
|
301
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
308
302
|
:param pulumi.Input[Sequence[pulumi.Input['ScriptMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
309
303
|
|
310
304
|
The `SCRIPTED_BROWSER` monitor type supports the following additional argument:
|
@@ -517,9 +511,7 @@ class _ScriptMonitorState:
|
|
517
511
|
@pulumi.getter
|
518
512
|
def status(self) -> Optional[pulumi.Input[str]]:
|
519
513
|
"""
|
520
|
-
The monitor status (
|
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.
|
514
|
+
The monitor status (ENABLED or DISABLED).
|
523
515
|
"""
|
524
516
|
return pulumi.get(self, "status")
|
525
517
|
|
@@ -582,6 +574,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
582
574
|
|
583
575
|
##### Type: `SCRIPT_API`
|
584
576
|
|
577
|
+
<!--Start PulumiCodeChooser -->
|
585
578
|
```python
|
586
579
|
import pulumi
|
587
580
|
import pulumi_newrelic as newrelic
|
@@ -603,8 +596,10 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
603
596
|
)],
|
604
597
|
type="SCRIPT_API")
|
605
598
|
```
|
599
|
+
<!--End PulumiCodeChooser -->
|
606
600
|
##### Type: `SCRIPT_BROWSER`
|
607
601
|
|
602
|
+
<!--Start PulumiCodeChooser -->
|
608
603
|
```python
|
609
604
|
import pulumi
|
610
605
|
import pulumi_newrelic as newrelic
|
@@ -627,7 +622,9 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
627
622
|
)],
|
628
623
|
type="SCRIPT_BROWSER")
|
629
624
|
```
|
625
|
+
<!--End PulumiCodeChooser -->
|
630
626
|
See additional examples.
|
627
|
+
|
631
628
|
## Additional Examples
|
632
629
|
|
633
630
|
### Create a monitor with a private location
|
@@ -638,6 +635,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
638
635
|
|
639
636
|
##### Type: `SCRIPT_API`
|
640
637
|
|
638
|
+
<!--Start PulumiCodeChooser -->
|
641
639
|
```python
|
642
640
|
import pulumi
|
643
641
|
import pulumi_newrelic as newrelic
|
@@ -662,8 +660,10 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
662
660
|
values=["some_value"],
|
663
661
|
)])
|
664
662
|
```
|
663
|
+
<!--End PulumiCodeChooser -->
|
665
664
|
##### Type: `SCRIPT_BROWSER`
|
666
665
|
|
666
|
+
<!--Start PulumiCodeChooser -->
|
667
667
|
```python
|
668
668
|
import pulumi
|
669
669
|
import pulumi_newrelic as newrelic
|
@@ -689,12 +689,13 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
689
689
|
values=["some_value"],
|
690
690
|
)])
|
691
691
|
```
|
692
|
+
<!--End PulumiCodeChooser -->
|
692
693
|
|
693
694
|
## Import
|
694
695
|
|
695
696
|
Synthetics monitor scripts can be imported using the `guid`, e.g.
|
696
697
|
|
697
|
-
|
698
|
+
bash
|
698
699
|
|
699
700
|
```sh
|
700
701
|
$ pulumi import newrelic:synthetics/scriptMonitor:ScriptMonitor monitor <guid>
|
@@ -714,9 +715,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
714
715
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
715
716
|
:param pulumi.Input[str] script: The script that the monitor runs.
|
716
717
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
717
|
-
:param pulumi.Input[str] status: The monitor status (
|
718
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
719
|
-
refrain from using this value and shift to alternatives.
|
718
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
720
719
|
: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.
|
721
720
|
|
722
721
|
The `SCRIPTED_BROWSER` monitor type supports the following additional argument:
|
@@ -735,6 +734,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
735
734
|
|
736
735
|
##### Type: `SCRIPT_API`
|
737
736
|
|
737
|
+
<!--Start PulumiCodeChooser -->
|
738
738
|
```python
|
739
739
|
import pulumi
|
740
740
|
import pulumi_newrelic as newrelic
|
@@ -756,8 +756,10 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
756
756
|
)],
|
757
757
|
type="SCRIPT_API")
|
758
758
|
```
|
759
|
+
<!--End PulumiCodeChooser -->
|
759
760
|
##### Type: `SCRIPT_BROWSER`
|
760
761
|
|
762
|
+
<!--Start PulumiCodeChooser -->
|
761
763
|
```python
|
762
764
|
import pulumi
|
763
765
|
import pulumi_newrelic as newrelic
|
@@ -780,7 +782,9 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
780
782
|
)],
|
781
783
|
type="SCRIPT_BROWSER")
|
782
784
|
```
|
785
|
+
<!--End PulumiCodeChooser -->
|
783
786
|
See additional examples.
|
787
|
+
|
784
788
|
## Additional Examples
|
785
789
|
|
786
790
|
### Create a monitor with a private location
|
@@ -791,6 +795,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
791
795
|
|
792
796
|
##### Type: `SCRIPT_API`
|
793
797
|
|
798
|
+
<!--Start PulumiCodeChooser -->
|
794
799
|
```python
|
795
800
|
import pulumi
|
796
801
|
import pulumi_newrelic as newrelic
|
@@ -815,8 +820,10 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
815
820
|
values=["some_value"],
|
816
821
|
)])
|
817
822
|
```
|
823
|
+
<!--End PulumiCodeChooser -->
|
818
824
|
##### Type: `SCRIPT_BROWSER`
|
819
825
|
|
826
|
+
<!--Start PulumiCodeChooser -->
|
820
827
|
```python
|
821
828
|
import pulumi
|
822
829
|
import pulumi_newrelic as newrelic
|
@@ -842,12 +849,13 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
842
849
|
values=["some_value"],
|
843
850
|
)])
|
844
851
|
```
|
852
|
+
<!--End PulumiCodeChooser -->
|
845
853
|
|
846
854
|
## Import
|
847
855
|
|
848
856
|
Synthetics monitor scripts can be imported using the `guid`, e.g.
|
849
857
|
|
850
|
-
|
858
|
+
bash
|
851
859
|
|
852
860
|
```sh
|
853
861
|
$ pulumi import newrelic:synthetics/scriptMonitor:ScriptMonitor monitor <guid>
|
@@ -963,9 +971,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
963
971
|
:param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
|
964
972
|
:param pulumi.Input[str] script: The script that the monitor runs.
|
965
973
|
:param pulumi.Input[str] script_language: The programing language that should execute the script.
|
966
|
-
:param pulumi.Input[str] status: The monitor status (
|
967
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
968
|
-
refrain from using this value and shift to alternatives.
|
974
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
969
975
|
: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.
|
970
976
|
|
971
977
|
The `SCRIPTED_BROWSER` monitor type supports the following additional argument:
|
@@ -1110,9 +1116,7 @@ class ScriptMonitor(pulumi.CustomResource):
|
|
1110
1116
|
@pulumi.getter
|
1111
1117
|
def status(self) -> pulumi.Output[str]:
|
1112
1118
|
"""
|
1113
|
-
The monitor status (
|
1114
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
1115
|
-
refrain from using this value and shift to alternatives.
|
1119
|
+
The monitor status (ENABLED or DISABLED).
|
1116
1120
|
"""
|
1117
1121
|
return pulumi.get(self, "status")
|
1118
1122
|
|
@@ -201,6 +201,7 @@ class SecureCredential(pulumi.CustomResource):
|
|
201
201
|
|
202
202
|
## Example Usage
|
203
203
|
|
204
|
+
<!--Start PulumiCodeChooser -->
|
204
205
|
```python
|
205
206
|
import pulumi
|
206
207
|
import pulumi_newrelic as newrelic
|
@@ -210,13 +211,14 @@ class SecureCredential(pulumi.CustomResource):
|
|
210
211
|
key="MY_KEY",
|
211
212
|
value="My value")
|
212
213
|
```
|
214
|
+
<!--End PulumiCodeChooser -->
|
213
215
|
|
214
216
|
## Import
|
215
217
|
|
216
218
|
A Synthetics secure credential can be imported using its `key`:
|
217
219
|
|
218
220
|
```sh
|
219
|
-
|
221
|
+
$ pulumi import newrelic:synthetics/secureCredential:SecureCredential foo MY_KEY
|
220
222
|
```
|
221
223
|
|
222
224
|
:param str resource_name: The name of the resource.
|
@@ -238,6 +240,7 @@ class SecureCredential(pulumi.CustomResource):
|
|
238
240
|
|
239
241
|
## Example Usage
|
240
242
|
|
243
|
+
<!--Start PulumiCodeChooser -->
|
241
244
|
```python
|
242
245
|
import pulumi
|
243
246
|
import pulumi_newrelic as newrelic
|
@@ -247,13 +250,14 @@ class SecureCredential(pulumi.CustomResource):
|
|
247
250
|
key="MY_KEY",
|
248
251
|
value="My value")
|
249
252
|
```
|
253
|
+
<!--End PulumiCodeChooser -->
|
250
254
|
|
251
255
|
## Import
|
252
256
|
|
253
257
|
A Synthetics secure credential can be imported using its `key`:
|
254
258
|
|
255
259
|
```sh
|
256
|
-
|
260
|
+
$ pulumi import newrelic:synthetics/secureCredential:SecureCredential foo MY_KEY
|
257
261
|
```
|
258
262
|
|
259
263
|
:param str resource_name: The name of the resource.
|
@@ -28,9 +28,7 @@ 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 (
|
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.
|
31
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
34
32
|
: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.
|
35
33
|
:param pulumi.Input[int] account_id: The account in which the Synthetics monitor will be created.
|
36
34
|
:param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
|
@@ -71,9 +69,7 @@ class StepMonitorArgs:
|
|
71
69
|
@pulumi.getter
|
72
70
|
def status(self) -> pulumi.Input[str]:
|
73
71
|
"""
|
74
|
-
The monitor status (
|
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.
|
72
|
+
The monitor status (ENABLED or DISABLED).
|
77
73
|
"""
|
78
74
|
return pulumi.get(self, "status")
|
79
75
|
|
@@ -190,9 +186,7 @@ class _StepMonitorState:
|
|
190
186
|
:param pulumi.Input[str] name: The name for the monitor.
|
191
187
|
: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.
|
192
188
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
193
|
-
:param pulumi.Input[str] status: The monitor status (
|
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.
|
189
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
196
190
|
: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.
|
197
191
|
:param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
|
198
192
|
"""
|
@@ -319,9 +313,7 @@ class _StepMonitorState:
|
|
319
313
|
@pulumi.getter
|
320
314
|
def status(self) -> Optional[pulumi.Input[str]]:
|
321
315
|
"""
|
322
|
-
The monitor status (
|
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.
|
316
|
+
The monitor status (ENABLED or DISABLED).
|
325
317
|
"""
|
326
318
|
return pulumi.get(self, "status")
|
327
319
|
|
@@ -374,6 +366,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
374
366
|
|
375
367
|
## Example Usage
|
376
368
|
|
369
|
+
<!--Start PulumiCodeChooser -->
|
377
370
|
```python
|
378
371
|
import pulumi
|
379
372
|
import pulumi_newrelic as newrelic
|
@@ -396,14 +389,16 @@ class StepMonitor(pulumi.CustomResource):
|
|
396
389
|
values=["some_value"],
|
397
390
|
)])
|
398
391
|
```
|
392
|
+
<!--End PulumiCodeChooser -->
|
399
393
|
See additional examples.
|
394
|
+
|
400
395
|
## Additional Examples
|
401
396
|
|
402
397
|
## Import
|
403
398
|
|
404
399
|
Synthetics step monitor scripts can be imported using the `guid`, e.g.
|
405
400
|
|
406
|
-
|
401
|
+
bash
|
407
402
|
|
408
403
|
```sh
|
409
404
|
$ pulumi import newrelic:synthetics/stepMonitor:StepMonitor monitor <guid>
|
@@ -417,9 +412,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
417
412
|
: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.
|
418
413
|
:param pulumi.Input[str] name: The name for the monitor.
|
419
414
|
: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.
|
420
|
-
:param pulumi.Input[str] status: The monitor status (
|
421
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
422
|
-
refrain from using this value and shift to alternatives.
|
415
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
423
416
|
: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.
|
424
417
|
: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.
|
425
418
|
"""
|
@@ -434,6 +427,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
434
427
|
|
435
428
|
## Example Usage
|
436
429
|
|
430
|
+
<!--Start PulumiCodeChooser -->
|
437
431
|
```python
|
438
432
|
import pulumi
|
439
433
|
import pulumi_newrelic as newrelic
|
@@ -456,14 +450,16 @@ class StepMonitor(pulumi.CustomResource):
|
|
456
450
|
values=["some_value"],
|
457
451
|
)])
|
458
452
|
```
|
453
|
+
<!--End PulumiCodeChooser -->
|
459
454
|
See additional examples.
|
455
|
+
|
460
456
|
## Additional Examples
|
461
457
|
|
462
458
|
## Import
|
463
459
|
|
464
460
|
Synthetics step monitor scripts can be imported using the `guid`, e.g.
|
465
461
|
|
466
|
-
|
462
|
+
bash
|
467
463
|
|
468
464
|
```sh
|
469
465
|
$ pulumi import newrelic:synthetics/stepMonitor:StepMonitor monitor <guid>
|
@@ -555,9 +551,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
555
551
|
:param pulumi.Input[str] name: The name for the monitor.
|
556
552
|
: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.
|
557
553
|
:param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
|
558
|
-
:param pulumi.Input[str] status: The monitor status (
|
559
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
560
|
-
refrain from using this value and shift to alternatives.
|
554
|
+
:param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
|
561
555
|
: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.
|
562
556
|
: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.
|
563
557
|
"""
|
@@ -646,9 +640,7 @@ class StepMonitor(pulumi.CustomResource):
|
|
646
640
|
@pulumi.getter
|
647
641
|
def status(self) -> pulumi.Output[str]:
|
648
642
|
"""
|
649
|
-
The monitor status (
|
650
|
-
value will soon be removed from the Terraform Provider in an upcoming release. It is highly recommended for users to
|
651
|
-
refrain from using this value and shift to alternatives.
|
643
|
+
The monitor status (ENABLED or DISABLED).
|
652
644
|
"""
|
653
645
|
return pulumi.get(self, "status")
|
654
646
|
|
pulumi_newrelic/user.py
CHANGED
@@ -184,6 +184,7 @@ class User(pulumi.CustomResource):
|
|
184
184
|
|
185
185
|
## Example Usage
|
186
186
|
|
187
|
+
<!--Start PulumiCodeChooser -->
|
187
188
|
```python
|
188
189
|
import pulumi
|
189
190
|
import pulumi_newrelic as newrelic
|
@@ -194,6 +195,7 @@ class User(pulumi.CustomResource):
|
|
194
195
|
authentication_domain_id=foo_authentication_domain.id,
|
195
196
|
user_type="CORE_USER_TIER")
|
196
197
|
```
|
198
|
+
<!--End PulumiCodeChooser -->
|
197
199
|
|
198
200
|
## Import
|
199
201
|
|
@@ -225,6 +227,7 @@ class User(pulumi.CustomResource):
|
|
225
227
|
|
226
228
|
## Example Usage
|
227
229
|
|
230
|
+
<!--Start PulumiCodeChooser -->
|
228
231
|
```python
|
229
232
|
import pulumi
|
230
233
|
import pulumi_newrelic as newrelic
|
@@ -235,6 +238,7 @@ class User(pulumi.CustomResource):
|
|
235
238
|
authentication_domain_id=foo_authentication_domain.id,
|
236
239
|
user_type="CORE_USER_TIER")
|
237
240
|
```
|
241
|
+
<!--End PulumiCodeChooser -->
|
238
242
|
|
239
243
|
## Import
|
240
244
|
|
pulumi_newrelic/workflow.py
CHANGED
@@ -399,6 +399,7 @@ class Workflow(pulumi.CustomResource):
|
|
399
399
|
## Example Usage
|
400
400
|
|
401
401
|
##### Workflow
|
402
|
+
<!--Start PulumiCodeChooser -->
|
402
403
|
```python
|
403
404
|
import pulumi
|
404
405
|
import pulumi_newrelic as newrelic
|
@@ -418,10 +419,13 @@ class Workflow(pulumi.CustomResource):
|
|
418
419
|
channel_id=newrelic_notification_channel["some_channel"]["id"],
|
419
420
|
)])
|
420
421
|
```
|
422
|
+
<!--End PulumiCodeChooser -->
|
423
|
+
|
421
424
|
## Policy-Based Workflow Example
|
422
425
|
|
423
426
|
This scenario describes one of most common ways of using workflows by defining a set of policies the workflow handles
|
424
427
|
|
428
|
+
<!--Start PulumiCodeChooser -->
|
425
429
|
```python
|
426
430
|
import pulumi
|
427
431
|
import pulumi_newrelic as newrelic
|
@@ -465,9 +469,11 @@ class Workflow(pulumi.CustomResource):
|
|
465
469
|
channel_id=webhook_channel.id,
|
466
470
|
)])
|
467
471
|
```
|
472
|
+
<!--End PulumiCodeChooser -->
|
468
473
|
|
469
474
|
### An example of a workflow with enrichments
|
470
475
|
|
476
|
+
<!--Start PulumiCodeChooser -->
|
471
477
|
```python
|
472
478
|
import pulumi
|
473
479
|
import pulumi_newrelic as newrelic
|
@@ -495,9 +501,11 @@ class Workflow(pulumi.CustomResource):
|
|
495
501
|
channel_id=newrelic_notification_channel["webhook-channel"]["id"],
|
496
502
|
)])
|
497
503
|
```
|
504
|
+
<!--End PulumiCodeChooser -->
|
498
505
|
|
499
506
|
### An example of a workflow with notification triggers
|
500
507
|
|
508
|
+
<!--Start PulumiCodeChooser -->
|
501
509
|
```python
|
502
510
|
import pulumi
|
503
511
|
import pulumi_newrelic as newrelic
|
@@ -518,6 +526,7 @@ class Workflow(pulumi.CustomResource):
|
|
518
526
|
notification_triggers=["ACTIVATED"],
|
519
527
|
)])
|
520
528
|
```
|
529
|
+
<!--End PulumiCodeChooser -->
|
521
530
|
|
522
531
|
## Additional Information
|
523
532
|
|
@@ -536,13 +545,13 @@ class Workflow(pulumi.CustomResource):
|
|
536
545
|
|
537
546
|
Workflows can be imported using the `id`, e.g.
|
538
547
|
|
539
|
-
|
548
|
+
bash
|
540
549
|
|
541
550
|
```sh
|
542
551
|
$ pulumi import newrelic:index/workflow:Workflow foo <id>
|
543
552
|
```
|
544
553
|
|
545
|
-
|
554
|
+
You can find the workflow ID from the workflow table by clicking on ... at the end of the row and choosing `Copy workflow id to clipboard`.
|
546
555
|
|
547
556
|
:param str resource_name: The name of the resource.
|
548
557
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
@@ -569,6 +578,7 @@ class Workflow(pulumi.CustomResource):
|
|
569
578
|
## Example Usage
|
570
579
|
|
571
580
|
##### Workflow
|
581
|
+
<!--Start PulumiCodeChooser -->
|
572
582
|
```python
|
573
583
|
import pulumi
|
574
584
|
import pulumi_newrelic as newrelic
|
@@ -588,10 +598,13 @@ class Workflow(pulumi.CustomResource):
|
|
588
598
|
channel_id=newrelic_notification_channel["some_channel"]["id"],
|
589
599
|
)])
|
590
600
|
```
|
601
|
+
<!--End PulumiCodeChooser -->
|
602
|
+
|
591
603
|
## Policy-Based Workflow Example
|
592
604
|
|
593
605
|
This scenario describes one of most common ways of using workflows by defining a set of policies the workflow handles
|
594
606
|
|
607
|
+
<!--Start PulumiCodeChooser -->
|
595
608
|
```python
|
596
609
|
import pulumi
|
597
610
|
import pulumi_newrelic as newrelic
|
@@ -635,9 +648,11 @@ class Workflow(pulumi.CustomResource):
|
|
635
648
|
channel_id=webhook_channel.id,
|
636
649
|
)])
|
637
650
|
```
|
651
|
+
<!--End PulumiCodeChooser -->
|
638
652
|
|
639
653
|
### An example of a workflow with enrichments
|
640
654
|
|
655
|
+
<!--Start PulumiCodeChooser -->
|
641
656
|
```python
|
642
657
|
import pulumi
|
643
658
|
import pulumi_newrelic as newrelic
|
@@ -665,9 +680,11 @@ class Workflow(pulumi.CustomResource):
|
|
665
680
|
channel_id=newrelic_notification_channel["webhook-channel"]["id"],
|
666
681
|
)])
|
667
682
|
```
|
683
|
+
<!--End PulumiCodeChooser -->
|
668
684
|
|
669
685
|
### An example of a workflow with notification triggers
|
670
686
|
|
687
|
+
<!--Start PulumiCodeChooser -->
|
671
688
|
```python
|
672
689
|
import pulumi
|
673
690
|
import pulumi_newrelic as newrelic
|
@@ -688,6 +705,7 @@ class Workflow(pulumi.CustomResource):
|
|
688
705
|
notification_triggers=["ACTIVATED"],
|
689
706
|
)])
|
690
707
|
```
|
708
|
+
<!--End PulumiCodeChooser -->
|
691
709
|
|
692
710
|
## Additional Information
|
693
711
|
|
@@ -706,13 +724,13 @@ class Workflow(pulumi.CustomResource):
|
|
706
724
|
|
707
725
|
Workflows can be imported using the `id`, e.g.
|
708
726
|
|
709
|
-
|
727
|
+
bash
|
710
728
|
|
711
729
|
```sh
|
712
730
|
$ pulumi import newrelic:index/workflow:Workflow foo <id>
|
713
731
|
```
|
714
732
|
|
715
|
-
|
733
|
+
You can find the workflow ID from the workflow table by clicking on ... at the end of the row and choosing `Copy workflow id to clipboard`.
|
716
734
|
|
717
735
|
:param str resource_name: The name of the resource.
|
718
736
|
:param WorkflowArgs args: The arguments to use to populate this resource's properties.
|
@@ -0,0 +1,89 @@
|
|
1
|
+
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=JGtADkz_crglB3eD2GkRGl_xdFIphx9W9I-r_8iwvSk,480744
|
3
|
+
pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
|
+
pulumi_newrelic/account_management.py,sha256=s6N58vHOYTkFTvJzqOgD-ccytFdHERL2s_r_itSlrXM,8845
|
5
|
+
pulumi_newrelic/alert_channel.py,sha256=PWZanRviw-SAxmrJq4t-zKv1hGVOpqlBMqVScNJedvw,21984
|
6
|
+
pulumi_newrelic/alert_condition.py,sha256=UkuP1If84rph-tUAvqciJtQ0pJkwAezuaJCeDah87eE,46660
|
7
|
+
pulumi_newrelic/alert_muting_rule.py,sha256=iQYHhcHRqgRGvz66U8IQUK1LtpGX1DYxBp1LOOYnJ8w,19231
|
8
|
+
pulumi_newrelic/alert_policy.py,sha256=LguQVqaggdNinHA9fvCInF6kv0oeYoY5u4pxcrZX8Zg,26575
|
9
|
+
pulumi_newrelic/alert_policy_channel.py,sha256=gjED_ZNMdl-SW5mPzht5bImnCQ60jinlxUIMogAzX0k,15199
|
10
|
+
pulumi_newrelic/api_access_key.py,sha256=ImnIbxvvPDRb4Lhf8uaANZYYkeKDhVet_AmUwPJyaW8,21435
|
11
|
+
pulumi_newrelic/browser_application.py,sha256=mWgprBgGaEgnT618IncS-mR5j5h2K1UyhmUa2d8L4PQ,20655
|
12
|
+
pulumi_newrelic/data_partition_rule.py,sha256=O0F6TN64NqGcmx_GWzfKpVZg8GqvjObQT6L2K3kku7E,20589
|
13
|
+
pulumi_newrelic/entity_tags.py,sha256=ijH5CxF0wVVFPmX6KVFF_ulyFMac3WsNmEl46FNB7LM,10331
|
14
|
+
pulumi_newrelic/events_to_metrics_rule.py,sha256=IrtEh-uWBgbZy8EXOG2ITo4Rf7YemQNoUe41-wcdvWo,16044
|
15
|
+
pulumi_newrelic/get_account.py,sha256=MXF-2JmA-8IJxJEhacxP5KutICDOz-tLnszpsyhZY1Q,4791
|
16
|
+
pulumi_newrelic/get_alert_channel.py,sha256=8fbAqBFL5BEXRWqTEf1RjfMnF_faYb59-ZiSf0R4-wk,5416
|
17
|
+
pulumi_newrelic/get_alert_policy.py,sha256=bXG0H6FGgPJOlSif9jcX3C281YSH7RdQLUMMeTzDhks,5795
|
18
|
+
pulumi_newrelic/get_application.py,sha256=WDsD8ZJYgBzEF3gDQ_7JBQi0KhH5On2eefIYvm-o4Wc,5452
|
19
|
+
pulumi_newrelic/get_authentication_domain.py,sha256=MSbr36jloN6OBrtOi3B7tx00UMHE5PGSY7N6kmCfq1w,3726
|
20
|
+
pulumi_newrelic/get_cloud_account.py,sha256=6ZH4EJKd496uCt1rD5wYsfZxxJTPEi0g_biuMHIRVVY,5327
|
21
|
+
pulumi_newrelic/get_entity.py,sha256=n2kX6l4YbWz6ij3YWksdm0OpCqxZOHbkUxbLwJLXSE4,15853
|
22
|
+
pulumi_newrelic/get_group.py,sha256=taAkgQqBRxv_jkwl6sD-EYqWyqThF0LSKpUeBJbD3as,5803
|
23
|
+
pulumi_newrelic/get_key_transaction.py,sha256=MVb6rIX0nEOd4IR7ynQZa0quksdkZrm2coGB_Q7j76I,4221
|
24
|
+
pulumi_newrelic/get_notification_destination.py,sha256=0xLd5ibPy8VNvBHBLss_GIXu50Zd9A8mxzeF4e9-57E,6799
|
25
|
+
pulumi_newrelic/get_obfuscation_expression.py,sha256=fSpfxkyvph20r6JD6pGtrQCIglRaADUnCoQUS3UHCI0,5007
|
26
|
+
pulumi_newrelic/get_service_level_alert_helper.py,sha256=fSlXPtnYD-CWTCbbPZmkZr_3PhXWeyRxueU3yN6dVW0,20560
|
27
|
+
pulumi_newrelic/get_test_grok_pattern.py,sha256=pzspH3YKGEfw9FL0mJZfNzXXpd1mybQ3QBW8IN7cbGQ,5644
|
28
|
+
pulumi_newrelic/get_user.py,sha256=VifwDAVSlfdN3D5rx6pTzfQTtradIBHWIa5zBogkqso,7424
|
29
|
+
pulumi_newrelic/group.py,sha256=9Rh3TCV1BAXIkXfE0ZHrwr2uZgHTG8s0CHFSwoNL0kw,21515
|
30
|
+
pulumi_newrelic/infra_alert_condition.py,sha256=Nrlexa4g2l_qgl2M4DDpEe-pxE5f6fz02oXRiqhpPM0,57796
|
31
|
+
pulumi_newrelic/log_parsing_rule.py,sha256=mvgbaPWavaoFyXqaplGVtdb226v-IkZpeMxcAGrUe2A,22582
|
32
|
+
pulumi_newrelic/monitor_downtime.py,sha256=2aCFAgYiPiO_nBXcrvNVzf6QRVzLQtAs6qkdh5aYfZg,46150
|
33
|
+
pulumi_newrelic/notification_channel.py,sha256=O54FGSeanMaJIJ9OudXUp6HfsHyUchYYXAC3WSnYI6M,46822
|
34
|
+
pulumi_newrelic/notification_destination.py,sha256=oayzxqHXi2D20EqVrAkGlc-hSgdr9yqW342tktN8aVw,29443
|
35
|
+
pulumi_newrelic/nrql_alert_condition.py,sha256=pGxEfYuC5XJzduBm06WhEbQmJvF0Za1yx21CSiBf1D4,106341
|
36
|
+
pulumi_newrelic/nrql_drop_rule.py,sha256=BOCGXd8gugGmZXFtJThzcHrKdCuXWOdFFud8X_7kyxA,17682
|
37
|
+
pulumi_newrelic/obfuscation_expression.py,sha256=kg28CSPY_H3HEvFNmX23viizOcSt24bP_KISIsB1228,12445
|
38
|
+
pulumi_newrelic/obfuscation_rule.py,sha256=ZvjFqN3tB-k7yJHUzQ5l_IMdqL3We6sdTHL2Smjn0ok,17837
|
39
|
+
pulumi_newrelic/one_dashboard.py,sha256=WV_3eumopsQ26zEzcivKMc5lLKsWQdLBQhouUgr-BEE,20490
|
40
|
+
pulumi_newrelic/one_dashboard_json.py,sha256=nol5XYIGnZImO2UfE3QbQVSMTxlC4FlVLf0VzuNALJU,12622
|
41
|
+
pulumi_newrelic/one_dashboard_raw.py,sha256=_MmaSoHiILB0Xv3dP-3m0gXRWaA1vjYSarcvPliIrUo,23274
|
42
|
+
pulumi_newrelic/outputs.py,sha256=DY1J50MRpGwv5qfFg10iurt1hvOhOam7y4ipkHqX4II,473891
|
43
|
+
pulumi_newrelic/provider.py,sha256=VPXhUfFLSVoIFew1P_oy7pHeondN5LbHsLoLqD3z7qs,19536
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=BB2nuoRbgCmufIppkKjSbeCa7oIqt8NBakO_A4QV0Pk,45
|
45
|
+
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
|
+
pulumi_newrelic/service_level.py,sha256=nq2IJWAZEenwTjYDl2CL4uHMYgcsZJAH85i18henbFg,30233
|
47
|
+
pulumi_newrelic/user.py,sha256=ZWTVBqIICHTIVwgG7J-Exy7w2f8cIuXLo63dy8v7atE,19126
|
48
|
+
pulumi_newrelic/workflow.py,sha256=u8SU6hoyxBF4euq6RaQc_qlhw4stvsIco_pNqbX03jc,42000
|
49
|
+
pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
|
50
|
+
pulumi_newrelic/cloud/_inputs.py,sha256=b8GQn6Yk8JhTcIttEAiWyYDw0E_QSW2eNQb3UFYLTYk,332136
|
51
|
+
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=hLMpWgL21NsNGm5EfMi4cmNwskBkmpmfdITRaYGyJGA,62204
|
52
|
+
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=Z1hPaVcQCi1_qXKf1waF77P1EYsoH0Ec9Desrt7jkqw,20917
|
53
|
+
pulumi_newrelic/cloud/aws_integrations.py,sha256=-urogp0hG97UYZ3G1nz6qOIk089jgNkbQSgcTZiP0zk,180803
|
54
|
+
pulumi_newrelic/cloud/aws_link_account.py,sha256=qSue-HpIIxfJQpTOiWeQXkmntpS4wSFX0o5TqEDmRdY,15585
|
55
|
+
pulumi_newrelic/cloud/azure_integrations.py,sha256=1CmlVDFoHfPemtn4dCu6r1p5PpRVnjxnPaRp3z4K9GE,109502
|
56
|
+
pulumi_newrelic/cloud/azure_link_account.py,sha256=K9S-P9kMCn8lklvXj4zpgEvcfRDrqKJuDDqsEe8uX0I,18621
|
57
|
+
pulumi_newrelic/cloud/gcp_integrations.py,sha256=uKGdHtByLnImfR-K_VleioPNAWC5qLQ9yeNFMqOOSJw,83578
|
58
|
+
pulumi_newrelic/cloud/gcp_link_account.py,sha256=TdtXeUEa2bKFUZnHxKnaDpBW78W9hfLonMaTw5Mi5jI,12521
|
59
|
+
pulumi_newrelic/cloud/outputs.py,sha256=URkzIYZ5x8OJSTkR6CLawyqP2GT0R4eEIlsiA2RQwKg,353792
|
60
|
+
pulumi_newrelic/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
61
|
+
pulumi_newrelic/config/__init__.pyi,sha256=8n6XwrQvqjl4HY1_XELEwc9YzT87qKE_XNuwTuxE1s8,845
|
62
|
+
pulumi_newrelic/config/vars.py,sha256=LoerUF1FfCG5xvxTF5mWFEP5ClRaMAK8KdgJiPmchp4,2110
|
63
|
+
pulumi_newrelic/insights/__init__.py,sha256=-tPATEB7zs4lUfIRTT0wNnN9a7uvXHsRi315Y9-rm30,335
|
64
|
+
pulumi_newrelic/insights/_inputs.py,sha256=_N6liJuXjt9GK3HWgA94q0fLjAckJd6Ou5ntAO0atNA,4324
|
65
|
+
pulumi_newrelic/insights/event.py,sha256=OGFe9Z0aRRQTYokCS6fN1HqUU4SITjr2m3TLhLsRODA,10210
|
66
|
+
pulumi_newrelic/insights/outputs.py,sha256=Rsw2x8EcSF_LE4pt_9jJtoF_ut0D1S4cRCxPzCIBVsU,3335
|
67
|
+
pulumi_newrelic/plugins/__init__.py,sha256=UeoukmKyu6Xm6K4W4z5N_CzyB634ttFEcP7GH9nTyeA,374
|
68
|
+
pulumi_newrelic/plugins/_inputs.py,sha256=b7IKzTFR-FIfze1pBJTRzorpBmXjjjnF6Y0YEWHg5q8,17148
|
69
|
+
pulumi_newrelic/plugins/application_settings.py,sha256=BKJfmPz-f5IvhSVWaFKua-C-lRs9OLKE3i36M2shtWI,16195
|
70
|
+
pulumi_newrelic/plugins/outputs.py,sha256=tC2nwOR7WwyxhXt5IRgjNcJxTE7411QCzz4kx4D-xqM,16961
|
71
|
+
pulumi_newrelic/plugins/workload.py,sha256=p-ff2bqWLZcmpaDKjdZICgdm0yjRxRo9IhnHC0RXkX8,36362
|
72
|
+
pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
|
73
|
+
pulumi_newrelic/synthetics/_inputs.py,sha256=F8ecjlj2j3gv0oWwFNYGht9gktjMDumW-_hxoz852UE,13597
|
74
|
+
pulumi_newrelic/synthetics/alert_condition.py,sha256=ngkIeaXtjCYl-Rw7Qyoo9RYXzts0UX_4Vojlw9taZHk,21478
|
75
|
+
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=PrNTKxMUaHvkM7tpQvUnj-tI6moLhzmjwDltQuJG0W4,30442
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=4myLSJVcRbBDbLNpbssfPloK2H1F_n7bDvcy-T9qNso,32538
|
77
|
+
pulumi_newrelic/synthetics/get_private_location.py,sha256=uN_Tq4sjJVbiS0QCxNjEesZVGuZfIDk63FCauArTWQ0,6067
|
78
|
+
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=RpMMEU2-hCoKZ8oT0rrCq8Rk0skr90NQtuEpM9L-T3M,5619
|
79
|
+
pulumi_newrelic/synthetics/monitor.py,sha256=upmGkp6ZfE4aaYEol05WXQJiXaFPxhOzWiRh0Q6XueI,63966
|
80
|
+
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=di1V2yKwIbpTB8Gj3Ab5Ei09VyQy94wChR11cCOPbiY,35063
|
81
|
+
pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
|
82
|
+
pulumi_newrelic/synthetics/private_location.py,sha256=sfKNs1-BdEdbrvAsG7N07p6OY1NsY7IiAvpFJjm8a6E,17325
|
83
|
+
pulumi_newrelic/synthetics/script_monitor.py,sha256=0xaDofutIIa8d14pbLwnjTduwbR_F5mKCB6hz7ExRZE,53295
|
84
|
+
pulumi_newrelic/synthetics/secure_credential.py,sha256=zniaAb_wXwph3sPSxo_aU--DIgAl7TUR90-DxRBLhac,15758
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=UtadLi6ahIVbyoVpg7eWOw-ncgOPncumMfmZMRLqFv8,33386
|
86
|
+
pulumi_newrelic-5.21.0.dist-info/METADATA,sha256=-ByJnxLBSMlGJOkKwKDtqUdkSj5qYpDa2aEeHjErpAA,3889
|
87
|
+
pulumi_newrelic-5.21.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
+
pulumi_newrelic-5.21.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.21.0.dist-info/RECORD,,
|