pulumi-newrelic 5.28.0a1722923447__py3-none-any.whl → 5.28.0a1723107045__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 +18 -18
- pulumi_newrelic/get_notification_destination.py +1 -1
- pulumi_newrelic/notification_channel.py +31 -7
- pulumi_newrelic/notification_destination.py +21 -14
- pulumi_newrelic/outputs.py +14 -14
- pulumi_newrelic/pulumi-plugin.json +1 -1
- {pulumi_newrelic-5.28.0a1722923447.dist-info → pulumi_newrelic-5.28.0a1723107045.dist-info}/METADATA +1 -1
- {pulumi_newrelic-5.28.0a1722923447.dist-info → pulumi_newrelic-5.28.0a1723107045.dist-info}/RECORD +10 -10
- {pulumi_newrelic-5.28.0a1722923447.dist-info → pulumi_newrelic-5.28.0a1723107045.dist-info}/WHEEL +0 -0
- {pulumi_newrelic-5.28.0a1722923447.dist-info → pulumi_newrelic-5.28.0a1723107045.dist-info}/top_level.txt +0 -0
pulumi_newrelic/_inputs.py
CHANGED
@@ -6781,15 +6781,15 @@ class OneDashboardPageWidgetLineNullValueSeriesOverrideArgs:
|
|
6781
6781
|
@pulumi.input_type
|
6782
6782
|
class OneDashboardPageWidgetLineThresholdArgs:
|
6783
6783
|
def __init__(__self__, *,
|
6784
|
-
from_: Optional[pulumi.Input[
|
6784
|
+
from_: Optional[pulumi.Input[str]] = None,
|
6785
6785
|
name: Optional[pulumi.Input[str]] = None,
|
6786
6786
|
severity: Optional[pulumi.Input[str]] = None,
|
6787
|
-
to: Optional[pulumi.Input[
|
6787
|
+
to: Optional[pulumi.Input[str]] = None):
|
6788
6788
|
"""
|
6789
|
-
:param pulumi.Input[
|
6789
|
+
:param pulumi.Input[str] from_: The value 'from' which the threshold would need to be applied.
|
6790
6790
|
:param pulumi.Input[str] name: The title of the dashboard.
|
6791
6791
|
:param pulumi.Input[str] severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
6792
|
-
:param pulumi.Input[
|
6792
|
+
:param pulumi.Input[str] to: The value until which the threshold would need to be applied.
|
6793
6793
|
"""
|
6794
6794
|
if from_ is not None:
|
6795
6795
|
pulumi.set(__self__, "from_", from_)
|
@@ -6802,14 +6802,14 @@ class OneDashboardPageWidgetLineThresholdArgs:
|
|
6802
6802
|
|
6803
6803
|
@property
|
6804
6804
|
@pulumi.getter(name="from")
|
6805
|
-
def from_(self) -> Optional[pulumi.Input[
|
6805
|
+
def from_(self) -> Optional[pulumi.Input[str]]:
|
6806
6806
|
"""
|
6807
6807
|
The value 'from' which the threshold would need to be applied.
|
6808
6808
|
"""
|
6809
6809
|
return pulumi.get(self, "from_")
|
6810
6810
|
|
6811
6811
|
@from_.setter
|
6812
|
-
def from_(self, value: Optional[pulumi.Input[
|
6812
|
+
def from_(self, value: Optional[pulumi.Input[str]]):
|
6813
6813
|
pulumi.set(self, "from_", value)
|
6814
6814
|
|
6815
6815
|
@property
|
@@ -6838,14 +6838,14 @@ class OneDashboardPageWidgetLineThresholdArgs:
|
|
6838
6838
|
|
6839
6839
|
@property
|
6840
6840
|
@pulumi.getter
|
6841
|
-
def to(self) -> Optional[pulumi.Input[
|
6841
|
+
def to(self) -> Optional[pulumi.Input[str]]:
|
6842
6842
|
"""
|
6843
6843
|
The value until which the threshold would need to be applied.
|
6844
6844
|
"""
|
6845
6845
|
return pulumi.get(self, "to")
|
6846
6846
|
|
6847
6847
|
@to.setter
|
6848
|
-
def to(self, value: Optional[pulumi.Input[
|
6848
|
+
def to(self, value: Optional[pulumi.Input[str]]):
|
6849
6849
|
pulumi.set(self, "to", value)
|
6850
6850
|
|
6851
6851
|
|
@@ -9521,14 +9521,14 @@ class OneDashboardPageWidgetTableNullValueSeriesOverrideArgs:
|
|
9521
9521
|
class OneDashboardPageWidgetTableThresholdArgs:
|
9522
9522
|
def __init__(__self__, *,
|
9523
9523
|
column_name: Optional[pulumi.Input[str]] = None,
|
9524
|
-
from_: Optional[pulumi.Input[
|
9524
|
+
from_: Optional[pulumi.Input[str]] = None,
|
9525
9525
|
severity: Optional[pulumi.Input[str]] = None,
|
9526
|
-
to: Optional[pulumi.Input[
|
9526
|
+
to: Optional[pulumi.Input[str]] = None):
|
9527
9527
|
"""
|
9528
9528
|
:param pulumi.Input[str] column_name: The name of the column in the table, to which the threshold would need to be applied.
|
9529
|
-
:param pulumi.Input[
|
9529
|
+
:param pulumi.Input[str] from_: The value 'from' which the threshold would need to be applied.
|
9530
9530
|
:param pulumi.Input[str] severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
9531
|
-
:param pulumi.Input[
|
9531
|
+
:param pulumi.Input[str] to: The value until which the threshold would need to be applied.
|
9532
9532
|
"""
|
9533
9533
|
if column_name is not None:
|
9534
9534
|
pulumi.set(__self__, "column_name", column_name)
|
@@ -9553,14 +9553,14 @@ class OneDashboardPageWidgetTableThresholdArgs:
|
|
9553
9553
|
|
9554
9554
|
@property
|
9555
9555
|
@pulumi.getter(name="from")
|
9556
|
-
def from_(self) -> Optional[pulumi.Input[
|
9556
|
+
def from_(self) -> Optional[pulumi.Input[str]]:
|
9557
9557
|
"""
|
9558
9558
|
The value 'from' which the threshold would need to be applied.
|
9559
9559
|
"""
|
9560
9560
|
return pulumi.get(self, "from_")
|
9561
9561
|
|
9562
9562
|
@from_.setter
|
9563
|
-
def from_(self, value: Optional[pulumi.Input[
|
9563
|
+
def from_(self, value: Optional[pulumi.Input[str]]):
|
9564
9564
|
pulumi.set(self, "from_", value)
|
9565
9565
|
|
9566
9566
|
@property
|
@@ -9577,14 +9577,14 @@ class OneDashboardPageWidgetTableThresholdArgs:
|
|
9577
9577
|
|
9578
9578
|
@property
|
9579
9579
|
@pulumi.getter
|
9580
|
-
def to(self) -> Optional[pulumi.Input[
|
9580
|
+
def to(self) -> Optional[pulumi.Input[str]]:
|
9581
9581
|
"""
|
9582
9582
|
The value until which the threshold would need to be applied.
|
9583
9583
|
"""
|
9584
9584
|
return pulumi.get(self, "to")
|
9585
9585
|
|
9586
9586
|
@to.setter
|
9587
|
-
def to(self, value: Optional[pulumi.Input[
|
9587
|
+
def to(self, value: Optional[pulumi.Input[str]]):
|
9588
9588
|
pulumi.set(self, "to", value)
|
9589
9589
|
|
9590
9590
|
|
@@ -10667,7 +10667,7 @@ class WorkflowDestinationArgs:
|
|
10667
10667
|
:param pulumi.Input[str] channel_id: (Required) Destination's channel id.
|
10668
10668
|
:param pulumi.Input[str] name: The name of the workflow.
|
10669
10669
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] notification_triggers: List of triggers to notify about in this destination configuration.
|
10670
|
-
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
10670
|
+
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
10671
10671
|
:param pulumi.Input[bool] update_original_message: Update original notification message (Slack channels only)
|
10672
10672
|
"""
|
10673
10673
|
pulumi.set(__self__, "channel_id", channel_id)
|
@@ -10720,7 +10720,7 @@ class WorkflowDestinationArgs:
|
|
10720
10720
|
@pulumi.getter
|
10721
10721
|
def type(self) -> Optional[pulumi.Input[str]]:
|
10722
10722
|
"""
|
10723
|
-
(Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
10723
|
+
(Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
10724
10724
|
"""
|
10725
10725
|
return pulumi.get(self, "type")
|
10726
10726
|
|
@@ -114,7 +114,7 @@ class GetNotificationDestinationResult:
|
|
114
114
|
@pulumi.getter
|
115
115
|
def type(self) -> str:
|
116
116
|
"""
|
117
|
-
The notification destination type, either: `EMAIL`, `SERVICE_NOW`, `WEBHOOK`, `JIRA`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`, `SLACK` and `SLACK_COLLABORATION`.
|
117
|
+
The notification destination type, either: `EMAIL`, `SERVICE_NOW`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`, `SLACK` and `SLACK_COLLABORATION`.
|
118
118
|
"""
|
119
119
|
return pulumi.get(self, "type")
|
120
120
|
|
@@ -28,7 +28,7 @@ class NotificationChannelArgs:
|
|
28
28
|
:param pulumi.Input[str] destination_id: The id of the destination.
|
29
29
|
:param pulumi.Input[str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
|
30
30
|
:param pulumi.Input[Sequence[pulumi.Input['NotificationChannelPropertyArgs']]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
|
31
|
-
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
31
|
+
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
32
32
|
:param pulumi.Input[str] account_id: Determines the New Relic account where the notification channel will be created. Defaults to the account associated with the API key used.
|
33
33
|
:param pulumi.Input[bool] active: Indicates whether the channel is active.
|
34
34
|
:param pulumi.Input[str] name: The name of the channel.
|
@@ -84,7 +84,7 @@ class NotificationChannelArgs:
|
|
84
84
|
@pulumi.getter
|
85
85
|
def type(self) -> pulumi.Input[str]:
|
86
86
|
"""
|
87
|
-
The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
87
|
+
The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
88
88
|
"""
|
89
89
|
return pulumi.get(self, "type")
|
90
90
|
|
@@ -149,7 +149,7 @@ class _NotificationChannelState:
|
|
149
149
|
:param pulumi.Input[str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
|
150
150
|
:param pulumi.Input[Sequence[pulumi.Input['NotificationChannelPropertyArgs']]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
|
151
151
|
:param pulumi.Input[str] status: The status of the channel.
|
152
|
-
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
152
|
+
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
153
153
|
"""
|
154
154
|
if account_id is not None:
|
155
155
|
pulumi.set(__self__, "account_id", account_id)
|
@@ -256,7 +256,7 @@ class _NotificationChannelState:
|
|
256
256
|
@pulumi.getter
|
257
257
|
def type(self) -> Optional[pulumi.Input[str]]:
|
258
258
|
"""
|
259
|
-
The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
259
|
+
The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
260
260
|
"""
|
261
261
|
return pulumi.get(self, "type")
|
262
262
|
|
@@ -332,6 +332,18 @@ class NotificationChannel(pulumi.CustomResource):
|
|
332
332
|
),
|
333
333
|
])
|
334
334
|
```
|
335
|
+
##### [ServiceNowApp](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels/#servicenowapp)
|
336
|
+
```python
|
337
|
+
import pulumi
|
338
|
+
import pulumi_newrelic as newrelic
|
339
|
+
|
340
|
+
foo = newrelic.NotificationChannel("foo",
|
341
|
+
account_id="12345678",
|
342
|
+
name="servicenow-app-example",
|
343
|
+
type="SERVICE_NOW_APP",
|
344
|
+
destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
|
345
|
+
product="IINT")
|
346
|
+
```
|
335
347
|
|
336
348
|
##### [Email](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels/#email)
|
337
349
|
```python
|
@@ -600,7 +612,7 @@ class NotificationChannel(pulumi.CustomResource):
|
|
600
612
|
:param pulumi.Input[str] name: The name of the channel.
|
601
613
|
:param pulumi.Input[str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
|
602
614
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationChannelPropertyArgs']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
|
603
|
-
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
615
|
+
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
604
616
|
"""
|
605
617
|
...
|
606
618
|
@overload
|
@@ -662,6 +674,18 @@ class NotificationChannel(pulumi.CustomResource):
|
|
662
674
|
),
|
663
675
|
])
|
664
676
|
```
|
677
|
+
##### [ServiceNowApp](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels/#servicenowapp)
|
678
|
+
```python
|
679
|
+
import pulumi
|
680
|
+
import pulumi_newrelic as newrelic
|
681
|
+
|
682
|
+
foo = newrelic.NotificationChannel("foo",
|
683
|
+
account_id="12345678",
|
684
|
+
name="servicenow-app-example",
|
685
|
+
type="SERVICE_NOW_APP",
|
686
|
+
destination_id="00b6bd1d-ac06-4d3d-bd72-49551e70f7a8",
|
687
|
+
product="IINT")
|
688
|
+
```
|
665
689
|
|
666
690
|
##### [Email](https://docs.newrelic.com/docs/apis/nerdgraph/examples/nerdgraph-api-notifications-channels/#email)
|
667
691
|
```python
|
@@ -1001,7 +1025,7 @@ class NotificationChannel(pulumi.CustomResource):
|
|
1001
1025
|
:param pulumi.Input[str] product: The type of product. One of: `DISCUSSIONS`, `ERROR_TRACKING` or `IINT` (workflows).
|
1002
1026
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationChannelPropertyArgs']]]] properties: A nested block that describes a notification channel property. See Nested property blocks below for details.
|
1003
1027
|
:param pulumi.Input[str] status: The status of the channel.
|
1004
|
-
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
1028
|
+
:param pulumi.Input[str] type: The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
1005
1029
|
"""
|
1006
1030
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1007
1031
|
|
@@ -1077,7 +1101,7 @@ class NotificationChannel(pulumi.CustomResource):
|
|
1077
1101
|
@pulumi.getter
|
1078
1102
|
def type(self) -> pulumi.Output[str]:
|
1079
1103
|
"""
|
1080
|
-
The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
1104
|
+
The type of channel. One of: `EMAIL`, `SERVICENOW_INCIDENTS`, `SERVICE_NOW_APP`, `WEBHOOK`, `JIRA_CLASSIC`, `MOBILE_PUSH`, `EVENT_BRIDGE`, `SLACK` and `SLACK_COLLABORATION`, `PAGERDUTY_ACCOUNT_INTEGRATION` or `PAGERDUTY_SERVICE_INTEGRATION`.
|
1081
1105
|
"""
|
1082
1106
|
return pulumi.get(self, "type")
|
1083
1107
|
|
@@ -28,8 +28,9 @@ class NotificationDestinationArgs:
|
|
28
28
|
"""
|
29
29
|
The set of arguments for constructing a NotificationDestination resource.
|
30
30
|
:param pulumi.Input[Sequence[pulumi.Input['NotificationDestinationPropertyArgs']]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
|
31
|
-
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW,
|
32
|
-
PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
31
|
+
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
32
|
+
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
33
|
+
MOBILE_PUSH, EVENT_BRIDGE).
|
33
34
|
:param pulumi.Input[str] account_id: Determines the New Relic account where the notification destination will be created. Defaults to the account associated with the API key used.
|
34
35
|
:param pulumi.Input[bool] active: Indicates whether the destination is active.
|
35
36
|
:param pulumi.Input['NotificationDestinationAuthBasicArgs'] auth_basic: A nested block that describes a basic username and password authentication credentials. Only one auth_basic block is permitted per notification destination definition. See Nested auth_basic blocks below for details.
|
@@ -71,8 +72,9 @@ class NotificationDestinationArgs:
|
|
71
72
|
@pulumi.getter
|
72
73
|
def type(self) -> pulumi.Input[str]:
|
73
74
|
"""
|
74
|
-
(Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW,
|
75
|
-
PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
75
|
+
(Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
76
|
+
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
77
|
+
MOBILE_PUSH, EVENT_BRIDGE).
|
76
78
|
"""
|
77
79
|
return pulumi.get(self, "type")
|
78
80
|
|
@@ -193,8 +195,9 @@ class _NotificationDestinationState:
|
|
193
195
|
:param pulumi.Input[Sequence[pulumi.Input['NotificationDestinationPropertyArgs']]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
|
194
196
|
:param pulumi.Input['NotificationDestinationSecureUrlArgs'] secure_url: A nested block that describes a URL that contains sensitive data at the path or parameters. Only one secure_url block is permitted per notification destination definition. See Nested secure_url blocks below for details.
|
195
197
|
:param pulumi.Input[str] status: The status of the destination.
|
196
|
-
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW,
|
197
|
-
PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
198
|
+
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
199
|
+
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
200
|
+
MOBILE_PUSH, EVENT_BRIDGE).
|
198
201
|
"""
|
199
202
|
if account_id is not None:
|
200
203
|
pulumi.set(__self__, "account_id", account_id)
|
@@ -357,8 +360,9 @@ class _NotificationDestinationState:
|
|
357
360
|
@pulumi.getter
|
358
361
|
def type(self) -> Optional[pulumi.Input[str]]:
|
359
362
|
"""
|
360
|
-
(Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW,
|
361
|
-
PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
363
|
+
(Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
364
|
+
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
365
|
+
MOBILE_PUSH, EVENT_BRIDGE).
|
362
366
|
"""
|
363
367
|
return pulumi.get(self, "type")
|
364
368
|
|
@@ -461,8 +465,9 @@ class NotificationDestination(pulumi.CustomResource):
|
|
461
465
|
:param pulumi.Input[str] name: The name of the destination.
|
462
466
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationDestinationPropertyArgs']]]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
|
463
467
|
:param pulumi.Input[pulumi.InputType['NotificationDestinationSecureUrlArgs']] secure_url: A nested block that describes a URL that contains sensitive data at the path or parameters. Only one secure_url block is permitted per notification destination definition. See Nested secure_url blocks below for details.
|
464
|
-
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW,
|
465
|
-
PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
468
|
+
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
469
|
+
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
470
|
+
MOBILE_PUSH, EVENT_BRIDGE).
|
466
471
|
"""
|
467
472
|
...
|
468
473
|
@overload
|
@@ -628,8 +633,9 @@ class NotificationDestination(pulumi.CustomResource):
|
|
628
633
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NotificationDestinationPropertyArgs']]]] properties: A nested block that describes a notification destination property. See Nested property blocks below for details.
|
629
634
|
:param pulumi.Input[pulumi.InputType['NotificationDestinationSecureUrlArgs']] secure_url: A nested block that describes a URL that contains sensitive data at the path or parameters. Only one secure_url block is permitted per notification destination definition. See Nested secure_url blocks below for details.
|
630
635
|
:param pulumi.Input[str] status: The status of the destination.
|
631
|
-
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW,
|
632
|
-
PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
636
|
+
:param pulumi.Input[str] type: (Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
637
|
+
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
638
|
+
MOBILE_PUSH, EVENT_BRIDGE).
|
633
639
|
"""
|
634
640
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
635
641
|
|
@@ -741,8 +747,9 @@ class NotificationDestination(pulumi.CustomResource):
|
|
741
747
|
@pulumi.getter
|
742
748
|
def type(self) -> pulumi.Output[str]:
|
743
749
|
"""
|
744
|
-
(Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW,
|
745
|
-
PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
750
|
+
(Required) The type of the destination. One of: (WEBHOOK, EMAIL, SERVICE_NOW, SERVICE_NOW_APP,
|
751
|
+
PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, JIRA, SLACK, SLACK_COLLABORATION, SLACK_LEGACY,
|
752
|
+
MOBILE_PUSH, EVENT_BRIDGE).
|
746
753
|
"""
|
747
754
|
return pulumi.get(self, "type")
|
748
755
|
|
pulumi_newrelic/outputs.py
CHANGED
@@ -6980,15 +6980,15 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
6980
6980
|
return super().get(key, default)
|
6981
6981
|
|
6982
6982
|
def __init__(__self__, *,
|
6983
|
-
from_: Optional[
|
6983
|
+
from_: Optional[str] = None,
|
6984
6984
|
name: Optional[str] = None,
|
6985
6985
|
severity: Optional[str] = None,
|
6986
|
-
to: Optional[
|
6986
|
+
to: Optional[str] = None):
|
6987
6987
|
"""
|
6988
|
-
:param
|
6988
|
+
:param str from_: The value 'from' which the threshold would need to be applied.
|
6989
6989
|
:param str name: The title of the dashboard.
|
6990
6990
|
:param str severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
6991
|
-
:param
|
6991
|
+
:param str to: The value until which the threshold would need to be applied.
|
6992
6992
|
"""
|
6993
6993
|
if from_ is not None:
|
6994
6994
|
pulumi.set(__self__, "from_", from_)
|
@@ -7001,7 +7001,7 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
7001
7001
|
|
7002
7002
|
@property
|
7003
7003
|
@pulumi.getter(name="from")
|
7004
|
-
def from_(self) -> Optional[
|
7004
|
+
def from_(self) -> Optional[str]:
|
7005
7005
|
"""
|
7006
7006
|
The value 'from' which the threshold would need to be applied.
|
7007
7007
|
"""
|
@@ -7025,7 +7025,7 @@ class OneDashboardPageWidgetLineThreshold(dict):
|
|
7025
7025
|
|
7026
7026
|
@property
|
7027
7027
|
@pulumi.getter
|
7028
|
-
def to(self) -> Optional[
|
7028
|
+
def to(self) -> Optional[str]:
|
7029
7029
|
"""
|
7030
7030
|
The value until which the threshold would need to be applied.
|
7031
7031
|
"""
|
@@ -9887,14 +9887,14 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9887
9887
|
|
9888
9888
|
def __init__(__self__, *,
|
9889
9889
|
column_name: Optional[str] = None,
|
9890
|
-
from_: Optional[
|
9890
|
+
from_: Optional[str] = None,
|
9891
9891
|
severity: Optional[str] = None,
|
9892
|
-
to: Optional[
|
9892
|
+
to: Optional[str] = None):
|
9893
9893
|
"""
|
9894
9894
|
:param str column_name: The name of the column in the table, to which the threshold would need to be applied.
|
9895
|
-
:param
|
9895
|
+
:param str from_: The value 'from' which the threshold would need to be applied.
|
9896
9896
|
:param str severity: The severity of the threshold, which would affect the visual appearance of the threshold (such as its color) accordingly. The value of this attribute would need to be one of the following - `warning`, `severe`, `critical`, `success`, `unavailable` which correspond to the severity labels _Warning_, _Approaching critical_, _Critical_, _Good_, _Neutral_ in the dropdown that helps specify the severity of thresholds in table widgets in the UI, respectively.
|
9897
|
-
:param
|
9897
|
+
:param str to: The value until which the threshold would need to be applied.
|
9898
9898
|
"""
|
9899
9899
|
if column_name is not None:
|
9900
9900
|
pulumi.set(__self__, "column_name", column_name)
|
@@ -9915,7 +9915,7 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9915
9915
|
|
9916
9916
|
@property
|
9917
9917
|
@pulumi.getter(name="from")
|
9918
|
-
def from_(self) -> Optional[
|
9918
|
+
def from_(self) -> Optional[str]:
|
9919
9919
|
"""
|
9920
9920
|
The value 'from' which the threshold would need to be applied.
|
9921
9921
|
"""
|
@@ -9931,7 +9931,7 @@ class OneDashboardPageWidgetTableThreshold(dict):
|
|
9931
9931
|
|
9932
9932
|
@property
|
9933
9933
|
@pulumi.getter
|
9934
|
-
def to(self) -> Optional[
|
9934
|
+
def to(self) -> Optional[str]:
|
9935
9935
|
"""
|
9936
9936
|
The value until which the threshold would need to be applied.
|
9937
9937
|
"""
|
@@ -10999,7 +10999,7 @@ class WorkflowDestination(dict):
|
|
10999
10999
|
:param str channel_id: (Required) Destination's channel id.
|
11000
11000
|
:param str name: The name of the workflow.
|
11001
11001
|
:param Sequence[str] notification_triggers: List of triggers to notify about in this destination configuration.
|
11002
|
-
:param str type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
11002
|
+
:param str type: (Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
11003
11003
|
:param bool update_original_message: Update original notification message (Slack channels only)
|
11004
11004
|
"""
|
11005
11005
|
pulumi.set(__self__, "channel_id", channel_id)
|
@@ -11040,7 +11040,7 @@ class WorkflowDestination(dict):
|
|
11040
11040
|
@pulumi.getter
|
11041
11041
|
def type(self) -> Optional[str]:
|
11042
11042
|
"""
|
11043
|
-
(Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
11043
|
+
(Required) The type of the destination. One of: (EMAIL, EVENT_BRIDGE, PAGERDUTY_ACCOUNT_INTEGRATION, PAGERDUTY_SERVICE_INTEGRATION, SERVICE_NOW, SERVICE_NOW_APP, WEBHOOK, MOBILE_PUSH, SLACK, JIRA).
|
11044
11044
|
"""
|
11045
11045
|
return pulumi.get(self, "type")
|
11046
11046
|
|
{pulumi_newrelic-5.28.0a1722923447.dist-info → pulumi_newrelic-5.28.0a1723107045.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
|
2
|
-
pulumi_newrelic/_inputs.py,sha256=
|
2
|
+
pulumi_newrelic/_inputs.py,sha256=frv70Hk0WYfIs-cUiqLcbehoAsKI0nRRvtXr9Fwi0Ms,497296
|
3
3
|
pulumi_newrelic/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
4
|
pulumi_newrelic/account_management.py,sha256=IKzAnKd0TqvKr4TkBUSDhxUyhMyWaTI6Ux4OJ5GMNn0,8789
|
5
5
|
pulumi_newrelic/alert_channel.py,sha256=Ivzcqqc2Up7fAgwOeu7yhcwuR64gbI2XjzZ9Lbd-J70,21618
|
@@ -21,7 +21,7 @@ pulumi_newrelic/get_cloud_account.py,sha256=7uBL8KxGdma3ZR8KQzRXG61R-inusfXHXv_6
|
|
21
21
|
pulumi_newrelic/get_entity.py,sha256=vUfAe8neaQ6cbZoSab2MeO50FLDmpqvwVVysOu87rqE,12791
|
22
22
|
pulumi_newrelic/get_group.py,sha256=pjW9nJr7tPPyi5YKev_VRyccEmQ_qGd6J8ZyWVxy33g,7783
|
23
23
|
pulumi_newrelic/get_key_transaction.py,sha256=E9z8R6wWYQiUS7PH3UOkLcmK0OfjWH2z0eClyF0nEdk,4043
|
24
|
-
pulumi_newrelic/get_notification_destination.py,sha256=
|
24
|
+
pulumi_newrelic/get_notification_destination.py,sha256=B5B_stygnnSjQwK182p-W8BEz9YjbN89GQpou-kYwWI,8171
|
25
25
|
pulumi_newrelic/get_obfuscation_expression.py,sha256=6-EpgfNLHmWmx-Na8IQ9UCaBz1j8AnPuGC0XzBOb2lc,4921
|
26
26
|
pulumi_newrelic/get_service_level_alert_helper.py,sha256=dq3eeFGE5dgAciFju-GhTBD2Ics07AkOyqb4VfpIoLw,20164
|
27
27
|
pulumi_newrelic/get_test_grok_pattern.py,sha256=mCiJXbpiQLg2oeEa5_rQTI38ZsXkWml4lgv1s6jEpPE,5538
|
@@ -30,8 +30,8 @@ pulumi_newrelic/group.py,sha256=ifVMSVvNIQ4YtoRXIBCpzu7jy3AsEt0iQAFC4M3Rb8g,2090
|
|
30
30
|
pulumi_newrelic/infra_alert_condition.py,sha256=K4I91Yx6J10CQ2okgDn2hvzgja-1Q2F_EQOMy9VzeDo,57753
|
31
31
|
pulumi_newrelic/log_parsing_rule.py,sha256=1NgUsL1PQNd5-5eMUiOA5fL0vT91DNQ6KqmcWSyn5l0,22408
|
32
32
|
pulumi_newrelic/monitor_downtime.py,sha256=NJ4MNCNvsprCc3tsFItaicyZQFM_U5m9oX6jQtyNv_8,40928
|
33
|
-
pulumi_newrelic/notification_channel.py,sha256=
|
34
|
-
pulumi_newrelic/notification_destination.py,sha256=
|
33
|
+
pulumi_newrelic/notification_channel.py,sha256=tKMJT8-EiKC_hngDFQ4QtFvExPeqfsSjw4P8QY2VOMQ,47967
|
34
|
+
pulumi_newrelic/notification_destination.py,sha256=g5bmOo5qhGRcuyiEH9FLtNKnQlvx33Eu9YSBYZoKiBg,38152
|
35
35
|
pulumi_newrelic/nrql_alert_condition.py,sha256=MOgEMixd52JHRV-64H14C1Xfc6s5LnGzXye60NNPAhg,105647
|
36
36
|
pulumi_newrelic/nrql_drop_rule.py,sha256=PO9gtn6xHMEHjUdfZB_h5AWnWFFnfihRxwxEoGsS_tk,17538
|
37
37
|
pulumi_newrelic/obfuscation_expression.py,sha256=ujOP16liz5adKssyTNmoSbKJsypZAejSi6eCsQtC54c,12343
|
@@ -39,9 +39,9 @@ pulumi_newrelic/obfuscation_rule.py,sha256=J1951kAaBWDlmFWEQsSASz7PmjGSpQYxvqV8w
|
|
39
39
|
pulumi_newrelic/one_dashboard.py,sha256=b3DpP1ryeGV6WYUghTaAN6963nMrVeWHvLeInBE42rM,20490
|
40
40
|
pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0qg-NVT-s,12622
|
41
41
|
pulumi_newrelic/one_dashboard_raw.py,sha256=M9TgRdqEwEDFwJtzN2retbMG3b8aNih10hL0n0MihUY,23542
|
42
|
-
pulumi_newrelic/outputs.py,sha256=
|
42
|
+
pulumi_newrelic/outputs.py,sha256=l-PV80TdUbyoWHCI0a6urYAo0BGQyA0AIcipGHyho34,489353
|
43
43
|
pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
|
44
|
-
pulumi_newrelic/pulumi-plugin.json,sha256=
|
44
|
+
pulumi_newrelic/pulumi-plugin.json,sha256=cKzoXhAYhuHIFpqNszlCngtvksWbDN8bOCkdRg5rgb0,85
|
45
45
|
pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
46
|
pulumi_newrelic/service_level.py,sha256=HGA0UqZYKEzclHATagPnyDpvsrQodHrjvewC6EkACHc,30071
|
47
47
|
pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
|
@@ -83,7 +83,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ
|
|
83
83
|
pulumi_newrelic/synthetics/script_monitor.py,sha256=xmjPoTtX4UeAoL9BsArSXYrw3k1eZXQXTJuuYYrHevU,57186
|
84
84
|
pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
|
85
85
|
pulumi_newrelic/synthetics/step_monitor.py,sha256=uI8y4YcsXHaTWwk3_iEfrT2myPwiA3_isIN5nvQMftc,50742
|
86
|
-
pulumi_newrelic-5.28.
|
87
|
-
pulumi_newrelic-5.28.
|
88
|
-
pulumi_newrelic-5.28.
|
89
|
-
pulumi_newrelic-5.28.
|
86
|
+
pulumi_newrelic-5.28.0a1723107045.dist-info/METADATA,sha256=EG8wqeWaRouUcPuBwokVxqjwG_uLeCRe_riAcWlXs68,3900
|
87
|
+
pulumi_newrelic-5.28.0a1723107045.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
88
|
+
pulumi_newrelic-5.28.0a1723107045.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
|
89
|
+
pulumi_newrelic-5.28.0a1723107045.dist-info/RECORD,,
|
{pulumi_newrelic-5.28.0a1722923447.dist-info → pulumi_newrelic-5.28.0a1723107045.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|