pulumi-newrelic 5.20.0a1709643785__py3-none-any.whl → 5.21.0a1710157101__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.
Files changed (65) hide show
  1. pulumi_newrelic/account_management.py +6 -2
  2. pulumi_newrelic/alert_channel.py +34 -2
  3. pulumi_newrelic/alert_condition.py +26 -2
  4. pulumi_newrelic/alert_muting_rule.py +6 -2
  5. pulumi_newrelic/alert_policy.py +22 -4
  6. pulumi_newrelic/alert_policy_channel.py +8 -4
  7. pulumi_newrelic/api_access_key.py +6 -26
  8. pulumi_newrelic/browser_application.py +6 -2
  9. pulumi_newrelic/cloud/aws_govcloud_integrations.py +2 -2
  10. pulumi_newrelic/cloud/aws_govcloud_link_account.py +6 -2
  11. pulumi_newrelic/cloud/aws_integrations.py +6 -2
  12. pulumi_newrelic/cloud/aws_link_account.py +6 -2
  13. pulumi_newrelic/cloud/azure_integrations.py +6 -2
  14. pulumi_newrelic/cloud/azure_link_account.py +6 -2
  15. pulumi_newrelic/cloud/gcp_integrations.py +6 -2
  16. pulumi_newrelic/cloud/gcp_link_account.py +6 -2
  17. pulumi_newrelic/data_partition_rule.py +8 -2
  18. pulumi_newrelic/entity_tags.py +8 -4
  19. pulumi_newrelic/events_to_metrics_rule.py +8 -4
  20. pulumi_newrelic/get_account.py +4 -0
  21. pulumi_newrelic/get_application.py +4 -0
  22. pulumi_newrelic/get_authentication_domain.py +4 -0
  23. pulumi_newrelic/get_cloud_account.py +4 -0
  24. pulumi_newrelic/get_entity.py +66 -4
  25. pulumi_newrelic/get_group.py +4 -0
  26. pulumi_newrelic/get_key_transaction.py +4 -0
  27. pulumi_newrelic/get_obfuscation_expression.py +4 -0
  28. pulumi_newrelic/get_service_level_alert_helper.py +12 -0
  29. pulumi_newrelic/get_test_grok_pattern.py +4 -0
  30. pulumi_newrelic/get_user.py +4 -0
  31. pulumi_newrelic/group.py +14 -0
  32. pulumi_newrelic/infra_alert_condition.py +33 -9
  33. pulumi_newrelic/insights/event.py +6 -0
  34. pulumi_newrelic/log_parsing_rule.py +12 -2
  35. pulumi_newrelic/monitor_downtime.py +28 -2
  36. pulumi_newrelic/notification_channel.py +50 -4
  37. pulumi_newrelic/notification_destination.py +64 -72
  38. pulumi_newrelic/nrql_alert_condition.py +28 -4
  39. pulumi_newrelic/nrql_drop_rule.py +30 -4
  40. pulumi_newrelic/obfuscation_expression.py +6 -2
  41. pulumi_newrelic/obfuscation_rule.py +6 -2
  42. pulumi_newrelic/one_dashboard.py +2 -2
  43. pulumi_newrelic/one_dashboard_json.py +2 -2
  44. pulumi_newrelic/one_dashboard_raw.py +6 -0
  45. pulumi_newrelic/plugins/application_settings.py +22 -2
  46. pulumi_newrelic/plugins/workload.py +112 -4
  47. pulumi_newrelic/service_level.py +20 -6
  48. pulumi_newrelic/synthetics/alert_condition.py +26 -2
  49. pulumi_newrelic/synthetics/broken_links_monitor.py +12 -2
  50. pulumi_newrelic/synthetics/cert_check_monitor.py +12 -2
  51. pulumi_newrelic/synthetics/get_private_location.py +8 -0
  52. pulumi_newrelic/synthetics/get_secure_credential.py +4 -0
  53. pulumi_newrelic/synthetics/monitor.py +20 -2
  54. pulumi_newrelic/synthetics/multi_location_alert_condition.py +12 -4
  55. pulumi_newrelic/synthetics/private_location.py +6 -2
  56. pulumi_newrelic/synthetics/script_monitor.py +20 -2
  57. pulumi_newrelic/synthetics/secure_credential.py +6 -2
  58. pulumi_newrelic/synthetics/step_monitor.py +8 -2
  59. pulumi_newrelic/user.py +4 -0
  60. pulumi_newrelic/workflow.py +22 -4
  61. {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.21.0a1710157101.dist-info}/METADATA +1 -1
  62. pulumi_newrelic-5.21.0a1710157101.dist-info/RECORD +89 -0
  63. pulumi_newrelic-5.20.0a1709643785.dist-info/RECORD +0 -89
  64. {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.21.0a1710157101.dist-info}/WHEEL +0 -0
  65. {pulumi_newrelic-5.20.0a1709643785.dist-info → pulumi_newrelic-5.21.0a1710157101.dist-info}/top_level.txt +0 -0
@@ -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
- bash
548
+ bash
540
549
 
541
550
  ```sh
542
551
  $ pulumi import newrelic:index/workflow:Workflow foo <id>
543
552
  ```
544
553
 
545
- 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`.
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
- bash
727
+ bash
710
728
 
711
729
  ```sh
712
730
  $ pulumi import newrelic:index/workflow:Workflow foo <id>
713
731
  ```
714
732
 
715
- 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`.
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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.20.0a1709643785
3
+ Version: 5.21.0a1710157101
4
4
  Summary: A Pulumi package for creating and managing New Relic resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,89 @@
1
+ pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
2
+ pulumi_newrelic/_inputs.py,sha256=IK3QSgzencxOTb3L-iSDvdaEvKORUTKYewvS8c5VeA8,476794
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=x13_HISLPz42t8MnE9QGf1QEhhc_WfDN3OE4Cx1wB8Q,6365
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=ujHucehZlfTpIW83vUEavXD-Qm389pdPqj7M0K3PPUE,28421
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=nSt6iAV687_xXCC8n2TXxo7bIBLN97DLQvI70zGj5Sw,469781
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=FxdmKs4Tg8NXXcXW4YIIHtwxSzwvc_FizQS_QeAoRiw,17018
69
+ pulumi_newrelic/plugins/application_settings.py,sha256=BKJfmPz-f5IvhSVWaFKua-C-lRs9OLKE3i36M2shtWI,16195
70
+ pulumi_newrelic/plugins/outputs.py,sha256=-QBbMX5uPcEPsTA3v-Qia3kT9DzQp-dA6D80E6cfFn4,16831
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=qn7UrcWq7lisX6uzPrP3QSbsXuKA-EAeHoKp4X8j2-Q,32353
76
+ pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=jymDHMhU6Rl49rJIei10sU__FpG3PToNqKpDyRIKm4U,34449
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=O0OV3AZWdAzqPsZrggf5wdNmjFq4dXeYfCcansUF6mk,65877
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=5BN0vIKP14X-__XKYIzl20Ol5m-AzUvyQyn5YR50-5M,55206
84
+ pulumi_newrelic/synthetics/secure_credential.py,sha256=zniaAb_wXwph3sPSxo_aU--DIgAl7TUR90-DxRBLhac,15758
85
+ pulumi_newrelic/synthetics/step_monitor.py,sha256=V-EisOGDUdE7KUmp6c79HcStoKIOeptdyc-yhfy23-g,35297
86
+ pulumi_newrelic-5.21.0a1710157101.dist-info/METADATA,sha256=_-S5YaT3NUbsAQRFsYj0dEsqx6EalqP2WpX0yx2P2PU,3900
87
+ pulumi_newrelic-5.21.0a1710157101.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
88
+ pulumi_newrelic-5.21.0a1710157101.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
+ pulumi_newrelic-5.21.0a1710157101.dist-info/RECORD,,
@@ -1,89 +0,0 @@
1
- pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
2
- pulumi_newrelic/_inputs.py,sha256=IK3QSgzencxOTb3L-iSDvdaEvKORUTKYewvS8c5VeA8,476794
3
- pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_newrelic/account_management.py,sha256=auMjKSSMQg57OSvOxBJ3MmN_E5z4LdwM4OAwm5AMD2k,8691
5
- pulumi_newrelic/alert_channel.py,sha256=f0nLOEtmxakqQPeevuE9W4Sd0pch2RQnfP4sCWApI30,20890
6
- pulumi_newrelic/alert_condition.py,sha256=X_2UfWFTWd7PJpmfRGSbgpX4eW1NmPoqtYNFfyR5U1o,45746
7
- pulumi_newrelic/alert_muting_rule.py,sha256=nGTdLpOM2fk_wOEMWZLIZokEsMvnbJVH2Mm3Tu1qnHY,19077
8
- pulumi_newrelic/alert_policy.py,sha256=sBu7RkF3LVU2jSmtPHCluS3vzFbxxLV8VCtCtS3VYe4,26105
9
- pulumi_newrelic/alert_policy_channel.py,sha256=-r72F1aLGwZcTFuTW68zz-pT497t7bojR_lpHOYJngI,15047
10
- pulumi_newrelic/api_access_key.py,sha256=qxHUn8uyGbDNjxVa8Rf9PGKKe63iIlGR0SGD-2Dtdlg,22003
11
- pulumi_newrelic/browser_application.py,sha256=pcN5YzkCDoHQFZImpDVQn875rou2vZb54Q9x2W6jles,20501
12
- pulumi_newrelic/data_partition_rule.py,sha256=h5d5hH4LujoyvqJf7RvTiuyB4VTVIPfrR75d41LskxU,20433
13
- pulumi_newrelic/entity_tags.py,sha256=xFxM971c5_blXqlqvK5rsZzYZlDo_4iBIEitMxpn0TU,10175
14
- pulumi_newrelic/events_to_metrics_rule.py,sha256=NGNxYo4jxww9nXRSwlvqL1B-WdJHGWa64Xa_xcEccro,15888
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=5ABKpvWzERwjIEsWwQDpeP3ZJba4shmYuyiNxKvHpnc,5312
19
- pulumi_newrelic/get_authentication_domain.py,sha256=UmJnleWQupH_STEvT9v4rRQoS3xnACPkuauPlzmCdkY,3586
20
- pulumi_newrelic/get_cloud_account.py,sha256=8yAYziHYdHd1wIfNggdgI_wLq39amS3_f4eW-a-_hMY,5187
21
- pulumi_newrelic/get_entity.py,sha256=RNG2amzCxUcwWs3uBRyZL-je70lTzuwO-dpOqk9bpiU,10853
22
- pulumi_newrelic/get_group.py,sha256=p50E6SFqYdF4O7QeK5z0mqs1e06MYba2p-0BSHta89A,5663
23
- pulumi_newrelic/get_key_transaction.py,sha256=QOLqA1EZ4G6BxVQCSZt94rf0M9iJJwGwvW3ioSX71Y0,4081
24
- pulumi_newrelic/get_notification_destination.py,sha256=x13_HISLPz42t8MnE9QGf1QEhhc_WfDN3OE4Cx1wB8Q,6365
25
- pulumi_newrelic/get_obfuscation_expression.py,sha256=UUhLN7g-VnQ9ASzFt8M4-GE4EpWawIfoug8DJW0Mb_U,4867
26
- pulumi_newrelic/get_service_level_alert_helper.py,sha256=yOxb_74lGurxVmmMlVhR6qGy5chm2wkvpwW2eUDmipo,20140
27
- pulumi_newrelic/get_test_grok_pattern.py,sha256=Mxo8j32CyD6W_lGwk3BF_NnUA1mi9gfe9voa947HbtU,5504
28
- pulumi_newrelic/get_user.py,sha256=QxI7LiKvkiBOc-Ovj3ySFzD1l2SrGO1Y7-xnrGhfP3A,7284
29
- pulumi_newrelic/group.py,sha256=Moi1VJ82NTlIj0u25FEfnxTuNatpbTiC89GrUuCSbSY,21045
30
- pulumi_newrelic/infra_alert_condition.py,sha256=T2cW_J8mqiIReV9YNQT3KbNSU8_5GGvPrvpMzWiFYLU,56742
31
- pulumi_newrelic/log_parsing_rule.py,sha256=nlGKJssQ3d6gjNG1LJZjdYxfbidGHdy7bRbTqw-LKsY,22270
32
- pulumi_newrelic/monitor_downtime.py,sha256=qFGiikR2TMyGDjHn5t6vs9TKUz8Sdksd26rUKpvsUEE,45214
33
- pulumi_newrelic/notification_channel.py,sha256=Jb08kGYDUSVSlao2mG8HYAOexEs-xbYxKJGC6Chj7jw,45108
34
- pulumi_newrelic/notification_destination.py,sha256=4rdVen05b3UNVWkoRzSAelSSR9EWJtYlg6r9vl_U99A,28367
35
- pulumi_newrelic/nrql_alert_condition.py,sha256=HrmjCKrj21H2l0StdxlE0-OHGdSCUPIOdkYUXUDUtbQ,105561
36
- pulumi_newrelic/nrql_drop_rule.py,sha256=uOY6vN0Fqufl13vAUGHikXJLhKLeIRUYb-PB4vkh6nI,15726
37
- pulumi_newrelic/obfuscation_expression.py,sha256=Ug-pkNbylLLndFS-qEgt2ohs-s0YMY7fqhvqxx6p1to,12291
38
- pulumi_newrelic/obfuscation_rule.py,sha256=HkzpQxe8h6XDR5iNru3LGcty_X3RiFjCdYy5_Maqfio,17683
39
- pulumi_newrelic/one_dashboard.py,sha256=OWO-ygqFwoqf4CHUBqTeveGxNa02Gw7vDQctn4qJaIs,20492
40
- pulumi_newrelic/one_dashboard_json.py,sha256=S78dI2cQ34FAXUZb7_Wi1mHjm7FYZKx-2Mkj2L32jHg,12624
41
- pulumi_newrelic/one_dashboard_raw.py,sha256=CBPCIQtnYSfttTKKoHh54xFqaBuFaZsMvTcW4hncqzk,23116
42
- pulumi_newrelic/outputs.py,sha256=nSt6iAV687_xXCC8n2TXxo7bIBLN97DLQvI70zGj5Sw,469781
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=_OP2mlBdwytUKoMA0Av9TjjNDOJA3Q2w2ORIHi7CrHk,29765
47
- pulumi_newrelic/user.py,sha256=CTEu7jLOd1JLGudpz724ZVWM6xT9iKfZhsF9NgZKEyA,18970
48
- pulumi_newrelic/workflow.py,sha256=vqvLiF1SNFsnr9SrCuiBYVyILF0s96eFXdUeFDDIowI,41378
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=9_ikPyzE6xhS4X2VWp82LSTrcfy1LA9eLyaHLDIqIas,62206
52
- pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=wtTA0qFmfrSRbUi6zhaXF2wQLlm-dUB0o6H81fTbJs4,20763
53
- pulumi_newrelic/cloud/aws_integrations.py,sha256=LS4TWadsPQjg0UnzfoXftnCZNoqz7onEwwhId-XUvtw,180649
54
- pulumi_newrelic/cloud/aws_link_account.py,sha256=P-JNEm6xMR7PZRG6LTb_y_p2ZnbqITNRaI-uxsLqEkI,15431
55
- pulumi_newrelic/cloud/azure_integrations.py,sha256=63bwcNboNbSEgmhxbD7Icm4ziYr1bE2nlt7ZbzyvRm8,109348
56
- pulumi_newrelic/cloud/azure_link_account.py,sha256=t_9pB5M68Cpf0nxG52arpP87i1U3-T_vrtOu-9RUGBc,18467
57
- pulumi_newrelic/cloud/gcp_integrations.py,sha256=WPiBu9sRLNO8qZYmUdrhIDz0zz5bRT5EiMkeGZGT4UQ,83424
58
- pulumi_newrelic/cloud/gcp_link_account.py,sha256=Y6IyZY_idXpInofah529U19qA0EfNuvNgz3YxkwqwrU,12367
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=I04_QzU5Xf3i4DNhfuu2E0WwYLKsAEmbfS1ql-RMr_w,10052
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=FxdmKs4Tg8NXXcXW4YIIHtwxSzwvc_FizQS_QeAoRiw,17018
69
- pulumi_newrelic/plugins/application_settings.py,sha256=Uqz4Oz2q2ymmgQXWe1_5n0FJ1ZE9mqP3YovBI4EO-r8,15437
70
- pulumi_newrelic/plugins/outputs.py,sha256=-QBbMX5uPcEPsTA3v-Qia3kT9DzQp-dA6D80E6cfFn4,16831
71
- pulumi_newrelic/plugins/workload.py,sha256=Y2IW_z93MnARTD43MpmE2_mIwEMAXa4igNeRwHKChEM,31636
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=1JTG4uwB1Z-jPsLpe7zTtmVr6WH1gNMKmM4Mdz8y59A,20564
75
- pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=dAngI_Stvc-kjsRPG1EAcK88AQhb8R-9Z9Iuqisy1Nk,32041
76
- pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=6XcOT6YVG8GRzVjMMzMZMMMfxYsp_ObpASQtCVsCZ58,34137
77
- pulumi_newrelic/synthetics/get_private_location.py,sha256=Phsn8ZDUJhSvJLdXEowWPoS-VBm1nRcgLNwMIduxKSw,5787
78
- pulumi_newrelic/synthetics/get_secure_credential.py,sha256=bPYHCwVTY2XxM10l7OnvsuodBSp0wutBlkZR-s_PixQ,5479
79
- pulumi_newrelic/synthetics/monitor.py,sha256=lOzpWR6P28pjmuJkKbOngfegHt7HV_DmCJpckEEx468,65253
80
- pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=SD6ouZxVrJhIVdoKxWH4eZNA_4BcUk3CiHThIz4jzeA,34751
81
- pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
82
- pulumi_newrelic/synthetics/private_location.py,sha256=x2Ji28435eqLVwZY9tXLN4QV08KpdF7rQO-VwaAU5Yg,17171
83
- pulumi_newrelic/synthetics/script_monitor.py,sha256=4OQteFH88JhQnTC6j9GwBhXO-DYWarjGkkqX0WIEPeE,54582
84
- pulumi_newrelic/synthetics/secure_credential.py,sha256=O5SFzx3UNw64KjxCRzxatsXoPjT_e6VyJ32JTa0f0Dw,15604
85
- pulumi_newrelic/synthetics/step_monitor.py,sha256=SykPSAJYHcqMD9dNXSXx2cTpsKmF3cy6ObXNRqb2CTQ,35141
86
- pulumi_newrelic-5.20.0a1709643785.dist-info/METADATA,sha256=IsDGoFI_0fx3lVoqWqAqLyt4B7f-AE0DiAGe8sGUnuU,3900
87
- pulumi_newrelic-5.20.0a1709643785.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
88
- pulumi_newrelic-5.20.0a1709643785.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
- pulumi_newrelic-5.20.0a1709643785.dist-info/RECORD,,