pulumi-newrelic 5.22.0__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 +28 -1
  2. pulumi_newrelic/_inputs.py +10385 -2976
  3. pulumi_newrelic/_utilities.py +50 -10
  4. pulumi_newrelic/account_management.py +48 -42
  5. pulumi_newrelic/alert_channel.py +165 -175
  6. pulumi_newrelic/alert_condition.py +307 -319
  7. pulumi_newrelic/alert_muting_rule.py +193 -140
  8. pulumi_newrelic/alert_policy.py +121 -117
  9. pulumi_newrelic/alert_policy_channel.py +89 -79
  10. pulumi_newrelic/api_access_key.py +195 -193
  11. pulumi_newrelic/browser_application.py +120 -114
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +4267 -2714
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +206 -196
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +143 -228
  16. pulumi_newrelic/cloud/aws_integrations.py +510 -1490
  17. pulumi_newrelic/cloud/aws_link_account.py +80 -76
  18. pulumi_newrelic/cloud/azure_integrations.py +673 -587
  19. pulumi_newrelic/cloud/azure_link_account.py +121 -117
  20. pulumi_newrelic/cloud/gcp_integrations.py +428 -408
  21. pulumi_newrelic/cloud/gcp_link_account.py +65 -61
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1678 -2321
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +8 -3
  26. pulumi_newrelic/config/vars.py +22 -17
  27. pulumi_newrelic/data_partition_rule.py +119 -117
  28. pulumi_newrelic/entity_tags.py +111 -53
  29. pulumi_newrelic/events_to_metrics_rule.py +106 -102
  30. pulumi_newrelic/get_account.py +41 -33
  31. pulumi_newrelic/get_alert_channel.py +73 -28
  32. pulumi_newrelic/get_alert_policy.py +82 -33
  33. pulumi_newrelic/get_application.py +51 -43
  34. pulumi_newrelic/get_authentication_domain.py +27 -23
  35. pulumi_newrelic/get_cloud_account.py +43 -35
  36. pulumi_newrelic/get_entity.py +126 -183
  37. pulumi_newrelic/get_group.py +76 -31
  38. pulumi_newrelic/get_key_transaction.py +117 -42
  39. pulumi_newrelic/get_notification_destination.py +75 -38
  40. pulumi_newrelic/get_obfuscation_expression.py +47 -39
  41. pulumi_newrelic/get_service_level_alert_helper.py +189 -171
  42. pulumi_newrelic/get_test_grok_pattern.py +47 -36
  43. pulumi_newrelic/get_user.py +39 -31
  44. pulumi_newrelic/group.py +59 -199
  45. pulumi_newrelic/infra_alert_condition.py +399 -405
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +71 -28
  48. pulumi_newrelic/insights/event.py +54 -52
  49. pulumi_newrelic/insights/outputs.py +28 -23
  50. pulumi_newrelic/key_transaction.py +465 -0
  51. pulumi_newrelic/log_parsing_rule.py +159 -157
  52. pulumi_newrelic/monitor_downtime.py +311 -331
  53. pulumi_newrelic/notification_channel.py +534 -464
  54. pulumi_newrelic/notification_destination.py +238 -141
  55. pulumi_newrelic/nrql_alert_condition.py +820 -614
  56. pulumi_newrelic/nrql_drop_rule.py +113 -151
  57. pulumi_newrelic/obfuscation_expression.py +80 -76
  58. pulumi_newrelic/obfuscation_rule.py +115 -109
  59. pulumi_newrelic/one_dashboard.py +110 -104
  60. pulumi_newrelic/one_dashboard_json.py +69 -63
  61. pulumi_newrelic/one_dashboard_raw.py +212 -206
  62. pulumi_newrelic/outputs.py +4936 -2234
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +519 -89
  66. pulumi_newrelic/plugins/application_settings.py +463 -187
  67. pulumi_newrelic/plugins/outputs.py +336 -74
  68. pulumi_newrelic/plugins/workload.py +313 -189
  69. pulumi_newrelic/provider.py +156 -142
  70. pulumi_newrelic/pulumi-plugin.json +2 -1
  71. pulumi_newrelic/service_level.py +263 -263
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +265 -108
  74. pulumi_newrelic/synthetics/alert_condition.py +170 -180
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +297 -249
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +306 -258
  77. pulumi_newrelic/synthetics/get_private_location.py +51 -47
  78. pulumi_newrelic/synthetics/get_secure_credential.py +39 -31
  79. pulumi_newrelic/synthetics/monitor.py +658 -460
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +211 -205
  81. pulumi_newrelic/synthetics/outputs.py +92 -87
  82. pulumi_newrelic/synthetics/private_location.py +118 -112
  83. pulumi_newrelic/synthetics/script_monitor.py +613 -373
  84. pulumi_newrelic/synthetics/secure_credential.py +97 -95
  85. pulumi_newrelic/synthetics/step_monitor.py +445 -275
  86. pulumi_newrelic/user.py +84 -80
  87. pulumi_newrelic/workflow.py +336 -322
  88. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/METADATA +7 -6
  89. pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.22.0.dist-info/RECORD +0 -89
  92. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/top_level.txt +0 -0
@@ -1,16 +1,17 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pulumi_newrelic
3
- Version: 5.22.0
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.8
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.43.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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=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.22.0.dist-info/METADATA,sha256=BstnWxSu5MjJdcmJzmzVGIEH2Jyk7Zc9ZLHqgSNiRLk,3889
87
- pulumi_newrelic-5.22.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
88
- pulumi_newrelic-5.22.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
- pulumi_newrelic-5.22.0.dist-info/RECORD,,