pulumi-newrelic 5.16.0a1698964311__py3-none-any.whl → 5.58.0a1763707205__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.

Potentially problematic release.


This version of pulumi-newrelic might be problematic. Click here for more details.

Files changed (92) hide show
  1. pulumi_newrelic/__init__.py +58 -1
  2. pulumi_newrelic/_inputs.py +10772 -2775
  3. pulumi_newrelic/_utilities.py +92 -11
  4. pulumi_newrelic/account_management.py +56 -42
  5. pulumi_newrelic/alert_channel.py +177 -151
  6. pulumi_newrelic/alert_condition.py +313 -301
  7. pulumi_newrelic/alert_muting_rule.py +195 -138
  8. pulumi_newrelic/alert_policy.py +157 -109
  9. pulumi_newrelic/alert_policy_channel.py +95 -81
  10. pulumi_newrelic/api_access_key.py +191 -209
  11. pulumi_newrelic/browser_application.py +161 -153
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +4267 -2710
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +238 -200
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +159 -212
  16. pulumi_newrelic/cloud/aws_integrations.py +518 -1490
  17. pulumi_newrelic/cloud/aws_link_account.py +88 -76
  18. pulumi_newrelic/cloud/azure_integrations.py +681 -587
  19. pulumi_newrelic/cloud/azure_link_account.py +129 -117
  20. pulumi_newrelic/cloud/gcp_integrations.py +436 -408
  21. pulumi_newrelic/cloud/gcp_link_account.py +71 -59
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1678 -2317
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +45 -0
  26. pulumi_newrelic/config/vars.py +22 -17
  27. pulumi_newrelic/data_partition_rule.py +129 -117
  28. pulumi_newrelic/entity_tags.py +153 -31
  29. pulumi_newrelic/events_to_metrics_rule.py +114 -102
  30. pulumi_newrelic/get_account.py +41 -29
  31. pulumi_newrelic/get_alert_channel.py +73 -28
  32. pulumi_newrelic/get_alert_policy.py +83 -34
  33. pulumi_newrelic/get_application.py +51 -39
  34. pulumi_newrelic/get_authentication_domain.py +111 -0
  35. pulumi_newrelic/get_cloud_account.py +43 -31
  36. pulumi_newrelic/get_entity.py +126 -121
  37. pulumi_newrelic/get_group.py +190 -0
  38. pulumi_newrelic/get_key_transaction.py +117 -38
  39. pulumi_newrelic/get_notification_destination.py +86 -36
  40. pulumi_newrelic/get_obfuscation_expression.py +47 -35
  41. pulumi_newrelic/get_service_level_alert_helper.py +237 -137
  42. pulumi_newrelic/get_test_grok_pattern.py +47 -32
  43. pulumi_newrelic/get_user.py +165 -0
  44. pulumi_newrelic/group.py +286 -0
  45. pulumi_newrelic/infra_alert_condition.py +400 -382
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +94 -23
  48. pulumi_newrelic/insights/event.py +56 -48
  49. pulumi_newrelic/insights/outputs.py +51 -18
  50. pulumi_newrelic/key_transaction.py +465 -0
  51. pulumi_newrelic/log_parsing_rule.py +169 -153
  52. pulumi_newrelic/monitor_downtime.py +914 -0
  53. pulumi_newrelic/notification_channel.py +560 -418
  54. pulumi_newrelic/notification_destination.py +379 -124
  55. pulumi_newrelic/nrql_alert_condition.py +945 -513
  56. pulumi_newrelic/nrql_drop_rule.py +121 -129
  57. pulumi_newrelic/obfuscation_expression.py +88 -76
  58. pulumi_newrelic/obfuscation_rule.py +123 -109
  59. pulumi_newrelic/one_dashboard.py +118 -108
  60. pulumi_newrelic/one_dashboard_json.py +77 -67
  61. pulumi_newrelic/one_dashboard_raw.py +214 -202
  62. pulumi_newrelic/outputs.py +5491 -2141
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +520 -90
  66. pulumi_newrelic/plugins/application_settings.py +463 -167
  67. pulumi_newrelic/plugins/outputs.py +337 -75
  68. pulumi_newrelic/plugins/workload.py +387 -151
  69. pulumi_newrelic/provider.py +156 -142
  70. pulumi_newrelic/pulumi-plugin.json +2 -1
  71. pulumi_newrelic/service_level.py +277 -255
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +275 -106
  74. pulumi_newrelic/synthetics/alert_condition.py +174 -160
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +367 -207
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +380 -218
  77. pulumi_newrelic/synthetics/get_private_location.py +51 -39
  78. pulumi_newrelic/synthetics/get_secure_credential.py +39 -27
  79. pulumi_newrelic/synthetics/monitor.py +668 -462
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +219 -201
  81. pulumi_newrelic/synthetics/outputs.py +102 -85
  82. pulumi_newrelic/synthetics/private_location.py +120 -110
  83. pulumi_newrelic/synthetics/script_monitor.py +623 -375
  84. pulumi_newrelic/synthetics/secure_credential.py +99 -93
  85. pulumi_newrelic/synthetics/step_monitor.py +545 -201
  86. pulumi_newrelic/user.py +366 -0
  87. pulumi_newrelic/workflow.py +348 -312
  88. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/METADATA +8 -7
  89. pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.16.0a1698964311.dist-info/RECORD +0 -82
  92. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/top_level.txt +0 -0
@@ -1,16 +1,17 @@
1
- Metadata-Version: 2.1
2
- Name: pulumi-newrelic
3
- Version: 5.16.0a1698964311
1
+ Metadata-Version: 2.4
2
+ Name: pulumi_newrelic
3
+ Version: 5.58.0a1763707205
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
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-newrelic
8
8
  Keywords: pulumi,new relic
9
- Requires-Python: >=3.7
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
- Requires-Dist: parver >=0.2.1
12
- Requires-Dist: pulumi <4.0.0,>=3.0.0
13
- Requires-Dist: semver >=2.8.1
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
14
15
 
15
16
  [![Actions Status](https://github.com/pulumi/pulumi-newrelic/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-newrelic/actions)
16
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,92 @@
1
+ pulumi_newrelic/__init__.py,sha256=Ma56W4OeGlJh2pTw9kc6w_x005-3zos6IvfN3fpqB-c,11951
2
+ pulumi_newrelic/_inputs.py,sha256=N-cRiHmUbHIaxMigiVICiQhS7Wq5boqnfZhHMpP-hLw,875959
3
+ pulumi_newrelic/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
+ pulumi_newrelic/account_management.py,sha256=BkirbUsR5h8x4Y_JSA_08xzF7bKiQQapAO-PdMk9YAA,9375
5
+ pulumi_newrelic/alert_channel.py,sha256=U0uhbIIZbDYX7KbzScyMFqhkw-LjEjZMlGb42vNLaI8,22467
6
+ pulumi_newrelic/alert_condition.py,sha256=UAab2yQ1jGukHc_KwW-bqybNmfjSgRXw5KHx8A1tpEE,48934
7
+ pulumi_newrelic/alert_muting_rule.py,sha256=PcduG6-843oqqH0KTj7med_U9h-H8bQf8rDXF2Mcxe0,23720
8
+ pulumi_newrelic/alert_policy.py,sha256=j7kwAyo26WTjn3WYjbRiZtNer761c9NAY4fgs2Zq9IE,27020
9
+ pulumi_newrelic/alert_policy_channel.py,sha256=HRsldpJvlCriX_ORNIi8HECVDZwELZWxVc3p5k5BzVo,16827
10
+ pulumi_newrelic/api_access_key.py,sha256=L1cKF2rOcA_xDuXU2zrVi4e6r28VRDEEA27kvBBgqaU,21654
11
+ pulumi_newrelic/browser_application.py,sha256=X-9hxkceZUKksFgis9Sk0xxiyeU5E80xXLcgMAb27V4,22410
12
+ pulumi_newrelic/data_partition_rule.py,sha256=trKw0gNOAVf7AVp7bHtpJuyVxGJbOFkx9NZz_YF0o1o,21789
13
+ pulumi_newrelic/entity_tags.py,sha256=JPxziyMKb_rxCIz9ds9GSpEH84VgDElW8JsUdvGKKrM,12681
14
+ pulumi_newrelic/events_to_metrics_rule.py,sha256=1c4hMI-wspYsroOmqGkK2uSK-0qReyZDydwy_MSZUNc,17184
15
+ pulumi_newrelic/get_account.py,sha256=-6rn4zzYqY1nLv93qjQ-SpI1ZyE-SpWbPkv__dWdDkI,5604
16
+ pulumi_newrelic/get_alert_channel.py,sha256=eFTO-fTpY0DPGlp_n02yZx9WVsZDCK0aQnPi4RzF_dk,7335
17
+ pulumi_newrelic/get_alert_policy.py,sha256=ueQ9WYEhczYQNiJY8X8faglAzjYt-bV0aODSQ094f6c,10716
18
+ pulumi_newrelic/get_application.py,sha256=SO_71J4z99hRXDNzum9TwJZLOqkrN7NaWCIHzh31bVw,6068
19
+ pulumi_newrelic/get_authentication_domain.py,sha256=hdYJK1DvCHzmwUodaCY2XWiTfkGZlKG4NYYYdsyFKfw,4192
20
+ pulumi_newrelic/get_cloud_account.py,sha256=lhu5c5RwUtMY0667P-6qzBpLtr5GS_2A3uttWt69SAM,6193
21
+ pulumi_newrelic/get_entity.py,sha256=pqRazHLvomrGCbb4--nJsaYbz-9yKh1XXZS61cIgeqQ,14787
22
+ pulumi_newrelic/get_group.py,sha256=oDsa_X_MBMYLAMkokykiqpesRWmPz0Rd71-TBzUmNaY,8779
23
+ pulumi_newrelic/get_key_transaction.py,sha256=RBByCDF4xLNGaZJG_d26yPBf00bYtVPunenyzn1yJFg,8555
24
+ pulumi_newrelic/get_notification_destination.py,sha256=Au6ykdo-00D6g6RBbFdv0Xmi0LSK-TOQsOgHIZo6j64,9739
25
+ pulumi_newrelic/get_obfuscation_expression.py,sha256=BeUqf-cAOw9t-ezHX-m-jfBXFJx5nKnwHKga3Ix9sYM,5726
26
+ pulumi_newrelic/get_service_level_alert_helper.py,sha256=dxhJ-RaNs-lmeX9oU1m0s97xz5KDEssuz20b9BzNaew,21696
27
+ pulumi_newrelic/get_test_grok_pattern.py,sha256=bSxQypDvZ8m3jUYrcoboJ8RXZt6KWVYUUsbJMX7ZHMk,6597
28
+ pulumi_newrelic/get_user.py,sha256=T-hmdTJh-ziviA7syR6cznDsqJk0YB5BP27HfIFI9qk,8294
29
+ pulumi_newrelic/group.py,sha256=M5BqW6ttIcS5tMwGOJDCKS5VU41MkYgmLGhQwxuHptI,15931
30
+ pulumi_newrelic/infra_alert_condition.py,sha256=mPbYmGo3LU7CvqQIsXGa5-oQSYwKLWBkVcqe2FJKSB4,60804
31
+ pulumi_newrelic/key_transaction.py,sha256=ZADTOG_stp94ZW6sAjYedutDk6xhF2Md3x3zilVg3hE,23971
32
+ pulumi_newrelic/log_parsing_rule.py,sha256=LisajAtcaL3tI4IfxDr2m1qV7ILxbmYS4aWZ7xitiBk,24098
33
+ pulumi_newrelic/monitor_downtime.py,sha256=eFrGb_WimQE5et66GvIIG29BS0-zlU7gxGvBY_c6gSc,42266
34
+ pulumi_newrelic/notification_channel.py,sha256=NL-jcRp9Ab7pX-lPMbwM7KiySoFGCJ89VdgGAjTG_68,50839
35
+ pulumi_newrelic/notification_destination.py,sha256=CIgQtK9zP7Bc7BBTAhSYXGnjZyy1EuOQBhmKa4H1iUs,41261
36
+ pulumi_newrelic/nrql_alert_condition.py,sha256=5NC7oT3ttWs2YT7GKJv0X2c1tXMlfFMIDwOve4BeZm0,127399
37
+ pulumi_newrelic/nrql_drop_rule.py,sha256=R3TmLv9E-e2AgDL6TetErk05yBkaLlc3yZNuEBHqcHg,17621
38
+ pulumi_newrelic/obfuscation_expression.py,sha256=_IemP9OPdRPD2KtWoebyKr3BIyuVp7-YC71-IiBRDcc,13277
39
+ pulumi_newrelic/obfuscation_rule.py,sha256=i-7TgU5nsjsSAM5cLdKPKiReUMGVlkvDyAgCkB62KJg,18991
40
+ pulumi_newrelic/one_dashboard.py,sha256=siAjVf7CK3wJeOuprhFyhiAoO06KHWqkdNf5BX3Vf9A,21836
41
+ pulumi_newrelic/one_dashboard_json.py,sha256=jZ3BH18YiQjUzS0AyJGpFcyj3Ai8ZlKuVrMT-bWV5Dc,13476
42
+ pulumi_newrelic/one_dashboard_raw.py,sha256=V1F113AK_iHqbqwAeeW6Fdt9Wlfgj4EE2GidfowOT00,24738
43
+ pulumi_newrelic/outputs.py,sha256=Bf6sk6GT0Nx_MICGgRiTCYWMMLWxguMzbKrkeaEJ8H8,631533
44
+ pulumi_newrelic/pipeline_cloud_rule.py,sha256=I6874bmRCGe0b_ClHs86qyYkpFML2QvD_iMzJ-NN_ws,13644
45
+ pulumi_newrelic/provider.py,sha256=644yJkWitRT_BZOlW_q-_W0x_bnLAIfOrFx_O1V_CEA,20441
46
+ pulumi_newrelic/pulumi-plugin.json,sha256=8PREmVrVX_Um0UKpg0hMUEnCSRei-1l9ScptwMlTXIc,85
47
+ pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ pulumi_newrelic/service_level.py,sha256=gxclcbnMv1zxbt3ZSR1QCHSzcKiYXUCJfFjbyn3mKvE,29792
49
+ pulumi_newrelic/user.py,sha256=CTl-KJ2yLDl8dwmRGksYCHCQ2KvUyA8U81WV4cGpaj4,19842
50
+ pulumi_newrelic/workflow.py,sha256=tuJiT4Kp1J8DEzhigSF9QJjETewd0efiVG0P_nx1VT8,44221
51
+ pulumi_newrelic/cloud/__init__.py,sha256=5s_YksnfVoN7CFDTly58zX6t-Mf-A_kHoY7KTrOHQfM,635
52
+ pulumi_newrelic/cloud/_inputs.py,sha256=lZgqyq-5HqfrerkrKzRcOSgLXQA3gjpk7Rd-hyZRpb0,407840
53
+ pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=pvnG9GBrhDttQrt8irq-9mWI1OksOahS7pmlTu4ns9M,66489
54
+ pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=08wV9Cyyqqg7OYPfRDTR6H2AaGxtaSIIg6wm3GpyYB8,19514
55
+ pulumi_newrelic/cloud/aws_integrations.py,sha256=HPrTC0d2bwDpumoW_n_neQciSvnotaFECSmr9Y5NzT8,133408
56
+ pulumi_newrelic/cloud/aws_link_account.py,sha256=oHTkMYWqmPWIZFYf9H9yMdVJbIL_vqQmTUSUh9T18TY,16415
57
+ pulumi_newrelic/cloud/azure_integrations.py,sha256=uZRQaHpgqqMfoudNoO4OulNdu01gWKafiWx7d71Rq0s,118213
58
+ pulumi_newrelic/cloud/azure_link_account.py,sha256=fUXPateGNfUBvpCTe4oj9_qpufMSIX-nu7xysFqrP7M,20173
59
+ pulumi_newrelic/cloud/gcp_integrations.py,sha256=GwJN-Y21T_nxazazEaz6FFNbzZGfREIzweAATBKeQus,87157
60
+ pulumi_newrelic/cloud/gcp_link_account.py,sha256=1bb4bHrSCuc7DuB-2jE8Zpb-QiqNXquKW4Ic41t8VsQ,13183
61
+ pulumi_newrelic/cloud/oci_link_account.py,sha256=R95UYxxILgCZ4dDhrm042H83CSG2KG_qjK_WUfNzJR8,47434
62
+ pulumi_newrelic/cloud/outputs.py,sha256=1WM7g-ksVxUIZYf4YH0BNSRmrOtvLkBRuQyl_mSki24,334661
63
+ pulumi_newrelic/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
64
+ pulumi_newrelic/config/__init__.pyi,sha256=S-oMyG4GP-hf6N1Rkq7MIujfNkkNWZM9LnUWK_6E5yI,1018
65
+ pulumi_newrelic/config/vars.py,sha256=6njbBYjXFoLX0Vv6-L0hwSeoPxJ53QLpHrW-0sDeL9Y,2405
66
+ pulumi_newrelic/insights/__init__.py,sha256=9ZYd7bfeOorU014qzw0h0O99tU7ZCULps9t6b5ROEec,346
67
+ pulumi_newrelic/insights/_inputs.py,sha256=1CW8A6PS7TpqtO8JANtUoUpcnkzc-D1u3MWDOM1YYYQ,6127
68
+ pulumi_newrelic/insights/event.py,sha256=sTCmxvj1rTITLJCSGv4lLXO2_rVjWIBysET8uAmFj-E,10120
69
+ pulumi_newrelic/insights/outputs.py,sha256=q8hOLNkxeCaYiXDD7P-tdVTAvpgo39pChQ72WYF1nY8,3718
70
+ pulumi_newrelic/plugins/__init__.py,sha256=ul_hV6T_t5pAE9Icp1baoWu4qhSPfD3btrYAkvXwWMg,385
71
+ pulumi_newrelic/plugins/_inputs.py,sha256=KF1RzaqwcApPM_ktMDCsEPgv1qi9IXPJ9azmRsjee_o,38517
72
+ pulumi_newrelic/plugins/application_settings.py,sha256=32GNfdXQBrqtDdGj_LePicX7DDEXWI_iFyn33hge9fA,38352
73
+ pulumi_newrelic/plugins/outputs.py,sha256=NiZRV2q92IZKzu-UImp-ndz8WCeXw6WvUxZd7ICx_iU,29254
74
+ pulumi_newrelic/plugins/workload.py,sha256=um0n4dmdfqBLkKx9ZB6vhTk8BvRAnpI7k-Yn0g6xdTU,42691
75
+ pulumi_newrelic/synthetics/__init__.py,sha256=1wY9vAOlrpEPVXDbg8kDxY3veVKWsl-Xia2KCD67Pqo,691
76
+ pulumi_newrelic/synthetics/_inputs.py,sha256=W53RgOKL6UabGhbTJerv-MiEUs1RFljgtIc74yArtmU,19939
77
+ pulumi_newrelic/synthetics/alert_condition.py,sha256=p83fGBi7KJWsNDklG1N3hnnV4mzu3OcbhYNSf8A3xn8,22770
78
+ pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=eiTVCfnBmXplk6E7394mQ5lsh4fRn3ml4_w9WebRza4,40745
79
+ pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=_353DoaJGslObHb3s6I_j3al4V-oOVS-DCq0D-phv-k,42921
80
+ pulumi_newrelic/synthetics/get_private_location.py,sha256=IninyemjG3H6P32BUkb3tAdcM-qoGkctW3ZEO2bSl2Q,6678
81
+ pulumi_newrelic/synthetics/get_secure_credential.py,sha256=jKwLyyFekbFV0VRPiNWu5XXTX6tmmP68sO2wyjJNJrM,6484
82
+ pulumi_newrelic/synthetics/monitor.py,sha256=Xxm7jgO60MVUcxCU82YdmSEGZom1JtXTpeD7xRgsIDk,80309
83
+ pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=bNmwOaRYPh4Kn1nA8vcMmkbN2A3s31K6OsibfJyQyeQ,36101
84
+ pulumi_newrelic/synthetics/outputs.py,sha256=9TA7FAfP8xl1uHI3VBodiigB3HRLI9r6rkIL6ILR_q8,12230
85
+ pulumi_newrelic/synthetics/private_location.py,sha256=RInZWYYxloyzGmgaVTsEO_fGrnxAjqeLeyPN1PCgZDQ,18586
86
+ pulumi_newrelic/synthetics/script_monitor.py,sha256=Ijs_jSriw0BFjqEt7sS5jfaiunBhmEB-Li-ED3lYhaM,73319
87
+ pulumi_newrelic/synthetics/secure_credential.py,sha256=f4gs62_FcBaeO6YMZLMKwBuOS73qxpKmudoelXbmtso,16701
88
+ pulumi_newrelic/synthetics/step_monitor.py,sha256=1PtSgEInngOinmSSPaPqIxwJx2iSRoMSa9Fw6zlh-rQ,52671
89
+ pulumi_newrelic-5.58.0a1763707205.dist-info/METADATA,sha256=rmLvplLlgy97q2s0LhfoqZaDG53UX2ccuTMQn4QHTHo,3966
90
+ pulumi_newrelic-5.58.0a1763707205.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
91
+ pulumi_newrelic-5.58.0a1763707205.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
92
+ pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.3)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,82 +0,0 @@
1
- pulumi_newrelic/__init__.py,sha256=WxmsponGSYNz_1ckbFhAxP3K_Me4JdmNjHnDRwbz4_I,10709
2
- pulumi_newrelic/_inputs.py,sha256=F2ZALiIjC3sAOD24s1w0xHe9jXaNTd9b0F7UxGzdW9s,452806
3
- pulumi_newrelic/_utilities.py,sha256=fRvpCIKutW049SlpPUAoouFyjnSSk1J-OY0b8SDzJaE,8081
4
- pulumi_newrelic/account_management.py,sha256=n6PRT6MlHnqzV5pjIE5SJuxc-oAN3a0gwNOMPAovx4I,8673
5
- pulumi_newrelic/alert_channel.py,sha256=tYCerX_BsVt0rjxK4DBOzqYYvi74V7xY9FHgIpVO1yM,20872
6
- pulumi_newrelic/alert_condition.py,sha256=SZ6aQ3HXY6TGJnyrXTg0s9opIN5_DaWPXOepX2OWMdE,45682
7
- pulumi_newrelic/alert_muting_rule.py,sha256=nGTdLpOM2fk_wOEMWZLIZokEsMvnbJVH2Mm3Tu1qnHY,19077
8
- pulumi_newrelic/alert_policy.py,sha256=qaIWag4jIrzO4dk-pJYO2iQI8Mqp5RtSCeNk79JvcGo,21883
9
- pulumi_newrelic/alert_policy_channel.py,sha256=VvXWw8dVPQ7p-xFzDxREC0fS9cCuKo6xRN2vmZLp-Sk,15043
10
- pulumi_newrelic/api_access_key.py,sha256=qxHUn8uyGbDNjxVa8Rf9PGKKe63iIlGR0SGD-2Dtdlg,22003
11
- pulumi_newrelic/browser_application.py,sha256=5URZHPGqH_wfbloSgmMZn0ACGDxi6oCzwY5JF4PrUGo,20483
12
- pulumi_newrelic/data_partition_rule.py,sha256=8qtzjqkIjW5vLyna_YAA9wG3u_Lr4hbBwzBmJ9xTS5o,20415
13
- pulumi_newrelic/entity_tags.py,sha256=fk50NO4KPs3No3AvcLgIAcQLKaUFCvbodTZAzzJ6oQs,8477
14
- pulumi_newrelic/events_to_metrics_rule.py,sha256=CY8yYmjyyiPldze2onWNyFdw8ud--9F40JGK-0BR9DQ,15870
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=SrLWQw7kXrSWjh_GeNd4d1axOuCkfxD6faKENLMRpck,5963
18
- pulumi_newrelic/get_application.py,sha256=5ABKpvWzERwjIEsWwQDpeP3ZJba4shmYuyiNxKvHpnc,5312
19
- pulumi_newrelic/get_cloud_account.py,sha256=8yAYziHYdHd1wIfNggdgI_wLq39amS3_f4eW-a-_hMY,5187
20
- pulumi_newrelic/get_entity.py,sha256=RNG2amzCxUcwWs3uBRyZL-je70lTzuwO-dpOqk9bpiU,10853
21
- pulumi_newrelic/get_key_transaction.py,sha256=QOLqA1EZ4G6BxVQCSZt94rf0M9iJJwGwvW3ioSX71Y0,4081
22
- pulumi_newrelic/get_notification_destination.py,sha256=x13_HISLPz42t8MnE9QGf1QEhhc_WfDN3OE4Cx1wB8Q,6365
23
- pulumi_newrelic/get_obfuscation_expression.py,sha256=UUhLN7g-VnQ9ASzFt8M4-GE4EpWawIfoug8DJW0Mb_U,4867
24
- pulumi_newrelic/get_service_level_alert_helper.py,sha256=AquTG0ppnA6KVZQSv68CJR_oSpAapfSDmWfNhYbz2_M,17788
25
- pulumi_newrelic/get_test_grok_pattern.py,sha256=Mxo8j32CyD6W_lGwk3BF_NnUA1mi9gfe9voa947HbtU,5504
26
- pulumi_newrelic/infra_alert_condition.py,sha256=_mfyOdtFCJkA2VMmXp2K6JehtWKCZLEVCJW3kHMIOoA,56668
27
- pulumi_newrelic/log_parsing_rule.py,sha256=NtnaxEwfencWrJguSuNqc5zKu-jGX-iTNbbztvGac7M,22252
28
- pulumi_newrelic/notification_channel.py,sha256=_55p2WkYvHV-8I4ApZ1q7HW8y1CIBtkrLJFpB7pn-e4,43984
29
- pulumi_newrelic/notification_destination.py,sha256=ELFKkBpyc4ZzkYe64ZenFVM8lCgVXD8bQf2aYGdWRjA,25645
30
- pulumi_newrelic/nrql_alert_condition.py,sha256=tUk34M3NdpQkFSiZeWhx_QQIwt9r175XncGwOcVU-5k,97988
31
- pulumi_newrelic/nrql_drop_rule.py,sha256=GQNQ8MqZZUW3f9WSYukmRdkecm0W39bsl5f6eb9wwlE,15708
32
- pulumi_newrelic/obfuscation_expression.py,sha256=0I8MGGsUjLm0Y6mhvYiutrXhLRSi2fD8VcClwIJ-g8k,12273
33
- pulumi_newrelic/obfuscation_rule.py,sha256=VXoVR-rs6S6jB8SgpHGJcL8mkCDldhCe8qoaK6dx7Eg,17665
34
- pulumi_newrelic/one_dashboard.py,sha256=31nqi42fXi5iwbku7YtjeaODPzlw0NVMJ7-OAn66yNc,20474
35
- pulumi_newrelic/one_dashboard_json.py,sha256=ghRsdJehfoW9fRI-i3j4twDF7-0K12ZJ_DwzwdfYVLc,12606
36
- pulumi_newrelic/one_dashboard_raw.py,sha256=CBPCIQtnYSfttTKKoHh54xFqaBuFaZsMvTcW4hncqzk,23116
37
- pulumi_newrelic/outputs.py,sha256=tUOWpMxjfhy7XqImZV_GnbUk8-5elvdZ7BRbYECxhro,446075
38
- pulumi_newrelic/provider.py,sha256=VPXhUfFLSVoIFew1P_oy7pHeondN5LbHsLoLqD3z7qs,19536
39
- pulumi_newrelic/pulumi-plugin.json,sha256=BB2nuoRbgCmufIppkKjSbeCa7oIqt8NBakO_A4QV0Pk,45
40
- pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- pulumi_newrelic/service_level.py,sha256=45X1vlx1owJtyGXBe1qP-lZTPhv7MhzT-89o9khg84c,29723
42
- pulumi_newrelic/workflow.py,sha256=1__g99bVBXFiPESoclXVBdxFsWCPwwKuZCJQDTL6i7o,41360
43
- pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
44
- pulumi_newrelic/cloud/_inputs.py,sha256=E4RMrsuu9R1viChF-s4Wf-KvcsmhQFqTvIHBRF9JS-Q,331250
45
- pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=AtDCu5nj9liKhQ9KnV87AYdv6qNFAyCj0he0OT7nuE8,60440
46
- pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=K8lsvioTGAEaoct99EUQD3Ad6WMp4v6hk4ziP8vIiI4,18999
47
- pulumi_newrelic/cloud/aws_integrations.py,sha256=B7j6HqwaVZj_X5UkJeF5WGTL2MaXPR41xBm0u2476UM,180631
48
- pulumi_newrelic/cloud/aws_link_account.py,sha256=FbF1YwUcMetk8phbGyv7qyWwBWPKkx4VQEoEphehyLY,15413
49
- pulumi_newrelic/cloud/azure_integrations.py,sha256=3vXVY46Quq7A-nwxJM8ZzU15gV9GyA0fVatfIzUycvY,109330
50
- pulumi_newrelic/cloud/azure_link_account.py,sha256=1dKBjrqoMXOJtDqbDFhzRJtEWuCB7pzE6dnwbvsFuJM,18449
51
- pulumi_newrelic/cloud/gcp_integrations.py,sha256=OU3KJ88cSa09NV46-CZv8MJh8Swov_8aBlKk6wb8PJM,83406
52
- pulumi_newrelic/cloud/gcp_link_account.py,sha256=sWWOeapZnxAjc1u1rHKmO-paHHHp-5_q1KY1d1DfZzA,12349
53
- pulumi_newrelic/cloud/outputs.py,sha256=jinZLaji4zslRgyoqO90LyZ4Qpoj2S6dZBMJOYpdTn4,352906
54
- pulumi_newrelic/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
55
- pulumi_newrelic/config/vars.py,sha256=LoerUF1FfCG5xvxTF5mWFEP5ClRaMAK8KdgJiPmchp4,2110
56
- pulumi_newrelic/insights/__init__.py,sha256=-tPATEB7zs4lUfIRTT0wNnN9a7uvXHsRi315Y9-rm30,335
57
- pulumi_newrelic/insights/_inputs.py,sha256=kJvD1eQdE3VEtDeGj6Yi_ifFy18XlK3Y1zWhBWuZAhU,2765
58
- pulumi_newrelic/insights/event.py,sha256=I04_QzU5Xf3i4DNhfuu2E0WwYLKsAEmbfS1ql-RMr_w,10052
59
- pulumi_newrelic/insights/outputs.py,sha256=bJtcCdj3SXMK1LSJTvHATKWblDFARhddNi0SDo1I0-0,1874
60
- pulumi_newrelic/plugins/__init__.py,sha256=UeoukmKyu6Xm6K4W4z5N_CzyB634ttFEcP7GH9nTyeA,374
61
- pulumi_newrelic/plugins/_inputs.py,sha256=FxdmKs4Tg8NXXcXW4YIIHtwxSzwvc_FizQS_QeAoRiw,17018
62
- pulumi_newrelic/plugins/application_settings.py,sha256=Uqz4Oz2q2ymmgQXWe1_5n0FJ1ZE9mqP3YovBI4EO-r8,15437
63
- pulumi_newrelic/plugins/outputs.py,sha256=-QBbMX5uPcEPsTA3v-Qia3kT9DzQp-dA6D80E6cfFn4,16831
64
- pulumi_newrelic/plugins/workload.py,sha256=gCa04x_MRodvD7YtJJrASKf9tbdtRAeFlUjnoIDL55g,31618
65
- pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
66
- pulumi_newrelic/synthetics/_inputs.py,sha256=k4_MaTwp_iXasOHX3XswGJIogWLzPCBH6GnkJPk9a4Q,12981
67
- pulumi_newrelic/synthetics/alert_condition.py,sha256=LaJOmsVYgKLObbPqWAvwQlbAyQwc7GwTXWimTm0IvXc,20478
68
- pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=hlntCIQa9CuD-wvfRqFrdpBA-uLMhCcR_2cU1TeYrHE,31292
69
- pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=g_OuI2vfFU6D7DQYqhk6QXHz_u1RFXln0PjZoK-Izd4,33388
70
- pulumi_newrelic/synthetics/get_private_location.py,sha256=Phsn8ZDUJhSvJLdXEowWPoS-VBm1nRcgLNwMIduxKSw,5787
71
- pulumi_newrelic/synthetics/get_secure_credential.py,sha256=bPYHCwVTY2XxM10l7OnvsuodBSp0wutBlkZR-s_PixQ,5479
72
- pulumi_newrelic/synthetics/monitor.py,sha256=VGFIKNfrG2jvn1plfayMNtwC59Zfamuas1IhC_qgIDo,64497
73
- pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=gTYemJ-XKHhx_BswPyIIe2c4Hd3wzkGYFBbtHmZuzq4,34733
74
- pulumi_newrelic/synthetics/outputs.py,sha256=0APd6Xmvym_qkH4IHsD_pqbDVFKV7UaUAASHn7xx9xQ,10581
75
- pulumi_newrelic/synthetics/private_location.py,sha256=x2Ji28435eqLVwZY9tXLN4QV08KpdF7rQO-VwaAU5Yg,17171
76
- pulumi_newrelic/synthetics/script_monitor.py,sha256=s7hJqIFfSZ99ZQB7L1SbDdEEPw3NniaOqYfxMAg0pmU,53826
77
- pulumi_newrelic/synthetics/secure_credential.py,sha256=O5SFzx3UNw64KjxCRzxatsXoPjT_e6VyJ32JTa0f0Dw,15604
78
- pulumi_newrelic/synthetics/step_monitor.py,sha256=V84V3y6WFk_xfnSx77YB7FhehgIOH0kkvFQBJXqKBAI,34385
79
- pulumi_newrelic-5.16.0a1698964311.dist-info/METADATA,sha256=aC3IJWufi-fkPNYXcmhaE7DfldPg_ct0fMj5jcKCU7Q,3900
80
- pulumi_newrelic-5.16.0a1698964311.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
81
- pulumi_newrelic-5.16.0a1698964311.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
82
- pulumi_newrelic-5.16.0a1698964311.dist-info/RECORD,,