pulumi-newrelic 5.23.0a1713333809__py3-none-any.whl → 5.23.0a1713975814__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 +110 -270
- pulumi_newrelic/account_management.py +20 -20
- pulumi_newrelic/alert_channel.py +76 -92
- pulumi_newrelic/alert_condition.py +104 -149
- pulumi_newrelic/alert_muting_rule.py +33 -35
- pulumi_newrelic/alert_policy.py +68 -43
- pulumi_newrelic/alert_policy_channel.py +12 -8
- pulumi_newrelic/cloud/_inputs.py +322 -1072
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +4 -6
- pulumi_newrelic/cloud/aws_integrations.py +13 -15
- pulumi_newrelic/cloud/aws_link_account.py +4 -6
- pulumi_newrelic/cloud/azure_integrations.py +10 -12
- pulumi_newrelic/cloud/azure_link_account.py +4 -6
- pulumi_newrelic/cloud/gcp_integrations.py +6 -6
- pulumi_newrelic/cloud/gcp_link_account.py +4 -6
- pulumi_newrelic/cloud/outputs.py +322 -1072
- pulumi_newrelic/data_partition_rule.py +0 -4
- pulumi_newrelic/entity_tags.py +13 -17
- pulumi_newrelic/events_to_metrics_rule.py +2 -4
- pulumi_newrelic/get_account.py +0 -4
- pulumi_newrelic/get_application.py +8 -10
- pulumi_newrelic/get_authentication_domain.py +4 -8
- pulumi_newrelic/get_cloud_account.py +0 -4
- pulumi_newrelic/get_entity.py +28 -32
- pulumi_newrelic/get_group.py +42 -8
- pulumi_newrelic/get_key_transaction.py +8 -10
- pulumi_newrelic/get_obfuscation_expression.py +2 -4
- pulumi_newrelic/get_service_level_alert_helper.py +22 -46
- pulumi_newrelic/get_test_grok_pattern.py +4 -6
- pulumi_newrelic/get_user.py +0 -4
- pulumi_newrelic/group.py +40 -42
- pulumi_newrelic/infra_alert_condition.py +154 -131
- pulumi_newrelic/insights/event.py +8 -25
- pulumi_newrelic/log_parsing_rule.py +6 -10
- pulumi_newrelic/monitor_downtime.py +174 -193
- pulumi_newrelic/notification_channel.py +124 -150
- pulumi_newrelic/nrql_alert_condition.py +38 -48
- pulumi_newrelic/nrql_drop_rule.py +34 -38
- pulumi_newrelic/obfuscation_expression.py +2 -4
- pulumi_newrelic/obfuscation_rule.py +4 -4
- pulumi_newrelic/one_dashboard.py +42 -48
- pulumi_newrelic/one_dashboard_raw.py +86 -86
- pulumi_newrelic/outputs.py +110 -270
- pulumi_newrelic/plugins/_inputs.py +16 -16
- pulumi_newrelic/plugins/application_settings.py +6 -8
- pulumi_newrelic/plugins/outputs.py +16 -16
- pulumi_newrelic/plugins/workload.py +158 -40
- pulumi_newrelic/service_level.py +38 -123
- pulumi_newrelic/synthetics/alert_condition.py +34 -64
- pulumi_newrelic/synthetics/broken_links_monitor.py +18 -20
- pulumi_newrelic/synthetics/cert_check_monitor.py +16 -18
- pulumi_newrelic/synthetics/get_private_location.py +0 -8
- pulumi_newrelic/synthetics/get_secure_credential.py +0 -12
- pulumi_newrelic/synthetics/monitor.py +48 -52
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +69 -83
- pulumi_newrelic/synthetics/private_location.py +6 -6
- pulumi_newrelic/synthetics/script_monitor.py +38 -42
- pulumi_newrelic/synthetics/secure_credential.py +25 -22
- pulumi_newrelic/synthetics/step_monitor.py +18 -20
- pulumi_newrelic/user.py +8 -10
- pulumi_newrelic/workflow.py +20 -24
- {pulumi_newrelic-5.23.0a1713333809.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.23.0a1713975814.dist-info/RECORD +89 -0
- pulumi_newrelic-5.23.0a1713333809.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.23.0a1713333809.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.23.0a1713333809.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/top_level.txt +0 -0
pulumi_newrelic/workflow.py
CHANGED
@@ -399,12 +399,12 @@ class Workflow(pulumi.CustomResource):
|
|
399
399
|
## Example Usage
|
400
400
|
|
401
401
|
##### Workflow
|
402
|
-
<!--Start PulumiCodeChooser -->
|
403
402
|
```python
|
404
403
|
import pulumi
|
405
404
|
import pulumi_newrelic as newrelic
|
406
405
|
|
407
406
|
foo = newrelic.Workflow("foo",
|
407
|
+
name="workflow-example",
|
408
408
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
409
409
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
410
410
|
name="filter-name",
|
@@ -416,24 +416,23 @@ class Workflow(pulumi.CustomResource):
|
|
416
416
|
)],
|
417
417
|
),
|
418
418
|
destinations=[newrelic.WorkflowDestinationArgs(
|
419
|
-
channel_id=
|
419
|
+
channel_id=some_channel["id"],
|
420
420
|
)])
|
421
421
|
```
|
422
|
-
<!--End PulumiCodeChooser -->
|
423
422
|
|
424
423
|
## Policy-Based Workflow Example
|
425
424
|
|
426
425
|
This scenario describes one of most common ways of using workflows by defining a set of policies the workflow handles
|
427
426
|
|
428
|
-
<!--Start PulumiCodeChooser -->
|
429
427
|
```python
|
430
428
|
import pulumi
|
431
429
|
import pulumi_newrelic as newrelic
|
432
430
|
|
433
431
|
# Create a policy to track
|
434
|
-
my_policy = newrelic.AlertPolicy("my-policy")
|
432
|
+
my_policy = newrelic.AlertPolicy("my-policy", name="my_policy")
|
435
433
|
# Create a reusable notification destination
|
436
434
|
webhook_destination = newrelic.NotificationDestination("webhook-destination",
|
435
|
+
name="destination-webhook",
|
437
436
|
type="WEBHOOK",
|
438
437
|
properties=[newrelic.NotificationDestinationPropertyArgs(
|
439
438
|
key="url",
|
@@ -445,6 +444,7 @@ class Workflow(pulumi.CustomResource):
|
|
445
444
|
))
|
446
445
|
# Create a notification channel to use in the workflow
|
447
446
|
webhook_channel = newrelic.NotificationChannel("webhook-channel",
|
447
|
+
name="channel-webhook",
|
448
448
|
type="WEBHOOK",
|
449
449
|
destination_id=webhook_destination.id,
|
450
450
|
product="IINT",
|
@@ -455,6 +455,7 @@ class Workflow(pulumi.CustomResource):
|
|
455
455
|
)])
|
456
456
|
# A workflow that matches issues that include incidents triggered by the policy
|
457
457
|
workflow_example = newrelic.Workflow("workflow-example",
|
458
|
+
name="workflow-example",
|
458
459
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
459
460
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
460
461
|
name="Filter-name",
|
@@ -469,16 +470,15 @@ class Workflow(pulumi.CustomResource):
|
|
469
470
|
channel_id=webhook_channel.id,
|
470
471
|
)])
|
471
472
|
```
|
472
|
-
<!--End PulumiCodeChooser -->
|
473
473
|
|
474
474
|
### An example of a workflow with enrichments
|
475
475
|
|
476
|
-
<!--Start PulumiCodeChooser -->
|
477
476
|
```python
|
478
477
|
import pulumi
|
479
478
|
import pulumi_newrelic as newrelic
|
480
479
|
|
481
480
|
workflow_example = newrelic.Workflow("workflow-example",
|
481
|
+
name="workflow-enrichment-example",
|
482
482
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
483
483
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
484
484
|
name="Filter-name",
|
@@ -498,19 +498,18 @@ class Workflow(pulumi.CustomResource):
|
|
498
498
|
)],
|
499
499
|
),
|
500
500
|
destinations=[newrelic.WorkflowDestinationArgs(
|
501
|
-
channel_id=
|
501
|
+
channel_id=webhook_channel["id"],
|
502
502
|
)])
|
503
503
|
```
|
504
|
-
<!--End PulumiCodeChooser -->
|
505
504
|
|
506
505
|
### An example of a workflow with notification triggers
|
507
506
|
|
508
|
-
<!--Start PulumiCodeChooser -->
|
509
507
|
```python
|
510
508
|
import pulumi
|
511
509
|
import pulumi_newrelic as newrelic
|
512
510
|
|
513
511
|
workflow_example = newrelic.Workflow("workflow-example",
|
512
|
+
name="workflow-enrichment-example",
|
514
513
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
515
514
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
516
515
|
name="Filter-name",
|
@@ -522,11 +521,10 @@ class Workflow(pulumi.CustomResource):
|
|
522
521
|
)],
|
523
522
|
),
|
524
523
|
destinations=[newrelic.WorkflowDestinationArgs(
|
525
|
-
channel_id=
|
524
|
+
channel_id=webhook_channel["id"],
|
526
525
|
notification_triggers=["ACTIVATED"],
|
527
526
|
)])
|
528
527
|
```
|
529
|
-
<!--End PulumiCodeChooser -->
|
530
528
|
|
531
529
|
## Additional Information
|
532
530
|
|
@@ -578,12 +576,12 @@ class Workflow(pulumi.CustomResource):
|
|
578
576
|
## Example Usage
|
579
577
|
|
580
578
|
##### Workflow
|
581
|
-
<!--Start PulumiCodeChooser -->
|
582
579
|
```python
|
583
580
|
import pulumi
|
584
581
|
import pulumi_newrelic as newrelic
|
585
582
|
|
586
583
|
foo = newrelic.Workflow("foo",
|
584
|
+
name="workflow-example",
|
587
585
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
588
586
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
589
587
|
name="filter-name",
|
@@ -595,24 +593,23 @@ class Workflow(pulumi.CustomResource):
|
|
595
593
|
)],
|
596
594
|
),
|
597
595
|
destinations=[newrelic.WorkflowDestinationArgs(
|
598
|
-
channel_id=
|
596
|
+
channel_id=some_channel["id"],
|
599
597
|
)])
|
600
598
|
```
|
601
|
-
<!--End PulumiCodeChooser -->
|
602
599
|
|
603
600
|
## Policy-Based Workflow Example
|
604
601
|
|
605
602
|
This scenario describes one of most common ways of using workflows by defining a set of policies the workflow handles
|
606
603
|
|
607
|
-
<!--Start PulumiCodeChooser -->
|
608
604
|
```python
|
609
605
|
import pulumi
|
610
606
|
import pulumi_newrelic as newrelic
|
611
607
|
|
612
608
|
# Create a policy to track
|
613
|
-
my_policy = newrelic.AlertPolicy("my-policy")
|
609
|
+
my_policy = newrelic.AlertPolicy("my-policy", name="my_policy")
|
614
610
|
# Create a reusable notification destination
|
615
611
|
webhook_destination = newrelic.NotificationDestination("webhook-destination",
|
612
|
+
name="destination-webhook",
|
616
613
|
type="WEBHOOK",
|
617
614
|
properties=[newrelic.NotificationDestinationPropertyArgs(
|
618
615
|
key="url",
|
@@ -624,6 +621,7 @@ class Workflow(pulumi.CustomResource):
|
|
624
621
|
))
|
625
622
|
# Create a notification channel to use in the workflow
|
626
623
|
webhook_channel = newrelic.NotificationChannel("webhook-channel",
|
624
|
+
name="channel-webhook",
|
627
625
|
type="WEBHOOK",
|
628
626
|
destination_id=webhook_destination.id,
|
629
627
|
product="IINT",
|
@@ -634,6 +632,7 @@ class Workflow(pulumi.CustomResource):
|
|
634
632
|
)])
|
635
633
|
# A workflow that matches issues that include incidents triggered by the policy
|
636
634
|
workflow_example = newrelic.Workflow("workflow-example",
|
635
|
+
name="workflow-example",
|
637
636
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
638
637
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
639
638
|
name="Filter-name",
|
@@ -648,16 +647,15 @@ class Workflow(pulumi.CustomResource):
|
|
648
647
|
channel_id=webhook_channel.id,
|
649
648
|
)])
|
650
649
|
```
|
651
|
-
<!--End PulumiCodeChooser -->
|
652
650
|
|
653
651
|
### An example of a workflow with enrichments
|
654
652
|
|
655
|
-
<!--Start PulumiCodeChooser -->
|
656
653
|
```python
|
657
654
|
import pulumi
|
658
655
|
import pulumi_newrelic as newrelic
|
659
656
|
|
660
657
|
workflow_example = newrelic.Workflow("workflow-example",
|
658
|
+
name="workflow-enrichment-example",
|
661
659
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
662
660
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
663
661
|
name="Filter-name",
|
@@ -677,19 +675,18 @@ class Workflow(pulumi.CustomResource):
|
|
677
675
|
)],
|
678
676
|
),
|
679
677
|
destinations=[newrelic.WorkflowDestinationArgs(
|
680
|
-
channel_id=
|
678
|
+
channel_id=webhook_channel["id"],
|
681
679
|
)])
|
682
680
|
```
|
683
|
-
<!--End PulumiCodeChooser -->
|
684
681
|
|
685
682
|
### An example of a workflow with notification triggers
|
686
683
|
|
687
|
-
<!--Start PulumiCodeChooser -->
|
688
684
|
```python
|
689
685
|
import pulumi
|
690
686
|
import pulumi_newrelic as newrelic
|
691
687
|
|
692
688
|
workflow_example = newrelic.Workflow("workflow-example",
|
689
|
+
name="workflow-enrichment-example",
|
693
690
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
694
691
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
695
692
|
name="Filter-name",
|
@@ -701,11 +698,10 @@ class Workflow(pulumi.CustomResource):
|
|
701
698
|
)],
|
702
699
|
),
|
703
700
|
destinations=[newrelic.WorkflowDestinationArgs(
|
704
|
-
channel_id=
|
701
|
+
channel_id=webhook_channel["id"],
|
705
702
|
notification_triggers=["ACTIVATED"],
|
706
703
|
)])
|
707
704
|
```
|
708
|
-
<!--End PulumiCodeChooser -->
|
709
705
|
|
710
706
|
## Additional Information
|
711
707
|
|
@@ -0,0 +1,89 @@
|
|
1
|
+
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=xVuguSu3MlcWWk9oObtOVHoYTdIRKmo4FAR8sqvINYQ,466979
|
3
|
+
pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
|
+
pulumi_newrelic/account_management.py,sha256=8mWtlTu8uP0x-4CVfAVL5kjuElnyNUeLHBqVNfIcyQc,8817
|
5
|
+
pulumi_newrelic/alert_channel.py,sha256=4sodQakUyfi7kCLMkyN6mqCJbGjwPalyScDfEvLenlw,20130
|
6
|
+
pulumi_newrelic/alert_condition.py,sha256=uVd-DZSxGW1BLS9jaCWobzCeQVWrX_tpkxJd1H2bDak,41574
|
7
|
+
pulumi_newrelic/alert_muting_rule.py,sha256=i4Ax9ybThjqOutwkHnTDCBT6FZcRNDCiQRAbRA7c7l8,18756
|
8
|
+
pulumi_newrelic/alert_policy.py,sha256=nAxaV_q0qfKiF1zOsxIxCRAMrE_xZhAErXTo8LXsIfI,26057
|
9
|
+
pulumi_newrelic/alert_policy_channel.py,sha256=xAiVGoYn-4W0P-84V0O24DebBJ5WnEZsB7Fcynod9G0,15477
|
10
|
+
pulumi_newrelic/api_access_key.py,sha256=ImnIbxvvPDRb4Lhf8uaANZYYkeKDhVet_AmUwPJyaW8,21435
|
11
|
+
pulumi_newrelic/browser_application.py,sha256=qV2660Zxy_hcI6qzL63WdxjU86QvPcsnBLjIu6jXsCg,21042
|
12
|
+
pulumi_newrelic/data_partition_rule.py,sha256=o0BKu1wud-9x3vZounbAJWumyXwwMw32vMvfzcka8Ls,20433
|
13
|
+
pulumi_newrelic/entity_tags.py,sha256=LdyMTlvgc1gQrHJZbVPIa4IaPUJrgy7EJxuy-bOxiXM,10029
|
14
|
+
pulumi_newrelic/events_to_metrics_rule.py,sha256=zG-TgPbiQWdsdbThAQK51DbDYoPvKrKjI0ZWPN85Ww0,15990
|
15
|
+
pulumi_newrelic/get_account.py,sha256=9UzKNb5Jjy97owe2HwcNx-fsUxPEel_V3anKifTC5Vo,4651
|
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=QYmrFyNQVE0zwNZqyTUJoyr3eVvzUCb7JJGP_54ZNQM,5274
|
19
|
+
pulumi_newrelic/get_authentication_domain.py,sha256=wy5i9vGaNqYofpBE7gLrwmJAaM-NkdMglOK0lprSFjM,3498
|
20
|
+
pulumi_newrelic/get_cloud_account.py,sha256=8yAYziHYdHd1wIfNggdgI_wLq39amS3_f4eW-a-_hMY,5187
|
21
|
+
pulumi_newrelic/get_entity.py,sha256=HSdSIT7Vlq2NkxHftz0g5Givm9yz_f904Nso1ZMbu4Q,17826
|
22
|
+
pulumi_newrelic/get_group.py,sha256=pjW9nJr7tPPyi5YKev_VRyccEmQ_qGd6J8ZyWVxy33g,7783
|
23
|
+
pulumi_newrelic/get_key_transaction.py,sha256=E9z8R6wWYQiUS7PH3UOkLcmK0OfjWH2z0eClyF0nEdk,4043
|
24
|
+
pulumi_newrelic/get_notification_destination.py,sha256=0xLd5ibPy8VNvBHBLss_GIXu50Zd9A8mxzeF4e9-57E,6799
|
25
|
+
pulumi_newrelic/get_obfuscation_expression.py,sha256=hCE-wwCU7lej_Pw15i8lfvkUmHQQhWAidpi82ZitIss,4917
|
26
|
+
pulumi_newrelic/get_service_level_alert_helper.py,sha256=l72tQXioD-T_aNC6kVZbbB4lJgN-94i3Uw1fjxUExFo,18514
|
27
|
+
pulumi_newrelic/get_test_grok_pattern.py,sha256=urF_I5IB_XA9BCvM9Ee0o1bqb1NCPbXF-HiWtHKP_4E,5538
|
28
|
+
pulumi_newrelic/get_user.py,sha256=QxI7LiKvkiBOc-Ovj3ySFzD1l2SrGO1Y7-xnrGhfP3A,7284
|
29
|
+
pulumi_newrelic/group.py,sha256=ifVMSVvNIQ4YtoRXIBCpzu7jy3AsEt0iQAFC4M3Rb8g,20907
|
30
|
+
pulumi_newrelic/infra_alert_condition.py,sha256=cGdWtqvz7Ld5JesxiH3rV5YbM2yYEJALTijUZq0qr3g,55350
|
31
|
+
pulumi_newrelic/log_parsing_rule.py,sha256=Ps-UJnwoOo7TBMslGcZ1EcZVKDvQQYBgn2LHh-Kvl8E,22408
|
32
|
+
pulumi_newrelic/monitor_downtime.py,sha256=s8uoNz56k4wkJlA4rPX2DADtFKPbWKwgMITWReYtw-w,40928
|
33
|
+
pulumi_newrelic/notification_channel.py,sha256=qy-eLwW6xA857SMH4WJ-nmiFse1WpVTp4IJvZEwUQfo,45688
|
34
|
+
pulumi_newrelic/notification_destination.py,sha256=oayzxqHXi2D20EqVrAkGlc-hSgdr9yqW342tktN8aVw,29443
|
35
|
+
pulumi_newrelic/nrql_alert_condition.py,sha256=y5IQOybMgrrxu8rWws5EtldfcLUZGA01KBOJdWBOZe8,105429
|
36
|
+
pulumi_newrelic/nrql_drop_rule.py,sha256=cl8nfgktPfJla-o08reMG_XsHvSrK7BMQPbH4BS2Kmk,16861
|
37
|
+
pulumi_newrelic/obfuscation_expression.py,sha256=xKG8CiFqJq7Fi1nN5xpjDK3poMwmWPakhuZHlk3vYGk,12339
|
38
|
+
pulumi_newrelic/obfuscation_rule.py,sha256=twPhKLnjSBbFxo1-uXryxNlXMrGIfs96PayPcsPTH7w,17809
|
39
|
+
pulumi_newrelic/one_dashboard.py,sha256=l2yM7Hyv7pwSmUeaJdFyXylcZu8aozJZ4f3e7RHg-8Y,18619
|
40
|
+
pulumi_newrelic/one_dashboard_json.py,sha256=nol5XYIGnZImO2UfE3QbQVSMTxlC4FlVLf0VzuNALJU,12622
|
41
|
+
pulumi_newrelic/one_dashboard_raw.py,sha256=mNTkXiLiQhRbR3K1xgeDNuHfqfh1Wdjo1aIhc_YuP0g,23542
|
42
|
+
pulumi_newrelic/outputs.py,sha256=PoQWsY4-0WiTA9hsDmhUqesLgXy5Kzh2HMqQ4fBtzNE,460532
|
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=n5i7XeyVSnFVZgDm3C9PoHmR70BE0n4S25bl06rVQ2U,25131
|
47
|
+
pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
|
48
|
+
pulumi_newrelic/workflow.py,sha256=RGz9iH2pJsEKHsD49VGIrOzVwDoyClDtqpGKY5hKIoY,41706
|
49
|
+
pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
|
50
|
+
pulumi_newrelic/cloud/_inputs.py,sha256=PFxNJ_jznxsz2yI12uFYQMjQOI2SoHg0Q8CVieaq5SU,294585
|
51
|
+
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=hLMpWgL21NsNGm5EfMi4cmNwskBkmpmfdITRaYGyJGA,62204
|
52
|
+
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=9qnBNpfeY5g-1omrIV4cf80iQK3bYzVze552CcC9d-g,20827
|
53
|
+
pulumi_newrelic/cloud/aws_integrations.py,sha256=BXXnrRzkaWJBl_QUoRjhtQNFfTv4vHC3f0w6Y-wubT0,178549
|
54
|
+
pulumi_newrelic/cloud/aws_link_account.py,sha256=AW3QatCvWuJngSH90XNq0F-5-3KdEJhqR7ApRwSTWTY,15495
|
55
|
+
pulumi_newrelic/cloud/azure_integrations.py,sha256=9Wzkx5TjdXiZKiMDlEok628lTOIYFZnMAX_uajpUcy4,109298
|
56
|
+
pulumi_newrelic/cloud/azure_link_account.py,sha256=mMOVLFsyXt1JF7LC7Iv7RmDHqOMntE6jTyhlLIjoV0Y,18559
|
57
|
+
pulumi_newrelic/cloud/gcp_integrations.py,sha256=SJ4_Wqrz5ZSn6DLNLcpVdiwSfgnqLDg4GKUJPIwMGss,83502
|
58
|
+
pulumi_newrelic/cloud/gcp_link_account.py,sha256=MLYxn_IyYZm5eaA6R1V4LsyES1h-rte68X4QvCfDMjI,12431
|
59
|
+
pulumi_newrelic/cloud/outputs.py,sha256=Ow4BSp_VDxtvyYGpChi54fvOeBSUoyQ_kEBn1t1F-eQ,316241
|
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=5uSl7ondJNTXc0ypv3sEBcdDPuuHUSHQRVXjbf20ROo,8896
|
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=VDptQjNnRhoeXubaDScaWrzj3SGZdnB5AIHd6CouIwA,16378
|
69
|
+
pulumi_newrelic/plugins/application_settings.py,sha256=gih1hG-Rh786Uqj-csmAeOJVeUGVcIONts_KZrra2gw,16324
|
70
|
+
pulumi_newrelic/plugins/outputs.py,sha256=rfN6vYax3n2ngC5dvVZ71FtiR0Az6LN9JQQlMWhs_QI,16191
|
71
|
+
pulumi_newrelic/plugins/workload.py,sha256=OPe_c1uv23gwzi7fcu93ym2jlvLWOBz_7ZoajwT9FhA,39626
|
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=yztIVICh0pJBm7iX6Noj4o6YU3AjsC4mRuX_Ypxfioc,20139
|
75
|
+
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=6M45n6GDnhXhN38M2RkigyNWPEs4hVi4jb8AltD9dto,39073
|
76
|
+
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=35uHyBVss7Pu9yVGgMhJnRWKutKcedT4-Av0zPfKJSs,41161
|
77
|
+
pulumi_newrelic/synthetics/get_private_location.py,sha256=Phsn8ZDUJhSvJLdXEowWPoS-VBm1nRcgLNwMIduxKSw,5787
|
78
|
+
pulumi_newrelic/synthetics/get_secure_credential.py,sha256=DiAHgm0pXM9G-5knB8KlGswZ5ZZxDwh356cUH6D0d18,4839
|
79
|
+
pulumi_newrelic/synthetics/monitor.py,sha256=E3lJkr1SPcdpoQtmvE5Z3iZ28Wj4hCZ9vWFPcEfLPbA,63714
|
80
|
+
pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=ReXKwWRU8-HOP_Gbdczcw43fY-nMXNaiZEv63OGZ628,31073
|
81
|
+
pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
|
82
|
+
pulumi_newrelic/synthetics/private_location.py,sha256=BluQDtDlZIB_cS8bElkn80Szd_rLEmOzRocFIcRMCoQ,17299
|
83
|
+
pulumi_newrelic/synthetics/script_monitor.py,sha256=r6x4DkgvJhlpKqwuenbPQymM0UUMIq_3V2ceHg8176c,53043
|
84
|
+
pulumi_newrelic/synthetics/secure_credential.py,sha256=ZRn9HLFuwBPIS-kCoe-HvqogKnlhgBzZ4hAy3J0mpaY,15238
|
85
|
+
pulumi_newrelic/synthetics/step_monitor.py,sha256=O6E8TWO-Fgy9OE0B2bN1mTvudq2hfk6h9HRpSHv0hjU,44357
|
86
|
+
pulumi_newrelic-5.23.0a1713975814.dist-info/METADATA,sha256=3hu5syXYNIKF5ArxNdfIuWcElcDp2Lz4ARijFLmF3d8,3900
|
87
|
+
pulumi_newrelic-5.23.0a1713975814.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
+
pulumi_newrelic-5.23.0a1713975814.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.23.0a1713975814.dist-info/RECORD,,
|
@@ -1,89 +0,0 @@
|
|
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=WIrb4_pHIDIF93tAyy9XnkUZ9f0A8lbPcDr3Ac3ZjTM,46891
|
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=qV2660Zxy_hcI6qzL63WdxjU86QvPcsnBLjIu6jXsCg,21042
|
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=an0mLczWPgByLz296CUciT20pNEkxQKCD2FKAIkjfuk,17684
|
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=u6LSmztiG5OzkeAXpVxyFlKJxUhEwOMk79bcyK5GOhU,57887
|
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=ZPXYLqp8pgGBK2Tz0nS3890hfRM_j3dx1VETFoxrreY,16426
|
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=9vUJWecupf9RR0u7mBoihpSAbUI_8kmljFIpUtaZDoc,21709
|
75
|
-
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=sfor-foN-nRGyf2FObu21j8xcm1mbFKmGwZVdZklLB4,39239
|
76
|
-
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=ySNLlqY6s_3xdkaiW9NnCc_dDqyZtRTAw7QXmdiqLZU,41331
|
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=SaBC-fyz25C8vTSBIiDpFeXk5T5UGnMQ-1oW3sOjr6o,44597
|
86
|
-
pulumi_newrelic-5.23.0a1713333809.dist-info/METADATA,sha256=UrhZsjLmWH3xlGNGTRXoQPeuY0rjAW28mPfjxEcgoqc,3900
|
87
|
-
pulumi_newrelic-5.23.0a1713333809.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
-
pulumi_newrelic-5.23.0a1713333809.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
-
pulumi_newrelic-5.23.0a1713333809.dist-info/RECORD,,
|
{pulumi_newrelic-5.23.0a1713333809.dist-info → pulumi_newrelic-5.23.0a1713975814.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|