@pulumi/pagerduty 4.25.1 → 4.25.2
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.
|
@@ -65,7 +65,13 @@ export declare class AutomationActionsAction extends pulumi.CustomResource {
|
|
|
65
65
|
* The type of the action. The only allowed values are `processAutomation` and `script`. Cannot be changed once set.
|
|
66
66
|
*/
|
|
67
67
|
readonly actionType: pulumi.Output<string>;
|
|
68
|
+
/**
|
|
69
|
+
* Whether the action can be invoked automatically from a PagerDuty Event Orchestration.
|
|
70
|
+
*/
|
|
68
71
|
readonly allowInvocationFromEventOrchestration: pulumi.Output<string>;
|
|
72
|
+
/**
|
|
73
|
+
* Whether the action can be invoked manually by a user on the PagerDuty website.
|
|
74
|
+
*/
|
|
69
75
|
readonly allowInvocationManually: pulumi.Output<string>;
|
|
70
76
|
/**
|
|
71
77
|
* The time action was created. Represented as an ISO 8601 timestamp.
|
|
@@ -75,6 +81,9 @@ export declare class AutomationActionsAction extends pulumi.CustomResource {
|
|
|
75
81
|
* The description of the action. Max length is 1024 characters.
|
|
76
82
|
*/
|
|
77
83
|
readonly description: pulumi.Output<string | undefined>;
|
|
84
|
+
/**
|
|
85
|
+
* If true, the action will be associated with every service.
|
|
86
|
+
*/
|
|
78
87
|
readonly mapToAllServices: pulumi.Output<boolean>;
|
|
79
88
|
/**
|
|
80
89
|
* (Optional) The last time action has been modified. Represented as an ISO 8601 timestamp.
|
|
@@ -84,6 +93,9 @@ export declare class AutomationActionsAction extends pulumi.CustomResource {
|
|
|
84
93
|
* The name of the action. Max length is 255 characters.
|
|
85
94
|
*/
|
|
86
95
|
readonly name: pulumi.Output<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Whether the action can be invoked on unresolved incidents.
|
|
98
|
+
*/
|
|
87
99
|
readonly onlyInvocableOnUnresolvedIncidents: pulumi.Output<boolean>;
|
|
88
100
|
/**
|
|
89
101
|
* The Process Automation Actions runner to associate the action with. Cannot be changed for the `processAutomation` action type once set.
|
|
@@ -122,7 +134,13 @@ export interface AutomationActionsActionState {
|
|
|
122
134
|
* The type of the action. The only allowed values are `processAutomation` and `script`. Cannot be changed once set.
|
|
123
135
|
*/
|
|
124
136
|
actionType?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* Whether the action can be invoked automatically from a PagerDuty Event Orchestration.
|
|
139
|
+
*/
|
|
125
140
|
allowInvocationFromEventOrchestration?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* Whether the action can be invoked manually by a user on the PagerDuty website.
|
|
143
|
+
*/
|
|
126
144
|
allowInvocationManually?: pulumi.Input<string>;
|
|
127
145
|
/**
|
|
128
146
|
* The time action was created. Represented as an ISO 8601 timestamp.
|
|
@@ -132,6 +150,9 @@ export interface AutomationActionsActionState {
|
|
|
132
150
|
* The description of the action. Max length is 1024 characters.
|
|
133
151
|
*/
|
|
134
152
|
description?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* If true, the action will be associated with every service.
|
|
155
|
+
*/
|
|
135
156
|
mapToAllServices?: pulumi.Input<boolean>;
|
|
136
157
|
/**
|
|
137
158
|
* (Optional) The last time action has been modified. Represented as an ISO 8601 timestamp.
|
|
@@ -141,6 +162,9 @@ export interface AutomationActionsActionState {
|
|
|
141
162
|
* The name of the action. Max length is 255 characters.
|
|
142
163
|
*/
|
|
143
164
|
name?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Whether the action can be invoked on unresolved incidents.
|
|
167
|
+
*/
|
|
144
168
|
onlyInvocableOnUnresolvedIncidents?: pulumi.Input<boolean>;
|
|
145
169
|
/**
|
|
146
170
|
* The Process Automation Actions runner to associate the action with. Cannot be changed for the `processAutomation` action type once set.
|
|
@@ -171,7 +195,13 @@ export interface AutomationActionsActionArgs {
|
|
|
171
195
|
* The type of the action. The only allowed values are `processAutomation` and `script`. Cannot be changed once set.
|
|
172
196
|
*/
|
|
173
197
|
actionType: pulumi.Input<string>;
|
|
198
|
+
/**
|
|
199
|
+
* Whether the action can be invoked automatically from a PagerDuty Event Orchestration.
|
|
200
|
+
*/
|
|
174
201
|
allowInvocationFromEventOrchestration?: pulumi.Input<string>;
|
|
202
|
+
/**
|
|
203
|
+
* Whether the action can be invoked manually by a user on the PagerDuty website.
|
|
204
|
+
*/
|
|
175
205
|
allowInvocationManually?: pulumi.Input<string>;
|
|
176
206
|
/**
|
|
177
207
|
* The time action was created. Represented as an ISO 8601 timestamp.
|
|
@@ -181,6 +211,9 @@ export interface AutomationActionsActionArgs {
|
|
|
181
211
|
* The description of the action. Max length is 1024 characters.
|
|
182
212
|
*/
|
|
183
213
|
description?: pulumi.Input<string>;
|
|
214
|
+
/**
|
|
215
|
+
* If true, the action will be associated with every service.
|
|
216
|
+
*/
|
|
184
217
|
mapToAllServices?: pulumi.Input<boolean>;
|
|
185
218
|
/**
|
|
186
219
|
* (Optional) The last time action has been modified. Represented as an ISO 8601 timestamp.
|
|
@@ -190,6 +223,9 @@ export interface AutomationActionsActionArgs {
|
|
|
190
223
|
* The name of the action. Max length is 255 characters.
|
|
191
224
|
*/
|
|
192
225
|
name?: pulumi.Input<string>;
|
|
226
|
+
/**
|
|
227
|
+
* Whether the action can be invoked on unresolved incidents.
|
|
228
|
+
*/
|
|
193
229
|
onlyInvocableOnUnresolvedIncidents?: pulumi.Input<boolean>;
|
|
194
230
|
/**
|
|
195
231
|
* The Process Automation Actions runner to associate the action with. Cannot be changed for the `processAutomation` action type once set.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"automationActionsAction.js","sourceRoot":"","sources":["../automationActionsAction.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoC,EAAE,IAAmC;QAClI,OAAO,IAAI,uBAAuB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,uBAAuB,CAAC,YAAY,CAAC;IACxE,CAAC;
|
|
1
|
+
{"version":3,"file":"automationActionsAction.js","sourceRoot":"","sources":["../automationActionsAction.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/pagerduty",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.2",
|
|
4
4
|
"description": "A Pulumi package for creating and managing pagerduty cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "pagerduty",
|
|
26
|
-
"version": "4.25.
|
|
26
|
+
"version": "4.25.2"
|
|
27
27
|
}
|
|
28
28
|
}
|