pulumi-newrelic 5.23.0__py3-none-any.whl → 5.23.0a1711605988__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 +270 -183
- pulumi_newrelic/account_management.py +20 -20
- pulumi_newrelic/alert_channel.py +92 -76
- pulumi_newrelic/alert_condition.py +163 -104
- pulumi_newrelic/alert_muting_rule.py +35 -33
- pulumi_newrelic/alert_policy.py +43 -68
- pulumi_newrelic/alert_policy_channel.py +8 -12
- pulumi_newrelic/cloud/_inputs.py +1072 -322
- pulumi_newrelic/cloud/aws_govcloud_link_account.py +6 -4
- pulumi_newrelic/cloud/aws_integrations.py +15 -13
- pulumi_newrelic/cloud/aws_link_account.py +6 -4
- pulumi_newrelic/cloud/azure_integrations.py +12 -10
- pulumi_newrelic/cloud/azure_link_account.py +6 -4
- pulumi_newrelic/cloud/gcp_integrations.py +6 -6
- pulumi_newrelic/cloud/gcp_link_account.py +6 -4
- pulumi_newrelic/cloud/outputs.py +1072 -322
- pulumi_newrelic/data_partition_rule.py +4 -0
- pulumi_newrelic/entity_tags.py +17 -13
- pulumi_newrelic/events_to_metrics_rule.py +4 -2
- pulumi_newrelic/get_account.py +4 -0
- pulumi_newrelic/get_application.py +10 -8
- pulumi_newrelic/get_authentication_domain.py +8 -4
- pulumi_newrelic/get_cloud_account.py +4 -0
- pulumi_newrelic/get_entity.py +33 -48
- pulumi_newrelic/get_group.py +8 -42
- pulumi_newrelic/get_key_transaction.py +10 -8
- pulumi_newrelic/get_notification_destination.py +1 -20
- pulumi_newrelic/get_obfuscation_expression.py +4 -2
- pulumi_newrelic/get_service_level_alert_helper.py +46 -22
- pulumi_newrelic/get_test_grok_pattern.py +6 -4
- pulumi_newrelic/get_user.py +4 -0
- pulumi_newrelic/group.py +42 -40
- pulumi_newrelic/infra_alert_condition.py +145 -154
- pulumi_newrelic/insights/event.py +25 -8
- pulumi_newrelic/log_parsing_rule.py +10 -6
- pulumi_newrelic/monitor_downtime.py +193 -174
- pulumi_newrelic/notification_channel.py +150 -124
- pulumi_newrelic/notification_destination.py +1 -95
- pulumi_newrelic/nrql_alert_condition.py +48 -38
- pulumi_newrelic/nrql_drop_rule.py +38 -34
- pulumi_newrelic/obfuscation_expression.py +4 -2
- pulumi_newrelic/obfuscation_rule.py +4 -4
- pulumi_newrelic/one_dashboard.py +48 -42
- pulumi_newrelic/one_dashboard_raw.py +86 -86
- pulumi_newrelic/outputs.py +270 -180
- pulumi_newrelic/plugins/_inputs.py +16 -16
- pulumi_newrelic/plugins/application_settings.py +36 -20
- pulumi_newrelic/plugins/outputs.py +16 -16
- pulumi_newrelic/plugins/workload.py +40 -158
- pulumi_newrelic/service_level.py +123 -38
- pulumi_newrelic/synthetics/alert_condition.py +78 -34
- pulumi_newrelic/synthetics/broken_links_monitor.py +20 -18
- pulumi_newrelic/synthetics/cert_check_monitor.py +18 -16
- pulumi_newrelic/synthetics/get_private_location.py +8 -0
- pulumi_newrelic/synthetics/get_secure_credential.py +12 -0
- pulumi_newrelic/synthetics/monitor.py +52 -48
- pulumi_newrelic/synthetics/multi_location_alert_condition.py +83 -69
- pulumi_newrelic/synthetics/private_location.py +6 -6
- pulumi_newrelic/synthetics/script_monitor.py +42 -38
- pulumi_newrelic/synthetics/secure_credential.py +22 -25
- pulumi_newrelic/synthetics/step_monitor.py +20 -18
- pulumi_newrelic/user.py +10 -8
- pulumi_newrelic/workflow.py +24 -20
- {pulumi_newrelic-5.23.0.dist-info → pulumi_newrelic-5.23.0a1711605988.dist-info}/METADATA +1 -1
- pulumi_newrelic-5.23.0a1711605988.dist-info/RECORD +89 -0
- pulumi_newrelic-5.23.0.dist-info/RECORD +0 -89
- {pulumi_newrelic-5.23.0.dist-info → pulumi_newrelic-5.23.0a1711605988.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.23.0.dist-info → pulumi_newrelic-5.23.0a1711605988.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 -->
|
402
403
|
```python
|
403
404
|
import pulumi
|
404
405
|
import pulumi_newrelic as newrelic
|
405
406
|
|
406
407
|
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,23 +416,24 @@ class Workflow(pulumi.CustomResource):
|
|
416
416
|
)],
|
417
417
|
),
|
418
418
|
destinations=[newrelic.WorkflowDestinationArgs(
|
419
|
-
channel_id=some_channel["id"],
|
419
|
+
channel_id=newrelic_notification_channel["some_channel"]["id"],
|
420
420
|
)])
|
421
421
|
```
|
422
|
+
<!--End PulumiCodeChooser -->
|
422
423
|
|
423
424
|
## Policy-Based Workflow Example
|
424
425
|
|
425
426
|
This scenario describes one of most common ways of using workflows by defining a set of policies the workflow handles
|
426
427
|
|
428
|
+
<!--Start PulumiCodeChooser -->
|
427
429
|
```python
|
428
430
|
import pulumi
|
429
431
|
import pulumi_newrelic as newrelic
|
430
432
|
|
431
433
|
# Create a policy to track
|
432
|
-
my_policy = newrelic.AlertPolicy("my-policy"
|
434
|
+
my_policy = newrelic.AlertPolicy("my-policy")
|
433
435
|
# Create a reusable notification destination
|
434
436
|
webhook_destination = newrelic.NotificationDestination("webhook-destination",
|
435
|
-
name="destination-webhook",
|
436
437
|
type="WEBHOOK",
|
437
438
|
properties=[newrelic.NotificationDestinationPropertyArgs(
|
438
439
|
key="url",
|
@@ -444,7 +445,6 @@ class Workflow(pulumi.CustomResource):
|
|
444
445
|
))
|
445
446
|
# Create a notification channel to use in the workflow
|
446
447
|
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,7 +455,6 @@ 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",
|
459
458
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
460
459
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
461
460
|
name="Filter-name",
|
@@ -470,15 +469,16 @@ class Workflow(pulumi.CustomResource):
|
|
470
469
|
channel_id=webhook_channel.id,
|
471
470
|
)])
|
472
471
|
```
|
472
|
+
<!--End PulumiCodeChooser -->
|
473
473
|
|
474
474
|
### An example of a workflow with enrichments
|
475
475
|
|
476
|
+
<!--Start PulumiCodeChooser -->
|
476
477
|
```python
|
477
478
|
import pulumi
|
478
479
|
import pulumi_newrelic as newrelic
|
479
480
|
|
480
481
|
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,18 +498,19 @@ class Workflow(pulumi.CustomResource):
|
|
498
498
|
)],
|
499
499
|
),
|
500
500
|
destinations=[newrelic.WorkflowDestinationArgs(
|
501
|
-
channel_id=
|
501
|
+
channel_id=newrelic_notification_channel["webhook-channel"]["id"],
|
502
502
|
)])
|
503
503
|
```
|
504
|
+
<!--End PulumiCodeChooser -->
|
504
505
|
|
505
506
|
### An example of a workflow with notification triggers
|
506
507
|
|
508
|
+
<!--Start PulumiCodeChooser -->
|
507
509
|
```python
|
508
510
|
import pulumi
|
509
511
|
import pulumi_newrelic as newrelic
|
510
512
|
|
511
513
|
workflow_example = newrelic.Workflow("workflow-example",
|
512
|
-
name="workflow-enrichment-example",
|
513
514
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
514
515
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
515
516
|
name="Filter-name",
|
@@ -521,10 +522,11 @@ class Workflow(pulumi.CustomResource):
|
|
521
522
|
)],
|
522
523
|
),
|
523
524
|
destinations=[newrelic.WorkflowDestinationArgs(
|
524
|
-
channel_id=
|
525
|
+
channel_id=newrelic_notification_channel["webhook-channel"]["id"],
|
525
526
|
notification_triggers=["ACTIVATED"],
|
526
527
|
)])
|
527
528
|
```
|
529
|
+
<!--End PulumiCodeChooser -->
|
528
530
|
|
529
531
|
## Additional Information
|
530
532
|
|
@@ -576,12 +578,12 @@ class Workflow(pulumi.CustomResource):
|
|
576
578
|
## Example Usage
|
577
579
|
|
578
580
|
##### Workflow
|
581
|
+
<!--Start PulumiCodeChooser -->
|
579
582
|
```python
|
580
583
|
import pulumi
|
581
584
|
import pulumi_newrelic as newrelic
|
582
585
|
|
583
586
|
foo = newrelic.Workflow("foo",
|
584
|
-
name="workflow-example",
|
585
587
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
586
588
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
587
589
|
name="filter-name",
|
@@ -593,23 +595,24 @@ class Workflow(pulumi.CustomResource):
|
|
593
595
|
)],
|
594
596
|
),
|
595
597
|
destinations=[newrelic.WorkflowDestinationArgs(
|
596
|
-
channel_id=some_channel["id"],
|
598
|
+
channel_id=newrelic_notification_channel["some_channel"]["id"],
|
597
599
|
)])
|
598
600
|
```
|
601
|
+
<!--End PulumiCodeChooser -->
|
599
602
|
|
600
603
|
## Policy-Based Workflow Example
|
601
604
|
|
602
605
|
This scenario describes one of most common ways of using workflows by defining a set of policies the workflow handles
|
603
606
|
|
607
|
+
<!--Start PulumiCodeChooser -->
|
604
608
|
```python
|
605
609
|
import pulumi
|
606
610
|
import pulumi_newrelic as newrelic
|
607
611
|
|
608
612
|
# Create a policy to track
|
609
|
-
my_policy = newrelic.AlertPolicy("my-policy"
|
613
|
+
my_policy = newrelic.AlertPolicy("my-policy")
|
610
614
|
# Create a reusable notification destination
|
611
615
|
webhook_destination = newrelic.NotificationDestination("webhook-destination",
|
612
|
-
name="destination-webhook",
|
613
616
|
type="WEBHOOK",
|
614
617
|
properties=[newrelic.NotificationDestinationPropertyArgs(
|
615
618
|
key="url",
|
@@ -621,7 +624,6 @@ class Workflow(pulumi.CustomResource):
|
|
621
624
|
))
|
622
625
|
# Create a notification channel to use in the workflow
|
623
626
|
webhook_channel = newrelic.NotificationChannel("webhook-channel",
|
624
|
-
name="channel-webhook",
|
625
627
|
type="WEBHOOK",
|
626
628
|
destination_id=webhook_destination.id,
|
627
629
|
product="IINT",
|
@@ -632,7 +634,6 @@ class Workflow(pulumi.CustomResource):
|
|
632
634
|
)])
|
633
635
|
# A workflow that matches issues that include incidents triggered by the policy
|
634
636
|
workflow_example = newrelic.Workflow("workflow-example",
|
635
|
-
name="workflow-example",
|
636
637
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
637
638
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
638
639
|
name="Filter-name",
|
@@ -647,15 +648,16 @@ class Workflow(pulumi.CustomResource):
|
|
647
648
|
channel_id=webhook_channel.id,
|
648
649
|
)])
|
649
650
|
```
|
651
|
+
<!--End PulumiCodeChooser -->
|
650
652
|
|
651
653
|
### An example of a workflow with enrichments
|
652
654
|
|
655
|
+
<!--Start PulumiCodeChooser -->
|
653
656
|
```python
|
654
657
|
import pulumi
|
655
658
|
import pulumi_newrelic as newrelic
|
656
659
|
|
657
660
|
workflow_example = newrelic.Workflow("workflow-example",
|
658
|
-
name="workflow-enrichment-example",
|
659
661
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
660
662
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
661
663
|
name="Filter-name",
|
@@ -675,18 +677,19 @@ class Workflow(pulumi.CustomResource):
|
|
675
677
|
)],
|
676
678
|
),
|
677
679
|
destinations=[newrelic.WorkflowDestinationArgs(
|
678
|
-
channel_id=
|
680
|
+
channel_id=newrelic_notification_channel["webhook-channel"]["id"],
|
679
681
|
)])
|
680
682
|
```
|
683
|
+
<!--End PulumiCodeChooser -->
|
681
684
|
|
682
685
|
### An example of a workflow with notification triggers
|
683
686
|
|
687
|
+
<!--Start PulumiCodeChooser -->
|
684
688
|
```python
|
685
689
|
import pulumi
|
686
690
|
import pulumi_newrelic as newrelic
|
687
691
|
|
688
692
|
workflow_example = newrelic.Workflow("workflow-example",
|
689
|
-
name="workflow-enrichment-example",
|
690
693
|
muting_rules_handling="NOTIFY_ALL_ISSUES",
|
691
694
|
issues_filter=newrelic.WorkflowIssuesFilterArgs(
|
692
695
|
name="Filter-name",
|
@@ -698,10 +701,11 @@ class Workflow(pulumi.CustomResource):
|
|
698
701
|
)],
|
699
702
|
),
|
700
703
|
destinations=[newrelic.WorkflowDestinationArgs(
|
701
|
-
channel_id=
|
704
|
+
channel_id=newrelic_notification_channel["webhook-channel"]["id"],
|
702
705
|
notification_triggers=["ACTIVATED"],
|
703
706
|
)])
|
704
707
|
```
|
708
|
+
<!--End PulumiCodeChooser -->
|
705
709
|
|
706
710
|
## Additional Information
|
707
711
|
|
@@ -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=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=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=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.0a1711605988.dist-info/METADATA,sha256=ujEjrQ7fcz2XytmGoS_DtffEq64fY7D5JtYO97FuUYo,3900
|
87
|
+
pulumi_newrelic-5.23.0a1711605988.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
+
pulumi_newrelic-5.23.0a1711605988.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.23.0a1711605988.dist-info/RECORD,,
|
@@ -1,89 +0,0 @@
|
|
1
|
-
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=5DQRGOqITjKYcP6BTtM27bI_X64ygTDvb6hsk0Yb28I,469022
|
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=lJ8svnaWcChmiqQ0Y56DEvG20tr5kbdtqeQwQcI2aoo,8152
|
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=8V3jTvxW4PI5tk7_-cJ6z23JXJ_hUmPRLXqS6Y20nMo,37505
|
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=lWhlJbjochotbpy8aI7KaiRMY5sGUO75AyR8n41uNyc,462547
|
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.0.dist-info/METADATA,sha256=djyzCsjYi4lXRZ8aCMqa2Uh11KWci74ULYEharW9sNo,3889
|
87
|
-
pulumi_newrelic-5.23.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
88
|
-
pulumi_newrelic-5.23.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
-
pulumi_newrelic-5.23.0.dist-info/RECORD,,
|
File without changes
|
{pulumi_newrelic-5.23.0.dist-info → pulumi_newrelic-5.23.0a1711605988.dist-info}/top_level.txt
RENAMED
File without changes
|