pulumi-newrelic 5.24.0a1715356536__py3-none-any.whl → 5.25.0__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 (69) hide show
  1. pulumi_newrelic/_inputs.py +499 -93
  2. pulumi_newrelic/account_management.py +14 -14
  3. pulumi_newrelic/alert_channel.py +38 -38
  4. pulumi_newrelic/alert_condition.py +153 -112
  5. pulumi_newrelic/alert_muting_rule.py +31 -31
  6. pulumi_newrelic/alert_policy.py +47 -41
  7. pulumi_newrelic/alert_policy_channel.py +42 -42
  8. pulumi_newrelic/api_access_key.py +28 -28
  9. pulumi_newrelic/browser_application.py +14 -14
  10. pulumi_newrelic/cloud/aws_govcloud_integrations.py +28 -28
  11. pulumi_newrelic/cloud/aws_govcloud_link_account.py +14 -14
  12. pulumi_newrelic/cloud/aws_integrations.py +28 -28
  13. pulumi_newrelic/cloud/aws_link_account.py +14 -14
  14. pulumi_newrelic/cloud/azure_integrations.py +28 -28
  15. pulumi_newrelic/cloud/azure_link_account.py +14 -14
  16. pulumi_newrelic/cloud/gcp_integrations.py +28 -28
  17. pulumi_newrelic/cloud/gcp_link_account.py +14 -14
  18. pulumi_newrelic/config/__init__.pyi +1 -1
  19. pulumi_newrelic/config/vars.py +2 -2
  20. pulumi_newrelic/data_partition_rule.py +14 -14
  21. pulumi_newrelic/entity_tags.py +7 -7
  22. pulumi_newrelic/events_to_metrics_rule.py +16 -16
  23. pulumi_newrelic/get_account.py +7 -7
  24. pulumi_newrelic/get_alert_channel.py +8 -8
  25. pulumi_newrelic/get_alert_policy.py +16 -7
  26. pulumi_newrelic/get_application.py +2 -2
  27. pulumi_newrelic/get_cloud_account.py +9 -9
  28. pulumi_newrelic/get_entity.py +15 -15
  29. pulumi_newrelic/get_notification_destination.py +7 -7
  30. pulumi_newrelic/get_obfuscation_expression.py +9 -9
  31. pulumi_newrelic/get_service_level_alert_helper.py +28 -10
  32. pulumi_newrelic/get_test_grok_pattern.py +7 -7
  33. pulumi_newrelic/infra_alert_condition.py +119 -140
  34. pulumi_newrelic/insights/event.py +13 -0
  35. pulumi_newrelic/log_parsing_rule.py +14 -14
  36. pulumi_newrelic/monitor_downtime.py +14 -14
  37. pulumi_newrelic/notification_channel.py +36 -36
  38. pulumi_newrelic/notification_destination.py +28 -24
  39. pulumi_newrelic/nrql_alert_condition.py +32 -32
  40. pulumi_newrelic/nrql_drop_rule.py +44 -44
  41. pulumi_newrelic/obfuscation_expression.py +16 -16
  42. pulumi_newrelic/obfuscation_rule.py +14 -14
  43. pulumi_newrelic/one_dashboard.py +58 -52
  44. pulumi_newrelic/one_dashboard_json.py +14 -14
  45. pulumi_newrelic/one_dashboard_raw.py +14 -14
  46. pulumi_newrelic/outputs.py +482 -77
  47. pulumi_newrelic/plugins/_inputs.py +8 -8
  48. pulumi_newrelic/plugins/outputs.py +8 -8
  49. pulumi_newrelic/plugins/workload.py +83 -83
  50. pulumi_newrelic/provider.py +14 -9
  51. pulumi_newrelic/pulumi-plugin.json +2 -1
  52. pulumi_newrelic/service_level.py +85 -6
  53. pulumi_newrelic/synthetics/alert_condition.py +56 -28
  54. pulumi_newrelic/synthetics/broken_links_monitor.py +32 -14
  55. pulumi_newrelic/synthetics/cert_check_monitor.py +32 -14
  56. pulumi_newrelic/synthetics/get_private_location.py +11 -11
  57. pulumi_newrelic/synthetics/get_secure_credential.py +13 -5
  58. pulumi_newrelic/synthetics/monitor.py +18 -14
  59. pulumi_newrelic/synthetics/multi_location_alert_condition.py +77 -63
  60. pulumi_newrelic/synthetics/private_location.py +14 -14
  61. pulumi_newrelic/synthetics/script_monitor.py +18 -14
  62. pulumi_newrelic/synthetics/secure_credential.py +24 -31
  63. pulumi_newrelic/synthetics/step_monitor.py +32 -14
  64. pulumi_newrelic/workflow.py +14 -14
  65. {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.25.0.dist-info}/METADATA +1 -1
  66. pulumi_newrelic-5.25.0.dist-info/RECORD +89 -0
  67. pulumi_newrelic-5.24.0a1715356536.dist-info/RECORD +0 -89
  68. {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.25.0.dist-info}/WHEEL +0 -0
  69. {pulumi_newrelic-5.24.0a1715356536.dist-info → pulumi_newrelic-5.25.0.dist-info}/top_level.txt +0 -0
@@ -19,7 +19,7 @@ class WorkflowArgs:
19
19
  destinations: pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]],
20
20
  issues_filter: pulumi.Input['WorkflowIssuesFilterArgs'],
21
21
  muting_rules_handling: pulumi.Input[str],
22
- account_id: Optional[pulumi.Input[int]] = None,
22
+ account_id: Optional[pulumi.Input[str]] = None,
23
23
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
24
24
  enabled: Optional[pulumi.Input[bool]] = None,
25
25
  enrichments: Optional[pulumi.Input['WorkflowEnrichmentsArgs']] = None,
@@ -30,7 +30,7 @@ class WorkflowArgs:
30
30
  :param pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]] destinations: Notification configuration. See Nested destination blocks below for details.
31
31
  :param pulumi.Input['WorkflowIssuesFilterArgs'] issues_filter: A filter used to identify issues handled by this workflow. See Nested issues_filter blocks below for details.
32
32
  :param pulumi.Input[str] muting_rules_handling: How to handle muted issues. See Muting Rules below for details.
33
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
33
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
34
34
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
35
35
  these two are different flags, but they are functionally identical. Defaults to true.
36
36
  :param pulumi.Input[bool] enabled: Whether workflow is enabled. Defaults to true.
@@ -95,14 +95,14 @@ class WorkflowArgs:
95
95
 
96
96
  @property
97
97
  @pulumi.getter(name="accountId")
98
- def account_id(self) -> Optional[pulumi.Input[int]]:
98
+ def account_id(self) -> Optional[pulumi.Input[str]]:
99
99
  """
100
100
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
101
101
  """
102
102
  return pulumi.get(self, "account_id")
103
103
 
104
104
  @account_id.setter
105
- def account_id(self, value: Optional[pulumi.Input[int]]):
105
+ def account_id(self, value: Optional[pulumi.Input[str]]):
106
106
  pulumi.set(self, "account_id", value)
107
107
 
108
108
  @property
@@ -173,7 +173,7 @@ class WorkflowArgs:
173
173
  @pulumi.input_type
174
174
  class _WorkflowState:
175
175
  def __init__(__self__, *,
176
- account_id: Optional[pulumi.Input[int]] = None,
176
+ account_id: Optional[pulumi.Input[str]] = None,
177
177
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]]] = None,
178
178
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
179
179
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -187,7 +187,7 @@ class _WorkflowState:
187
187
  workflow_id: Optional[pulumi.Input[str]] = None):
188
188
  """
189
189
  Input properties used for looking up and filtering Workflow resources.
190
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
190
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
191
191
  :param pulumi.Input[Sequence[pulumi.Input['WorkflowDestinationArgs']]] destinations: Notification configuration. See Nested destination blocks below for details.
192
192
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
193
193
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -231,14 +231,14 @@ class _WorkflowState:
231
231
 
232
232
  @property
233
233
  @pulumi.getter(name="accountId")
234
- def account_id(self) -> Optional[pulumi.Input[int]]:
234
+ def account_id(self) -> Optional[pulumi.Input[str]]:
235
235
  """
236
236
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
237
237
  """
238
238
  return pulumi.get(self, "account_id")
239
239
 
240
240
  @account_id.setter
241
- def account_id(self, value: Optional[pulumi.Input[int]]):
241
+ def account_id(self, value: Optional[pulumi.Input[str]]):
242
242
  pulumi.set(self, "account_id", value)
243
243
 
244
244
  @property
@@ -383,7 +383,7 @@ class Workflow(pulumi.CustomResource):
383
383
  def __init__(__self__,
384
384
  resource_name: str,
385
385
  opts: Optional[pulumi.ResourceOptions] = None,
386
- account_id: Optional[pulumi.Input[int]] = None,
386
+ account_id: Optional[pulumi.Input[str]] = None,
387
387
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]]] = None,
388
388
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
389
389
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -553,7 +553,7 @@ class Workflow(pulumi.CustomResource):
553
553
 
554
554
  :param str resource_name: The name of the resource.
555
555
  :param pulumi.ResourceOptions opts: Options for the resource.
556
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
556
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
557
557
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]] destinations: Notification configuration. See Nested destination blocks below for details.
558
558
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
559
559
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -743,7 +743,7 @@ class Workflow(pulumi.CustomResource):
743
743
  def _internal_init(__self__,
744
744
  resource_name: str,
745
745
  opts: Optional[pulumi.ResourceOptions] = None,
746
- account_id: Optional[pulumi.Input[int]] = None,
746
+ account_id: Optional[pulumi.Input[str]] = None,
747
747
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]]] = None,
748
748
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
749
749
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -789,7 +789,7 @@ class Workflow(pulumi.CustomResource):
789
789
  def get(resource_name: str,
790
790
  id: pulumi.Input[str],
791
791
  opts: Optional[pulumi.ResourceOptions] = None,
792
- account_id: Optional[pulumi.Input[int]] = None,
792
+ account_id: Optional[pulumi.Input[str]] = None,
793
793
  destinations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]]] = None,
794
794
  destinations_enabled: Optional[pulumi.Input[bool]] = None,
795
795
  enabled: Optional[pulumi.Input[bool]] = None,
@@ -808,7 +808,7 @@ class Workflow(pulumi.CustomResource):
808
808
  :param str resource_name: The unique name of the resulting resource.
809
809
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
810
810
  :param pulumi.ResourceOptions opts: Options for the resource.
811
- :param pulumi.Input[int] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
811
+ :param pulumi.Input[str] account_id: Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
812
812
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkflowDestinationArgs']]]] destinations: Notification configuration. See Nested destination blocks below for details.
813
813
  :param pulumi.Input[bool] destinations_enabled: **DEPRECATED** Whether destinations are enabled. Please use `enabled` instead:
814
814
  these two are different flags, but they are functionally identical. Defaults to true.
@@ -842,7 +842,7 @@ class Workflow(pulumi.CustomResource):
842
842
 
843
843
  @property
844
844
  @pulumi.getter(name="accountId")
845
- def account_id(self) -> pulumi.Output[int]:
845
+ def account_id(self) -> pulumi.Output[str]:
846
846
  """
847
847
  Determines the New Relic account in which the workflow is created. Defaults to the account defined in the provider section.
848
848
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.24.0a1715356536
3
+ Version: 5.25.0
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=C-HTnxxpPFB-8B5g_SNUL0OoN1nAm6eD5fCJPWiwTCo,494648
3
+ pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
+ pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
5
+ pulumi_newrelic/alert_channel.py,sha256=Z_Q2zeWaAavLmxPwVV7LTy6dAp6cDr8GtcNMkzXrrnA,21376
6
+ pulumi_newrelic/alert_condition.py,sha256=JLgduj2oWsWi9NG89Ffvflzb_6W45MHNw1TJsTbX1Ng,46583
7
+ pulumi_newrelic/alert_muting_rule.py,sha256=GeV7GG0PWnM6VRzHhFQGv7dRuX0cQDWjRTyqY4dAL-M,19155
8
+ pulumi_newrelic/alert_policy.py,sha256=en_AWTXjMym2miWLxp_e78kXpBpsmJtg4IhDhVnbhHQ,26743
9
+ pulumi_newrelic/alert_policy_channel.py,sha256=UzBH24klGuITsJlw4nyo0E__-8fevYBdOYhDx9xbWEM,15477
10
+ pulumi_newrelic/api_access_key.py,sha256=buDhGJHHgnLzPLbYcsaBjl1bQDukgLzdk1FzbIkX_Ts,21435
11
+ pulumi_newrelic/browser_application.py,sha256=tVD3ZgHHXTTe1t9fFBDbeT9agigtzCajQJlmupdMd-4,21042
12
+ pulumi_newrelic/data_partition_rule.py,sha256=C_G9maLjFeJlv_XUfDmgWZIgGVO2ojlOcx0mZsciMZU,20433
13
+ pulumi_newrelic/entity_tags.py,sha256=XWgh9ZPP4fvsTVZSHmnuY27KxEy8aw6ppo5Gzr4iwJQ,10127
14
+ pulumi_newrelic/events_to_metrics_rule.py,sha256=lQAWZJc5TmVWJoznib_yniMV5kCFONWwnhGmxmS9gl4,15994
15
+ pulumi_newrelic/get_account.py,sha256=uZnFdoQVwUd-Qz4WHtA7EHiylDS10JHJvsn4j2dONww,4651
16
+ pulumi_newrelic/get_alert_channel.py,sha256=QXHddDxfYIDOpEQFkQ_uBs_CV94f_sn8qeTESbJGSVQ,5416
17
+ pulumi_newrelic/get_alert_policy.py,sha256=hfBkNm6FPKiSJ32K5OXRIC8DS0mUdneESQUWX2p1oBk,8795
18
+ pulumi_newrelic/get_application.py,sha256=BAfcQqa2YJR3ggMugqvBydAT59ujX_ftPQmsDtsd2Uw,5274
19
+ pulumi_newrelic/get_authentication_domain.py,sha256=wy5i9vGaNqYofpBE7gLrwmJAaM-NkdMglOK0lprSFjM,3498
20
+ pulumi_newrelic/get_cloud_account.py,sha256=7uBL8KxGdma3ZR8KQzRXG61R-inusfXHXv_6bEQK3fI,5191
21
+ pulumi_newrelic/get_entity.py,sha256=gITvF4hj6uHTJ3YB2Lbgh6B4k9mwAn7sL5JnjK_lfws,17830
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=xuZ8M317q9-z-bPWdgXpok9W-malMqAaPRQJPXJaL80,8152
25
+ pulumi_newrelic/get_obfuscation_expression.py,sha256=6-EpgfNLHmWmx-Na8IQ9UCaBz1j8AnPuGC0XzBOb2lc,4921
26
+ pulumi_newrelic/get_service_level_alert_helper.py,sha256=dq3eeFGE5dgAciFju-GhTBD2Ics07AkOyqb4VfpIoLw,20164
27
+ pulumi_newrelic/get_test_grok_pattern.py,sha256=mCiJXbpiQLg2oeEa5_rQTI38ZsXkWml4lgv1s6jEpPE,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=B7jF2z0zmWmSWQjOTlYad_XahrmUtCi90msMlFMnlD8,57993
31
+ pulumi_newrelic/log_parsing_rule.py,sha256=1NgUsL1PQNd5-5eMUiOA5fL0vT91DNQ6KqmcWSyn5l0,22408
32
+ pulumi_newrelic/monitor_downtime.py,sha256=NJ4MNCNvsprCc3tsFItaicyZQFM_U5m9oX6jQtyNv_8,40928
33
+ pulumi_newrelic/notification_channel.py,sha256=24p_eoHWZO_Batk8OEryh4OW48W8YuYGIbnmcEimmas,45732
34
+ pulumi_newrelic/notification_destination.py,sha256=jONcX2PGNqhVFQhA6rWe0850X5CK6nCH2RJzjCiNCDQ,37949
35
+ pulumi_newrelic/nrql_alert_condition.py,sha256=WXB043NuAgNxeeBhpC0bn2r-x2SIFpVFSdfuahLq4nE,105437
36
+ pulumi_newrelic/nrql_drop_rule.py,sha256=PO9gtn6xHMEHjUdfZB_h5AWnWFFnfihRxwxEoGsS_tk,17538
37
+ pulumi_newrelic/obfuscation_expression.py,sha256=ujOP16liz5adKssyTNmoSbKJsypZAejSi6eCsQtC54c,12343
38
+ pulumi_newrelic/obfuscation_rule.py,sha256=J1951kAaBWDlmFWEQsSASz7PmjGSpQYxvqV8wLliTFY,17809
39
+ pulumi_newrelic/one_dashboard.py,sha256=b3DpP1ryeGV6WYUghTaAN6963nMrVeWHvLeInBE42rM,20490
40
+ pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0qg-NVT-s,12622
41
+ pulumi_newrelic/one_dashboard_raw.py,sha256=M9TgRdqEwEDFwJtzN2retbMG3b8aNih10hL0n0MihUY,23542
42
+ pulumi_newrelic/outputs.py,sha256=60ET-16ARCwCRMdAp6Vpq1v1zxpxosgG3kQDAdbF9cU,487050
43
+ pulumi_newrelic/provider.py,sha256=UIT58VArPFzjnWIR6uA-WzNzFC1AaWDSSZg9ni5BUxc,19663
44
+ pulumi_newrelic/pulumi-plugin.json,sha256=WKU-J8dwf1S-tpEKf4P5jAkXmfF0-Otn4FDvv7JlDs8,68
45
+ pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ pulumi_newrelic/service_level.py,sha256=HGA0UqZYKEzclHATagPnyDpvsrQodHrjvewC6EkACHc,30071
47
+ pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
48
+ pulumi_newrelic/workflow.py,sha256=AcY9GJHF3SB8A-WNOed-UBNFxU20R3x8FpA6DSHRXIg,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=MVjSXcxWj4zZs0FdhVijV-XQs68Rf7YzXHRpUn5MLRA,62204
52
+ pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=_FJ8URQzEeNnkMCndsq7oKOe8gRIFWvsQ8HbGTvGNuc,20827
53
+ pulumi_newrelic/cloud/aws_integrations.py,sha256=eINJlBbQsp6R7wPtRw_ezhzHUVgv2Ru13AHo_-0xY5o,173286
54
+ pulumi_newrelic/cloud/aws_link_account.py,sha256=ANyN1A7_TLGOcCwnMMX6RtXRAO53wLFUAI7c97osKNo,15495
55
+ pulumi_newrelic/cloud/azure_integrations.py,sha256=5FrYyM_qBdqEGq79SqZmDr_PMFVETjOuzscMug5K-rs,112058
56
+ pulumi_newrelic/cloud/azure_link_account.py,sha256=QR7mViJ5B-ibn5vJg2Cgn0RddMDfYHWjRKzN7y19EoE,18559
57
+ pulumi_newrelic/cloud/gcp_integrations.py,sha256=JvYZ2rspkTVuRfGG8OfyBYIw79eFKN6n2F9Sn_I7qw4,84528
58
+ pulumi_newrelic/cloud/gcp_link_account.py,sha256=OvPvdjOuWg1v-DrONAXQNgsPiuRNo-xBH8LqafermHo,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=Ei1nds8BYdBSKrzdgc14xag-tIZ9fdv02sZzgHGgD90,845
62
+ pulumi_newrelic/config/vars.py,sha256=ic6v5AqvrrrkDKHFsxvLzMdVw24XIsIu_vjp34R3388,2102
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=nWFVAVFmrUn6MSkFS949-uc_m2qadxJ6v_H1CXXtPUo,10054
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=AuXZDBxlSZFfTEucVdw1NajrlnLmkDJbxeWW1ZrCppc,16738
69
+ pulumi_newrelic/plugins/application_settings.py,sha256=gih1hG-Rh786Uqj-csmAeOJVeUGVcIONts_KZrra2gw,16324
70
+ pulumi_newrelic/plugins/outputs.py,sha256=hDj9PHWGK_VrH0RU3spmsg8GkeTCgitR70WapbIEomc,16551
71
+ pulumi_newrelic/plugins/workload.py,sha256=yf-bG6cYs7_yFY8P8QJ_gbbczII9huKQtZ1r04MjlqY,41948
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=za-6iMuqsSiQy12JYYBt8tBr_llijNmY17-RVqb6C6Q,21515
75
+ pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=jfmHMs03-1vE4BwxxUv9RhU8kQMDTBfc1Z5BRqtaXiU,45083
76
+ pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=BLXDDLp_BFwgy67B_LpCwOwj_eDFiR3NFgAjkfH4hQ0,47171
77
+ pulumi_newrelic/synthetics/get_private_location.py,sha256=4ZJdNrhcmeLdFlcYWauHqDlcluhpBdHKShnD3XF5eKw,5795
78
+ pulumi_newrelic/synthetics/get_secure_credential.py,sha256=xexkDSteNi9kn0UuucFUSTIbz_NaHOzw6HTsg2yGoEU,5479
79
+ pulumi_newrelic/synthetics/monitor.py,sha256=4LwxwVnfJny5Qmsn8qesOhIp0kI3gaU_bvi0N2eItkM,65030
80
+ pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=sUgfNP5DMvIsqEtgbQ1DoRbxhq4d76pdnMm8Kaz3xkA,34959
81
+ pulumi_newrelic/synthetics/outputs.py,sha256=vYBs8vBYKPBJoLpopcyZbVX8bHCXTuCx4hFehc4R_Hs,11169
82
+ pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
83
+ pulumi_newrelic/synthetics/script_monitor.py,sha256=Yu1R5udNIk5CSTgCV2-ywGeHGWrPfimNjXL34qQNyo8,54359
84
+ pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
85
+ pulumi_newrelic/synthetics/step_monitor.py,sha256=5rKhjFCAUndEzVtpuHlk-69c-X10eIpIge1TgGTnTao,50367
86
+ pulumi_newrelic-5.25.0.dist-info/METADATA,sha256=xTJIPK5LWyhorJT72hCyGtW8rSqcKtkOMxDpM1lv-_4,3889
87
+ pulumi_newrelic-5.25.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
88
+ pulumi_newrelic-5.25.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
+ pulumi_newrelic-5.25.0.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=AH9kpiTkrLaHTpeVO6OGTz4pkLZlpxISg-2O-MbR0Ag,23658
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=tLwJ1LnapjuXL4RfozPdmAZAQ_vmRcH1td0HjCVO0ls,173286
54
- pulumi_newrelic/cloud/aws_link_account.py,sha256=AW3QatCvWuJngSH90XNq0F-5-3KdEJhqR7ApRwSTWTY,15495
55
- pulumi_newrelic/cloud/azure_integrations.py,sha256=p6dETnDXsq-hZ6g-DffBXmH9HD5h8VhMdKsQB6di2NU,112058
56
- pulumi_newrelic/cloud/azure_link_account.py,sha256=mMOVLFsyXt1JF7LC7Iv7RmDHqOMntE6jTyhlLIjoV0Y,18559
57
- pulumi_newrelic/cloud/gcp_integrations.py,sha256=6VMkq5rGcb5ooUta4KV58JxiwcImZTaP4Mzgu_6q53g,84528
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.24.0a1715356536.dist-info/METADATA,sha256=aPsbDcA-hC4_lk1ok1QJS7QZ-R9w8_YvhPCn567S7JE,3900
87
- pulumi_newrelic-5.24.0a1715356536.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
88
- pulumi_newrelic-5.24.0a1715356536.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
- pulumi_newrelic-5.24.0a1715356536.dist-info/RECORD,,