pulumi-newrelic 5.31.0a1724997093__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/_inputs.py +980 -0
- pulumi_newrelic/alert_channel.py +2 -2
- pulumi_newrelic/alert_policy_channel.py +2 -2
- pulumi_newrelic/api_access_key.py +12 -0
- pulumi_newrelic/cloud/aws_integrations.py +350 -1152
- pulumi_newrelic/infra_alert_condition.py +2 -2
- pulumi_newrelic/notification_channel.py +6 -2
- pulumi_newrelic/outputs.py +812 -0
- 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.0a1724997093.dist-info → pulumi_newrelic-5.31.1.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.31.0a1724997093.dist-info → pulumi_newrelic-5.31.1.dist-info}/RECORD +15 -15
- {pulumi_newrelic-5.31.0a1724997093.dist-info → pulumi_newrelic-5.31.1.dist-info}/WHEEL +1 -1
- {pulumi_newrelic-5.31.0a1724997093.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
|
|
@@ -383,10 +383,12 @@ class NotificationChannel(pulumi.CustomResource):
|
|
383
383
|
{
|
384
384
|
"key": "project",
|
385
385
|
"value": "10000",
|
386
|
+
"label": "Project-Name",
|
386
387
|
},
|
387
388
|
{
|
388
389
|
"key": "issuetype",
|
389
390
|
"value": "10004",
|
391
|
+
"label": "Bug",
|
390
392
|
},
|
391
393
|
{
|
392
394
|
"key": "description",
|
@@ -586,7 +588,7 @@ class NotificationChannel(pulumi.CustomResource):
|
|
586
588
|
|
587
589
|
More details about the channels API can be found [here](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels).
|
588
590
|
### Moving from Legacy Alert Channels to Notification Channels
|
589
|
-
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.
|
590
592
|
|
591
593
|
If you're currently using `AlertChannel` to manage channels, we **strongly recommend** migrating to these notifications-based resources at the earliest.
|
592
594
|
|
@@ -725,10 +727,12 @@ class NotificationChannel(pulumi.CustomResource):
|
|
725
727
|
{
|
726
728
|
"key": "project",
|
727
729
|
"value": "10000",
|
730
|
+
"label": "Project-Name",
|
728
731
|
},
|
729
732
|
{
|
730
733
|
"key": "issuetype",
|
731
734
|
"value": "10004",
|
735
|
+
"label": "Bug",
|
732
736
|
},
|
733
737
|
{
|
734
738
|
"key": "description",
|
@@ -928,7 +932,7 @@ class NotificationChannel(pulumi.CustomResource):
|
|
928
932
|
|
929
933
|
More details about the channels API can be found [here](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels).
|
930
934
|
### Moving from Legacy Alert Channels to Notification Channels
|
931
|
-
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.
|
932
936
|
|
933
937
|
If you're currently using `AlertChannel` to manage channels, we **strongly recommend** migrating to these notifications-based resources at the earliest.
|
934
938
|
|