pulumi-newrelic 5.31.0a1725491574__py3-none-any.whl → 5.31.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_newrelic/alert_channel.py +2 -2
- pulumi_newrelic/alert_policy_channel.py +2 -2
- pulumi_newrelic/cloud/aws_integrations.py +350 -1152
- pulumi_newrelic/infra_alert_condition.py +2 -2
- pulumi_newrelic/notification_channel.py +2 -2
- pulumi_newrelic/pulumi-plugin.json +1 -1
- pulumi_newrelic/synthetics/alert_condition.py +2 -2
- pulumi_newrelic/workflow.py +2 -2
- {pulumi_newrelic-5.31.0a1725491574.dist-info → pulumi_newrelic-5.31.1.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.31.0a1725491574.dist-info → pulumi_newrelic-5.31.1.dist-info}/RECORD +12 -12
- {pulumi_newrelic-5.31.0a1725491574.dist-info → pulumi_newrelic-5.31.1.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.31.0a1725491574.dist-info → pulumi_newrelic-5.31.1.dist-info}/top_level.txt +0 -0
@@ -595,7 +595,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
595
595
|
"""
|
596
596
|
Use this resource to create and manage Infrastructure alert conditions in New Relic.
|
597
597
|
|
598
|
-
> **WARNING:** The `InfraAlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition examples.
|
598
|
+
> **WARNING:** The `InfraAlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition would be a preferred alternative to configure alert conditions - in most cases, feature parity can be achieved with a NRQL query. For more details and examples on moving away from infra alert conditions to the NRQL based alternative, please check out these examples.
|
599
599
|
|
600
600
|
## Example Usage
|
601
601
|
|
@@ -753,7 +753,7 @@ class InfraAlertCondition(pulumi.CustomResource):
|
|
753
753
|
"""
|
754
754
|
Use this resource to create and manage Infrastructure alert conditions in New Relic.
|
755
755
|
|
756
|
-
> **WARNING:** The `InfraAlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition examples.
|
756
|
+
> **WARNING:** The `InfraAlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition would be a preferred alternative to configure alert conditions - in most cases, feature parity can be achieved with a NRQL query. For more details and examples on moving away from infra alert conditions to the NRQL based alternative, please check out these examples.
|
757
757
|
|
758
758
|
## Example Usage
|
759
759
|
|
@@ -588,7 +588,7 @@ class NotificationChannel(pulumi.CustomResource):
|
|
588
588
|
|
589
589
|
More details about the channels API can be found [here](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels).
|
590
590
|
### Moving from Legacy Alert Channels to Notification Channels
|
591
|
-
As described in the documentation of this resource, channels can be created and managed using `NotificationDestination`, which is **deprecated** and will be **removed in a future major release**, as stated in the documentation of the resource.
|
591
|
+
As described in the documentation of this resource, channels can be created and managed using `NotificationDestination` and `NotificationChannel`. A combination of these resources is an alternative to the legacy resource `AlertChannel`, which is **deprecated** and will be **removed in a future major release**, as stated in the documentation of the resource.
|
592
592
|
|
593
593
|
If you're currently using `AlertChannel` to manage channels, we **strongly recommend** migrating to these notifications-based resources at the earliest.
|
594
594
|
|
@@ -932,7 +932,7 @@ class NotificationChannel(pulumi.CustomResource):
|
|
932
932
|
|
933
933
|
More details about the channels API can be found [here](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels).
|
934
934
|
### Moving from Legacy Alert Channels to Notification Channels
|
935
|
-
As described in the documentation of this resource, channels can be created and managed using `NotificationDestination`, which is **deprecated** and will be **removed in a future major release**, as stated in the documentation of the resource.
|
935
|
+
As described in the documentation of this resource, channels can be created and managed using `NotificationDestination` and `NotificationChannel`. A combination of these resources is an alternative to the legacy resource `AlertChannel`, which is **deprecated** and will be **removed in a future major release**, as stated in the documentation of the resource.
|
936
936
|
|
937
937
|
If you're currently using `AlertChannel` to manage channels, we **strongly recommend** migrating to these notifications-based resources at the earliest.
|
938
938
|
|
@@ -231,7 +231,7 @@ class AlertCondition(pulumi.CustomResource):
|
|
231
231
|
"""
|
232
232
|
Use this resource to create and manage synthetics alert conditions in New Relic.
|
233
233
|
|
234
|
-
> **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition example.
|
234
|
+
> **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition would be a preferred alternative to configure alert conditions - in most cases, feature parity can be achieved with a NRQL query. For more details and examples on moving away from synthetics alert conditions to the NRQL based alternative, please check out this example.
|
235
235
|
|
236
236
|
## Example Usage
|
237
237
|
|
@@ -325,7 +325,7 @@ class AlertCondition(pulumi.CustomResource):
|
|
325
325
|
"""
|
326
326
|
Use this resource to create and manage synthetics alert conditions in New Relic.
|
327
327
|
|
328
|
-
> **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition example.
|
328
|
+
> **WARNING:** The `synthetics.AlertCondition` resource is deprecated and will be removed in the next major release. The resource NrqlAlertCondition would be a preferred alternative to configure alert conditions - in most cases, feature parity can be achieved with a NRQL query. For more details and examples on moving away from synthetics alert conditions to the NRQL based alternative, please check out this example.
|
329
329
|
|
330
330
|
## Example Usage
|
331
331
|
|
pulumi_newrelic/workflow.py
CHANGED
@@ -527,7 +527,7 @@ class Workflow(pulumi.CustomResource):
|
|
527
527
|
More details about the workflows can be found [here](https://docs.newrelic.com/docs/alerts-applied-intelligence/applied-intelligence/incident-workflows/incident-workflows/).
|
528
528
|
|
529
529
|
### Moving from Legacy Alert Policy Channels to Workflows
|
530
|
-
As described in the documentation of this resource, mapping alert channels (created using `NotificationDestination`).
|
530
|
+
As described in the documentation of this resource, mapping alert channels (created using `NotificationDestination` and `NotificationChannel`) to policies can be performed using the `Workflow` resource, which is an alternative to the legacy resource `AlertPolicyChannel` (which consumes alert channels created using the legacy resource `AlertChannel`).
|
531
531
|
|
532
532
|
Both of the legacy resources mentioned above, `AlertChannel` and `AlertPolicyChannel` are **deprecated** and will be **removed in a future major release**, as stated in the documentation of both of these resources.
|
533
533
|
|
@@ -713,7 +713,7 @@ class Workflow(pulumi.CustomResource):
|
|
713
713
|
More details about the workflows can be found [here](https://docs.newrelic.com/docs/alerts-applied-intelligence/applied-intelligence/incident-workflows/incident-workflows/).
|
714
714
|
|
715
715
|
### Moving from Legacy Alert Policy Channels to Workflows
|
716
|
-
As described in the documentation of this resource, mapping alert channels (created using `NotificationDestination`).
|
716
|
+
As described in the documentation of this resource, mapping alert channels (created using `NotificationDestination` and `NotificationChannel`) to policies can be performed using the `Workflow` resource, which is an alternative to the legacy resource `AlertPolicyChannel` (which consumes alert channels created using the legacy resource `AlertChannel`).
|
717
717
|
|
718
718
|
Both of the legacy resources mentioned above, `AlertChannel` and `AlertPolicyChannel` are **deprecated** and will be **removed in a future major release**, as stated in the documentation of both of these resources.
|
719
719
|
|
@@ -2,11 +2,11 @@ pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,1
|
|
2
2
|
pulumi_newrelic/_inputs.py,sha256=luicxeYNxDmIsa2-nMVrwOSsVDM2OlfNvTtAJJHnqIY,547954
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
4
|
pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
|
5
|
-
pulumi_newrelic/alert_channel.py,sha256=
|
5
|
+
pulumi_newrelic/alert_channel.py,sha256=K8eeh3NMFMeExKdxMC1kmOHQQKn-qdL2m_tgYn_FRwk,21651
|
6
6
|
pulumi_newrelic/alert_condition.py,sha256=cZ4Je12c1plt0z06Ash7DrE0_EDqcIn7cTxeNhVY_P0,46534
|
7
7
|
pulumi_newrelic/alert_muting_rule.py,sha256=29krxHeSE5j6Cl1GNjWAZuBc1pQrozy-8doyXSMdEbM,19154
|
8
8
|
pulumi_newrelic/alert_policy.py,sha256=Titb2zd1irx9HWPU7Z0MZkuzf9nfvuJdbQELnmnuSZw,26106
|
9
|
-
pulumi_newrelic/alert_policy_channel.py,sha256=
|
9
|
+
pulumi_newrelic/alert_policy_channel.py,sha256=0gX4fuiFxahmwjjLV3W0RXt-PzBX5v8fwWP9dzPifiQ,16069
|
10
10
|
pulumi_newrelic/api_access_key.py,sha256=Yd0aISR9SEHHFow2o8xlO4k602EKdJmxV0OocWqKJjs,22257
|
11
11
|
pulumi_newrelic/browser_application.py,sha256=tVD3ZgHHXTTe1t9fFBDbeT9agigtzCajQJlmupdMd-4,21042
|
12
12
|
pulumi_newrelic/data_partition_rule.py,sha256=C_G9maLjFeJlv_XUfDmgWZIgGVO2ojlOcx0mZsciMZU,20433
|
@@ -27,10 +27,10 @@ pulumi_newrelic/get_service_level_alert_helper.py,sha256=Yzrz3nyNl5l7BAkUHs5kWEE
|
|
27
27
|
pulumi_newrelic/get_test_grok_pattern.py,sha256=mCiJXbpiQLg2oeEa5_rQTI38ZsXkWml4lgv1s6jEpPE,5538
|
28
28
|
pulumi_newrelic/get_user.py,sha256=QxI7LiKvkiBOc-Ovj3ySFzD1l2SrGO1Y7-xnrGhfP3A,7284
|
29
29
|
pulumi_newrelic/group.py,sha256=ifVMSVvNIQ4YtoRXIBCpzu7jy3AsEt0iQAFC4M3Rb8g,20907
|
30
|
-
pulumi_newrelic/infra_alert_condition.py,sha256=
|
30
|
+
pulumi_newrelic/infra_alert_condition.py,sha256=FfV_20bsOQxdc-f6asr3aZr3zfSZoJ-wHCa778B59wE,58014
|
31
31
|
pulumi_newrelic/log_parsing_rule.py,sha256=1NgUsL1PQNd5-5eMUiOA5fL0vT91DNQ6KqmcWSyn5l0,22408
|
32
32
|
pulumi_newrelic/monitor_downtime.py,sha256=xykQl049eRPdC65CMoJ8f2tDziQ_iz16zcGX79Wg1Tg,40688
|
33
|
-
pulumi_newrelic/notification_channel.py,sha256=
|
33
|
+
pulumi_newrelic/notification_channel.py,sha256=i2k-H-297X5BUbwS9lqCyO68Y91DC0GgvR1Tsxjb24Q,47005
|
34
34
|
pulumi_newrelic/notification_destination.py,sha256=hYOsSjKmY4wqk6KMpmVMrBMMvfIXchjQi-HA27_B4wA,39007
|
35
35
|
pulumi_newrelic/nrql_alert_condition.py,sha256=AgaK5W9BEPnsr8jGPDFTh3SKi9_C_4qNcbBp-N8NH1A,112035
|
36
36
|
pulumi_newrelic/nrql_drop_rule.py,sha256=PO9gtn6xHMEHjUdfZB_h5AWnWFFnfihRxwxEoGsS_tk,17538
|
@@ -41,16 +41,16 @@ pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0
|
|
41
41
|
pulumi_newrelic/one_dashboard_raw.py,sha256=_5CWA6p6_tCfI135mTysVo0qjQf1xnYBNEZBDNmKqsw,23502
|
42
42
|
pulumi_newrelic/outputs.py,sha256=TdO-CuVJTKhSmIRRYYtL6L6i55OPM2XfwiamJrddutA,532114
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=0jsJMH9QVLraAmCG3i50qNBhoDtmBW2tfpby1cG7PYU,68
|
45
45
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
46
|
pulumi_newrelic/service_level.py,sha256=1MA3qQw6Y6d-HA6TIckt0B7FLZIhNCH8GuWhn0f246M,28806
|
47
47
|
pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
|
48
|
-
pulumi_newrelic/workflow.py,sha256=
|
48
|
+
pulumi_newrelic/workflow.py,sha256=uaUsd5hVi6OlTnLc5bPMsm68pmn78pjsXEl_WzStC64,42613
|
49
49
|
pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
|
50
50
|
pulumi_newrelic/cloud/_inputs.py,sha256=PFxNJ_jznxsz2yI12uFYQMjQOI2SoHg0Q8CVieaq5SU,294585
|
51
51
|
pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=dDgO1N5Jb05DM_ipxCf1Su5dxS93VBhjbsGKSexhdZQ,65239
|
52
52
|
pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=_FJ8URQzEeNnkMCndsq7oKOe8gRIFWvsQ8HbGTvGNuc,20827
|
53
|
-
pulumi_newrelic/cloud/aws_integrations.py,sha256=
|
53
|
+
pulumi_newrelic/cloud/aws_integrations.py,sha256=ClRDs7m_jcJBBwXeV09e7AwgUzufG6-ioZ-CZsug5hY,128394
|
54
54
|
pulumi_newrelic/cloud/aws_link_account.py,sha256=ANyN1A7_TLGOcCwnMMX6RtXRAO53wLFUAI7c97osKNo,15495
|
55
55
|
pulumi_newrelic/cloud/azure_integrations.py,sha256=WX7ZRZwulmMGH9Ve_VJBZuWoBLURkAfFbxuwl1voh0k,114017
|
56
56
|
pulumi_newrelic/cloud/azure_link_account.py,sha256=QR7mViJ5B-ibn5vJg2Cgn0RddMDfYHWjRKzN7y19EoE,18559
|
@@ -71,7 +71,7 @@ pulumi_newrelic/plugins/outputs.py,sha256=hDj9PHWGK_VrH0RU3spmsg8GkeTCgitR70Wapb
|
|
71
71
|
pulumi_newrelic/plugins/workload.py,sha256=P5cneA0nvHde5bwvn7588axMm_HW6EEtNTtRoJPfwa0,41161
|
72
72
|
pulumi_newrelic/synthetics/__init__.py,sha256=8O5SCapCaxLPwCnTDb8XJ3w1Vw_1avXP4bCZ3bTXxMs,680
|
73
73
|
pulumi_newrelic/synthetics/_inputs.py,sha256=wG65bo-G3IZqpM38sGqptmaKOxJSSmCySyhbUJLPZt4,13645
|
74
|
-
pulumi_newrelic/synthetics/alert_condition.py,sha256=
|
74
|
+
pulumi_newrelic/synthetics/alert_condition.py,sha256=iw-q0BRGtpjXShY6PNuc9VP4gkWyF1UwbfZCSUpAD18,21585
|
75
75
|
pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=hyQem6uR9RmPaf4fedhk-HqnSihbfgsLbLp8PiMPcJ4,37008
|
76
76
|
pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=FwRe7xXr_MG8sbICoM_w6CX4xUAJFFLe2W86zaVgyZg,39084
|
77
77
|
pulumi_newrelic/synthetics/get_private_location.py,sha256=qgChL7uKmcMLxrjvYGZ9Duh6zbdgX80TKHaF-7_LLBc,5701
|
@@ -83,7 +83,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ
|
|
83
83
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=3McDfGQHxaMQ7a_OlUdc3MWBqfL7RxfTpBbi4f2zZvA,57354
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
|
85
85
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=46ZEzNqsgxhgS7LUP7M4S7UgXQqA-1G45_bN7vfi8RI,42280
|
86
|
-
pulumi_newrelic-5.31.
|
87
|
-
pulumi_newrelic-5.31.
|
88
|
-
pulumi_newrelic-5.31.
|
89
|
-
pulumi_newrelic-5.31.
|
86
|
+
pulumi_newrelic-5.31.1.dist-info/METADATA,sha256=vbpY8mH6g1M1IZld5JPufroH946CHliw8DFhMyrvoso,3889
|
87
|
+
pulumi_newrelic-5.31.1.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
88
|
+
pulumi_newrelic-5.31.1.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.31.1.dist-info/RECORD,,
|
{pulumi_newrelic-5.31.0a1725491574.dist-info → pulumi_newrelic-5.31.1.dist-info}/top_level.txt
RENAMED
File without changes
|