@aws-sdk/client-codepipeline 3.181.0 → 3.183.0
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.
- package/CHANGELOG.md +8 -0
- package/dist-es/CodePipeline.js +158 -165
- package/dist-es/CodePipelineClient.js +22 -28
- package/dist-es/commands/AcknowledgeJobCommand.js +21 -28
- package/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +21 -28
- package/dist-es/commands/CreateCustomActionTypeCommand.js +21 -28
- package/dist-es/commands/CreatePipelineCommand.js +21 -28
- package/dist-es/commands/DeleteCustomActionTypeCommand.js +22 -29
- package/dist-es/commands/DeletePipelineCommand.js +22 -29
- package/dist-es/commands/DeleteWebhookCommand.js +21 -28
- package/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +21 -28
- package/dist-es/commands/DisableStageTransitionCommand.js +22 -29
- package/dist-es/commands/EnableStageTransitionCommand.js +22 -29
- package/dist-es/commands/GetActionTypeCommand.js +21 -28
- package/dist-es/commands/GetJobDetailsCommand.js +21 -28
- package/dist-es/commands/GetPipelineCommand.js +21 -28
- package/dist-es/commands/GetPipelineExecutionCommand.js +21 -28
- package/dist-es/commands/GetPipelineStateCommand.js +21 -28
- package/dist-es/commands/GetThirdPartyJobDetailsCommand.js +21 -28
- package/dist-es/commands/ListActionExecutionsCommand.js +21 -28
- package/dist-es/commands/ListActionTypesCommand.js +21 -28
- package/dist-es/commands/ListPipelineExecutionsCommand.js +21 -28
- package/dist-es/commands/ListPipelinesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListWebhooksCommand.js +21 -28
- package/dist-es/commands/PollForJobsCommand.js +21 -28
- package/dist-es/commands/PollForThirdPartyJobsCommand.js +21 -28
- package/dist-es/commands/PutActionRevisionCommand.js +21 -28
- package/dist-es/commands/PutApprovalResultCommand.js +21 -28
- package/dist-es/commands/PutJobFailureResultCommand.js +22 -29
- package/dist-es/commands/PutJobSuccessResultCommand.js +22 -29
- package/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +22 -29
- package/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +22 -29
- package/dist-es/commands/PutWebhookCommand.js +21 -28
- package/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +21 -28
- package/dist-es/commands/RetryStageExecutionCommand.js +21 -28
- package/dist-es/commands/StartPipelineExecutionCommand.js +21 -28
- package/dist-es/commands/StopPipelineExecutionCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateActionTypeCommand.js +22 -29
- package/dist-es/commands/UpdatePipelineCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CodePipelineServiceException.js +5 -10
- package/dist-es/models/models_0.js +854 -570
- package/dist-es/pagination/ListActionExecutionsPaginator.js +25 -68
- package/dist-es/pagination/ListActionTypesPaginator.js +24 -67
- package/dist-es/pagination/ListPipelineExecutionsPaginator.js +25 -68
- package/dist-es/pagination/ListPipelinesPaginator.js +25 -68
- package/dist-es/pagination/ListTagsForResourcePaginator.js +25 -68
- package/dist-es/pagination/ListWebhooksPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +3101 -3746
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
|
|
4
3
|
export var JobStatus;
|
|
@@ -11,54 +10,54 @@ export var JobStatus;
|
|
|
11
10
|
JobStatus["Succeeded"] = "Succeeded";
|
|
12
11
|
JobStatus["TimedOut"] = "TimedOut";
|
|
13
12
|
})(JobStatus || (JobStatus = {}));
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
|
|
13
|
+
export class InvalidNonceException extends __BaseException {
|
|
14
|
+
constructor(opts) {
|
|
15
|
+
super({
|
|
16
|
+
name: "InvalidNonceException",
|
|
17
|
+
$fault: "client",
|
|
18
|
+
...opts,
|
|
19
|
+
});
|
|
20
|
+
this.name = "InvalidNonceException";
|
|
21
|
+
this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(this, InvalidNonceException.prototype);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
export class JobNotFoundException extends __BaseException {
|
|
26
|
+
constructor(opts) {
|
|
27
|
+
super({
|
|
28
|
+
name: "JobNotFoundException",
|
|
29
|
+
$fault: "client",
|
|
30
|
+
...opts,
|
|
31
|
+
});
|
|
32
|
+
this.name = "JobNotFoundException";
|
|
33
|
+
this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(this, JobNotFoundException.prototype);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
export class ValidationException extends __BaseException {
|
|
38
|
+
constructor(opts) {
|
|
39
|
+
super({
|
|
40
|
+
name: "ValidationException",
|
|
41
|
+
$fault: "client",
|
|
42
|
+
...opts,
|
|
43
|
+
});
|
|
44
|
+
this.name = "ValidationException";
|
|
45
|
+
this.$fault = "client";
|
|
46
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
export class InvalidClientTokenException extends __BaseException {
|
|
50
|
+
constructor(opts) {
|
|
51
|
+
super({
|
|
52
|
+
name: "InvalidClientTokenException",
|
|
53
|
+
$fault: "client",
|
|
54
|
+
...opts,
|
|
55
|
+
});
|
|
56
|
+
this.name = "InvalidClientTokenException";
|
|
57
|
+
this.$fault = "client";
|
|
58
|
+
Object.setPrototypeOf(this, InvalidClientTokenException.prototype);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
62
61
|
export var ActionCategory;
|
|
63
62
|
(function (ActionCategory) {
|
|
64
63
|
ActionCategory["Approval"] = "Approval";
|
|
@@ -87,47 +86,47 @@ export var ActionExecutionStatus;
|
|
|
87
86
|
ActionExecutionStatus["InProgress"] = "InProgress";
|
|
88
87
|
ActionExecutionStatus["Succeeded"] = "Succeeded";
|
|
89
88
|
})(ActionExecutionStatus || (ActionExecutionStatus = {}));
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
|
|
89
|
+
export class ActionNotFoundException extends __BaseException {
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "ActionNotFoundException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
this.name = "ActionNotFoundException";
|
|
97
|
+
this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(this, ActionNotFoundException.prototype);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
102
101
|
export var ExecutorType;
|
|
103
102
|
(function (ExecutorType) {
|
|
104
103
|
ExecutorType["JobWorker"] = "JobWorker";
|
|
105
104
|
ExecutorType["Lambda"] = "Lambda";
|
|
106
105
|
})(ExecutorType || (ExecutorType = {}));
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
}
|
|
130
|
-
|
|
106
|
+
export class ActionTypeNotFoundException extends __BaseException {
|
|
107
|
+
constructor(opts) {
|
|
108
|
+
super({
|
|
109
|
+
name: "ActionTypeNotFoundException",
|
|
110
|
+
$fault: "client",
|
|
111
|
+
...opts,
|
|
112
|
+
});
|
|
113
|
+
this.name = "ActionTypeNotFoundException";
|
|
114
|
+
this.$fault = "client";
|
|
115
|
+
Object.setPrototypeOf(this, ActionTypeNotFoundException.prototype);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
export class ApprovalAlreadyCompletedException extends __BaseException {
|
|
119
|
+
constructor(opts) {
|
|
120
|
+
super({
|
|
121
|
+
name: "ApprovalAlreadyCompletedException",
|
|
122
|
+
$fault: "client",
|
|
123
|
+
...opts,
|
|
124
|
+
});
|
|
125
|
+
this.name = "ApprovalAlreadyCompletedException";
|
|
126
|
+
this.$fault = "client";
|
|
127
|
+
Object.setPrototypeOf(this, ApprovalAlreadyCompletedException.prototype);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
131
130
|
export var ApprovalStatus;
|
|
132
131
|
(function (ApprovalStatus) {
|
|
133
132
|
ApprovalStatus["Approved"] = "Approved";
|
|
@@ -149,167 +148,167 @@ export var BlockerType;
|
|
|
149
148
|
(function (BlockerType) {
|
|
150
149
|
BlockerType["Schedule"] = "Schedule";
|
|
151
150
|
})(BlockerType || (BlockerType = {}));
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
}
|
|
271
|
-
|
|
151
|
+
export class ConcurrentModificationException extends __BaseException {
|
|
152
|
+
constructor(opts) {
|
|
153
|
+
super({
|
|
154
|
+
name: "ConcurrentModificationException",
|
|
155
|
+
$fault: "client",
|
|
156
|
+
...opts,
|
|
157
|
+
});
|
|
158
|
+
this.name = "ConcurrentModificationException";
|
|
159
|
+
this.$fault = "client";
|
|
160
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
export class InvalidTagsException extends __BaseException {
|
|
164
|
+
constructor(opts) {
|
|
165
|
+
super({
|
|
166
|
+
name: "InvalidTagsException",
|
|
167
|
+
$fault: "client",
|
|
168
|
+
...opts,
|
|
169
|
+
});
|
|
170
|
+
this.name = "InvalidTagsException";
|
|
171
|
+
this.$fault = "client";
|
|
172
|
+
Object.setPrototypeOf(this, InvalidTagsException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
export class LimitExceededException extends __BaseException {
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "LimitExceededException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
this.name = "LimitExceededException";
|
|
183
|
+
this.$fault = "client";
|
|
184
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
export class TooManyTagsException extends __BaseException {
|
|
188
|
+
constructor(opts) {
|
|
189
|
+
super({
|
|
190
|
+
name: "TooManyTagsException",
|
|
191
|
+
$fault: "client",
|
|
192
|
+
...opts,
|
|
193
|
+
});
|
|
194
|
+
this.name = "TooManyTagsException";
|
|
195
|
+
this.$fault = "client";
|
|
196
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
export class InvalidActionDeclarationException extends __BaseException {
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "InvalidActionDeclarationException",
|
|
203
|
+
$fault: "client",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
this.name = "InvalidActionDeclarationException";
|
|
207
|
+
this.$fault = "client";
|
|
208
|
+
Object.setPrototypeOf(this, InvalidActionDeclarationException.prototype);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
export class InvalidBlockerDeclarationException extends __BaseException {
|
|
212
|
+
constructor(opts) {
|
|
213
|
+
super({
|
|
214
|
+
name: "InvalidBlockerDeclarationException",
|
|
215
|
+
$fault: "client",
|
|
216
|
+
...opts,
|
|
217
|
+
});
|
|
218
|
+
this.name = "InvalidBlockerDeclarationException";
|
|
219
|
+
this.$fault = "client";
|
|
220
|
+
Object.setPrototypeOf(this, InvalidBlockerDeclarationException.prototype);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
export class InvalidStageDeclarationException extends __BaseException {
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "InvalidStageDeclarationException",
|
|
227
|
+
$fault: "client",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
this.name = "InvalidStageDeclarationException";
|
|
231
|
+
this.$fault = "client";
|
|
232
|
+
Object.setPrototypeOf(this, InvalidStageDeclarationException.prototype);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
export class InvalidStructureException extends __BaseException {
|
|
236
|
+
constructor(opts) {
|
|
237
|
+
super({
|
|
238
|
+
name: "InvalidStructureException",
|
|
239
|
+
$fault: "client",
|
|
240
|
+
...opts,
|
|
241
|
+
});
|
|
242
|
+
this.name = "InvalidStructureException";
|
|
243
|
+
this.$fault = "client";
|
|
244
|
+
Object.setPrototypeOf(this, InvalidStructureException.prototype);
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
export class PipelineNameInUseException extends __BaseException {
|
|
248
|
+
constructor(opts) {
|
|
249
|
+
super({
|
|
250
|
+
name: "PipelineNameInUseException",
|
|
251
|
+
$fault: "client",
|
|
252
|
+
...opts,
|
|
253
|
+
});
|
|
254
|
+
this.name = "PipelineNameInUseException";
|
|
255
|
+
this.$fault = "client";
|
|
256
|
+
Object.setPrototypeOf(this, PipelineNameInUseException.prototype);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
export class WebhookNotFoundException extends __BaseException {
|
|
260
|
+
constructor(opts) {
|
|
261
|
+
super({
|
|
262
|
+
name: "WebhookNotFoundException",
|
|
263
|
+
$fault: "client",
|
|
264
|
+
...opts,
|
|
265
|
+
});
|
|
266
|
+
this.name = "WebhookNotFoundException";
|
|
267
|
+
this.$fault = "client";
|
|
268
|
+
Object.setPrototypeOf(this, WebhookNotFoundException.prototype);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
272
271
|
export var StageTransitionType;
|
|
273
272
|
(function (StageTransitionType) {
|
|
274
273
|
StageTransitionType["Inbound"] = "Inbound";
|
|
275
274
|
StageTransitionType["Outbound"] = "Outbound";
|
|
276
275
|
})(StageTransitionType || (StageTransitionType = {}));
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
}
|
|
312
|
-
|
|
276
|
+
export class PipelineNotFoundException extends __BaseException {
|
|
277
|
+
constructor(opts) {
|
|
278
|
+
super({
|
|
279
|
+
name: "PipelineNotFoundException",
|
|
280
|
+
$fault: "client",
|
|
281
|
+
...opts,
|
|
282
|
+
});
|
|
283
|
+
this.name = "PipelineNotFoundException";
|
|
284
|
+
this.$fault = "client";
|
|
285
|
+
Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
export class StageNotFoundException extends __BaseException {
|
|
289
|
+
constructor(opts) {
|
|
290
|
+
super({
|
|
291
|
+
name: "StageNotFoundException",
|
|
292
|
+
$fault: "client",
|
|
293
|
+
...opts,
|
|
294
|
+
});
|
|
295
|
+
this.name = "StageNotFoundException";
|
|
296
|
+
this.$fault = "client";
|
|
297
|
+
Object.setPrototypeOf(this, StageNotFoundException.prototype);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
export class PipelineVersionNotFoundException extends __BaseException {
|
|
301
|
+
constructor(opts) {
|
|
302
|
+
super({
|
|
303
|
+
name: "PipelineVersionNotFoundException",
|
|
304
|
+
$fault: "client",
|
|
305
|
+
...opts,
|
|
306
|
+
});
|
|
307
|
+
this.name = "PipelineVersionNotFoundException";
|
|
308
|
+
this.$fault = "client";
|
|
309
|
+
Object.setPrototypeOf(this, PipelineVersionNotFoundException.prototype);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
313
312
|
export var PipelineExecutionStatus;
|
|
314
313
|
(function (PipelineExecutionStatus) {
|
|
315
314
|
PipelineExecutionStatus["Cancelled"] = "Cancelled";
|
|
@@ -320,18 +319,18 @@ export var PipelineExecutionStatus;
|
|
|
320
319
|
PipelineExecutionStatus["Succeeded"] = "Succeeded";
|
|
321
320
|
PipelineExecutionStatus["Superseded"] = "Superseded";
|
|
322
321
|
})(PipelineExecutionStatus || (PipelineExecutionStatus = {}));
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
}
|
|
334
|
-
|
|
322
|
+
export class PipelineExecutionNotFoundException extends __BaseException {
|
|
323
|
+
constructor(opts) {
|
|
324
|
+
super({
|
|
325
|
+
name: "PipelineExecutionNotFoundException",
|
|
326
|
+
$fault: "client",
|
|
327
|
+
...opts,
|
|
328
|
+
});
|
|
329
|
+
this.name = "PipelineExecutionNotFoundException";
|
|
330
|
+
this.$fault = "client";
|
|
331
|
+
Object.setPrototypeOf(this, PipelineExecutionNotFoundException.prototype);
|
|
332
|
+
}
|
|
333
|
+
}
|
|
335
334
|
export var StageExecutionStatus;
|
|
336
335
|
(function (StageExecutionStatus) {
|
|
337
336
|
StageExecutionStatus["Cancelled"] = "Cancelled";
|
|
@@ -341,30 +340,30 @@ export var StageExecutionStatus;
|
|
|
341
340
|
StageExecutionStatus["Stopping"] = "Stopping";
|
|
342
341
|
StageExecutionStatus["Succeeded"] = "Succeeded";
|
|
343
342
|
})(StageExecutionStatus || (StageExecutionStatus = {}));
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
}
|
|
367
|
-
|
|
343
|
+
export class InvalidJobException extends __BaseException {
|
|
344
|
+
constructor(opts) {
|
|
345
|
+
super({
|
|
346
|
+
name: "InvalidJobException",
|
|
347
|
+
$fault: "client",
|
|
348
|
+
...opts,
|
|
349
|
+
});
|
|
350
|
+
this.name = "InvalidJobException";
|
|
351
|
+
this.$fault = "client";
|
|
352
|
+
Object.setPrototypeOf(this, InvalidJobException.prototype);
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
export class InvalidNextTokenException extends __BaseException {
|
|
356
|
+
constructor(opts) {
|
|
357
|
+
super({
|
|
358
|
+
name: "InvalidNextTokenException",
|
|
359
|
+
$fault: "client",
|
|
360
|
+
...opts,
|
|
361
|
+
});
|
|
362
|
+
this.name = "InvalidNextTokenException";
|
|
363
|
+
this.$fault = "client";
|
|
364
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
365
|
+
}
|
|
366
|
+
}
|
|
368
367
|
export var TriggerType;
|
|
369
368
|
(function (TriggerType) {
|
|
370
369
|
TriggerType["CloudWatchEvent"] = "CloudWatchEvent";
|
|
@@ -374,60 +373,60 @@ export var TriggerType;
|
|
|
374
373
|
TriggerType["StartPipelineExecution"] = "StartPipelineExecution";
|
|
375
374
|
TriggerType["Webhook"] = "Webhook";
|
|
376
375
|
})(TriggerType || (TriggerType = {}));
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
}
|
|
400
|
-
|
|
376
|
+
export class InvalidArnException extends __BaseException {
|
|
377
|
+
constructor(opts) {
|
|
378
|
+
super({
|
|
379
|
+
name: "InvalidArnException",
|
|
380
|
+
$fault: "client",
|
|
381
|
+
...opts,
|
|
382
|
+
});
|
|
383
|
+
this.name = "InvalidArnException";
|
|
384
|
+
this.$fault = "client";
|
|
385
|
+
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
389
|
+
constructor(opts) {
|
|
390
|
+
super({
|
|
391
|
+
name: "ResourceNotFoundException",
|
|
392
|
+
$fault: "client",
|
|
393
|
+
...opts,
|
|
394
|
+
});
|
|
395
|
+
this.name = "ResourceNotFoundException";
|
|
396
|
+
this.$fault = "client";
|
|
397
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
398
|
+
}
|
|
399
|
+
}
|
|
401
400
|
export var WebhookAuthenticationType;
|
|
402
401
|
(function (WebhookAuthenticationType) {
|
|
403
402
|
WebhookAuthenticationType["GITHUB_HMAC"] = "GITHUB_HMAC";
|
|
404
403
|
WebhookAuthenticationType["IP"] = "IP";
|
|
405
404
|
WebhookAuthenticationType["UNAUTHENTICATED"] = "UNAUTHENTICATED";
|
|
406
405
|
})(WebhookAuthenticationType || (WebhookAuthenticationType = {}));
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
}
|
|
430
|
-
|
|
406
|
+
export class InvalidApprovalTokenException extends __BaseException {
|
|
407
|
+
constructor(opts) {
|
|
408
|
+
super({
|
|
409
|
+
name: "InvalidApprovalTokenException",
|
|
410
|
+
$fault: "client",
|
|
411
|
+
...opts,
|
|
412
|
+
});
|
|
413
|
+
this.name = "InvalidApprovalTokenException";
|
|
414
|
+
this.$fault = "client";
|
|
415
|
+
Object.setPrototypeOf(this, InvalidApprovalTokenException.prototype);
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
export class InvalidJobStateException extends __BaseException {
|
|
419
|
+
constructor(opts) {
|
|
420
|
+
super({
|
|
421
|
+
name: "InvalidJobStateException",
|
|
422
|
+
$fault: "client",
|
|
423
|
+
...opts,
|
|
424
|
+
});
|
|
425
|
+
this.name = "InvalidJobStateException";
|
|
426
|
+
this.$fault = "client";
|
|
427
|
+
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
428
|
+
}
|
|
429
|
+
}
|
|
431
430
|
export var FailureType;
|
|
432
431
|
(function (FailureType) {
|
|
433
432
|
FailureType["ConfigurationError"] = "ConfigurationError";
|
|
@@ -437,252 +436,537 @@ export var FailureType;
|
|
|
437
436
|
FailureType["RevisionUnavailable"] = "RevisionUnavailable";
|
|
438
437
|
FailureType["SystemUnavailable"] = "SystemUnavailable";
|
|
439
438
|
})(FailureType || (FailureType = {}));
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
}
|
|
499
|
-
|
|
439
|
+
export class OutputVariablesSizeExceededException extends __BaseException {
|
|
440
|
+
constructor(opts) {
|
|
441
|
+
super({
|
|
442
|
+
name: "OutputVariablesSizeExceededException",
|
|
443
|
+
$fault: "client",
|
|
444
|
+
...opts,
|
|
445
|
+
});
|
|
446
|
+
this.name = "OutputVariablesSizeExceededException";
|
|
447
|
+
this.$fault = "client";
|
|
448
|
+
Object.setPrototypeOf(this, OutputVariablesSizeExceededException.prototype);
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
export class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
452
|
+
constructor(opts) {
|
|
453
|
+
super({
|
|
454
|
+
name: "InvalidWebhookAuthenticationParametersException",
|
|
455
|
+
$fault: "client",
|
|
456
|
+
...opts,
|
|
457
|
+
});
|
|
458
|
+
this.name = "InvalidWebhookAuthenticationParametersException";
|
|
459
|
+
this.$fault = "client";
|
|
460
|
+
Object.setPrototypeOf(this, InvalidWebhookAuthenticationParametersException.prototype);
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
export class InvalidWebhookFilterPatternException extends __BaseException {
|
|
464
|
+
constructor(opts) {
|
|
465
|
+
super({
|
|
466
|
+
name: "InvalidWebhookFilterPatternException",
|
|
467
|
+
$fault: "client",
|
|
468
|
+
...opts,
|
|
469
|
+
});
|
|
470
|
+
this.name = "InvalidWebhookFilterPatternException";
|
|
471
|
+
this.$fault = "client";
|
|
472
|
+
Object.setPrototypeOf(this, InvalidWebhookFilterPatternException.prototype);
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
export class ConflictException extends __BaseException {
|
|
476
|
+
constructor(opts) {
|
|
477
|
+
super({
|
|
478
|
+
name: "ConflictException",
|
|
479
|
+
$fault: "client",
|
|
480
|
+
...opts,
|
|
481
|
+
});
|
|
482
|
+
this.name = "ConflictException";
|
|
483
|
+
this.$fault = "client";
|
|
484
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
export class NotLatestPipelineExecutionException extends __BaseException {
|
|
488
|
+
constructor(opts) {
|
|
489
|
+
super({
|
|
490
|
+
name: "NotLatestPipelineExecutionException",
|
|
491
|
+
$fault: "client",
|
|
492
|
+
...opts,
|
|
493
|
+
});
|
|
494
|
+
this.name = "NotLatestPipelineExecutionException";
|
|
495
|
+
this.$fault = "client";
|
|
496
|
+
Object.setPrototypeOf(this, NotLatestPipelineExecutionException.prototype);
|
|
497
|
+
}
|
|
498
|
+
}
|
|
500
499
|
export var StageRetryMode;
|
|
501
500
|
(function (StageRetryMode) {
|
|
502
501
|
StageRetryMode["FAILED_ACTIONS"] = "FAILED_ACTIONS";
|
|
503
502
|
})(StageRetryMode || (StageRetryMode = {}));
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
export
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
export
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
export
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
export
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
export
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
export
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
export
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
export
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
export
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
export
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
export
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
export
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
export
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
export
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
export
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
export
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
export
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
export
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
export
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
export
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
export
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
export
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
export
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
export
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
export
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
export
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
export
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
export
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
export
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
export
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
export
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
export
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
export
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
export
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
export
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
export
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
export
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
export
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
export
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
export
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
export
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
export
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
export
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
export
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
export
|
|
688
|
-
|
|
503
|
+
export class StageNotRetryableException extends __BaseException {
|
|
504
|
+
constructor(opts) {
|
|
505
|
+
super({
|
|
506
|
+
name: "StageNotRetryableException",
|
|
507
|
+
$fault: "client",
|
|
508
|
+
...opts,
|
|
509
|
+
});
|
|
510
|
+
this.name = "StageNotRetryableException";
|
|
511
|
+
this.$fault = "client";
|
|
512
|
+
Object.setPrototypeOf(this, StageNotRetryableException.prototype);
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
export class DuplicatedStopRequestException extends __BaseException {
|
|
516
|
+
constructor(opts) {
|
|
517
|
+
super({
|
|
518
|
+
name: "DuplicatedStopRequestException",
|
|
519
|
+
$fault: "client",
|
|
520
|
+
...opts,
|
|
521
|
+
});
|
|
522
|
+
this.name = "DuplicatedStopRequestException";
|
|
523
|
+
this.$fault = "client";
|
|
524
|
+
Object.setPrototypeOf(this, DuplicatedStopRequestException.prototype);
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
export class PipelineExecutionNotStoppableException extends __BaseException {
|
|
528
|
+
constructor(opts) {
|
|
529
|
+
super({
|
|
530
|
+
name: "PipelineExecutionNotStoppableException",
|
|
531
|
+
$fault: "client",
|
|
532
|
+
...opts,
|
|
533
|
+
});
|
|
534
|
+
this.name = "PipelineExecutionNotStoppableException";
|
|
535
|
+
this.$fault = "client";
|
|
536
|
+
Object.setPrototypeOf(this, PipelineExecutionNotStoppableException.prototype);
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
export class RequestFailedException extends __BaseException {
|
|
540
|
+
constructor(opts) {
|
|
541
|
+
super({
|
|
542
|
+
name: "RequestFailedException",
|
|
543
|
+
$fault: "client",
|
|
544
|
+
...opts,
|
|
545
|
+
});
|
|
546
|
+
this.name = "RequestFailedException";
|
|
547
|
+
this.$fault = "client";
|
|
548
|
+
Object.setPrototypeOf(this, RequestFailedException.prototype);
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
export const AcknowledgeJobInputFilterSensitiveLog = (obj) => ({
|
|
552
|
+
...obj,
|
|
553
|
+
});
|
|
554
|
+
export const AcknowledgeJobOutputFilterSensitiveLog = (obj) => ({
|
|
555
|
+
...obj,
|
|
556
|
+
});
|
|
557
|
+
export const AcknowledgeThirdPartyJobInputFilterSensitiveLog = (obj) => ({
|
|
558
|
+
...obj,
|
|
559
|
+
});
|
|
560
|
+
export const AcknowledgeThirdPartyJobOutputFilterSensitiveLog = (obj) => ({
|
|
561
|
+
...obj,
|
|
562
|
+
});
|
|
563
|
+
export const ActionConfigurationFilterSensitiveLog = (obj) => ({
|
|
564
|
+
...obj,
|
|
565
|
+
});
|
|
566
|
+
export const ActionConfigurationPropertyFilterSensitiveLog = (obj) => ({
|
|
567
|
+
...obj,
|
|
568
|
+
});
|
|
569
|
+
export const ActionContextFilterSensitiveLog = (obj) => ({
|
|
570
|
+
...obj,
|
|
571
|
+
});
|
|
572
|
+
export const ActionTypeIdFilterSensitiveLog = (obj) => ({
|
|
573
|
+
...obj,
|
|
574
|
+
});
|
|
575
|
+
export const InputArtifactFilterSensitiveLog = (obj) => ({
|
|
576
|
+
...obj,
|
|
577
|
+
});
|
|
578
|
+
export const OutputArtifactFilterSensitiveLog = (obj) => ({
|
|
579
|
+
...obj,
|
|
580
|
+
});
|
|
581
|
+
export const ActionDeclarationFilterSensitiveLog = (obj) => ({
|
|
582
|
+
...obj,
|
|
583
|
+
});
|
|
584
|
+
export const ErrorDetailsFilterSensitiveLog = (obj) => ({
|
|
585
|
+
...obj,
|
|
586
|
+
});
|
|
587
|
+
export const ActionExecutionFilterSensitiveLog = (obj) => ({
|
|
588
|
+
...obj,
|
|
589
|
+
});
|
|
590
|
+
export const S3LocationFilterSensitiveLog = (obj) => ({
|
|
591
|
+
...obj,
|
|
592
|
+
});
|
|
593
|
+
export const ArtifactDetailFilterSensitiveLog = (obj) => ({
|
|
594
|
+
...obj,
|
|
595
|
+
});
|
|
596
|
+
export const ActionExecutionInputFilterSensitiveLog = (obj) => ({
|
|
597
|
+
...obj,
|
|
598
|
+
});
|
|
599
|
+
export const ActionExecutionResultFilterSensitiveLog = (obj) => ({
|
|
600
|
+
...obj,
|
|
601
|
+
});
|
|
602
|
+
export const ActionExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
603
|
+
...obj,
|
|
604
|
+
});
|
|
605
|
+
export const ActionExecutionDetailFilterSensitiveLog = (obj) => ({
|
|
606
|
+
...obj,
|
|
607
|
+
});
|
|
608
|
+
export const ActionExecutionFilterFilterSensitiveLog = (obj) => ({
|
|
609
|
+
...obj,
|
|
610
|
+
});
|
|
611
|
+
export const ActionRevisionFilterSensitiveLog = (obj) => ({
|
|
612
|
+
...obj,
|
|
613
|
+
});
|
|
614
|
+
export const ActionStateFilterSensitiveLog = (obj) => ({
|
|
615
|
+
...obj,
|
|
616
|
+
});
|
|
617
|
+
export const ArtifactDetailsFilterSensitiveLog = (obj) => ({
|
|
618
|
+
...obj,
|
|
619
|
+
});
|
|
620
|
+
export const ActionTypeSettingsFilterSensitiveLog = (obj) => ({
|
|
621
|
+
...obj,
|
|
622
|
+
});
|
|
623
|
+
export const ActionTypeFilterSensitiveLog = (obj) => ({
|
|
624
|
+
...obj,
|
|
625
|
+
});
|
|
626
|
+
export const ActionTypeArtifactDetailsFilterSensitiveLog = (obj) => ({
|
|
627
|
+
...obj,
|
|
628
|
+
});
|
|
629
|
+
export const JobWorkerExecutorConfigurationFilterSensitiveLog = (obj) => ({
|
|
630
|
+
...obj,
|
|
631
|
+
});
|
|
632
|
+
export const LambdaExecutorConfigurationFilterSensitiveLog = (obj) => ({
|
|
633
|
+
...obj,
|
|
634
|
+
});
|
|
635
|
+
export const ExecutorConfigurationFilterSensitiveLog = (obj) => ({
|
|
636
|
+
...obj,
|
|
637
|
+
});
|
|
638
|
+
export const ActionTypeExecutorFilterSensitiveLog = (obj) => ({
|
|
639
|
+
...obj,
|
|
640
|
+
});
|
|
641
|
+
export const ActionTypeIdentifierFilterSensitiveLog = (obj) => ({
|
|
642
|
+
...obj,
|
|
643
|
+
});
|
|
644
|
+
export const ActionTypePermissionsFilterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
});
|
|
647
|
+
export const ActionTypePropertyFilterSensitiveLog = (obj) => ({
|
|
648
|
+
...obj,
|
|
649
|
+
});
|
|
650
|
+
export const ActionTypeUrlsFilterSensitiveLog = (obj) => ({
|
|
651
|
+
...obj,
|
|
652
|
+
});
|
|
653
|
+
export const ActionTypeDeclarationFilterSensitiveLog = (obj) => ({
|
|
654
|
+
...obj,
|
|
655
|
+
});
|
|
656
|
+
export const ApprovalResultFilterSensitiveLog = (obj) => ({
|
|
657
|
+
...obj,
|
|
658
|
+
});
|
|
659
|
+
export const S3ArtifactLocationFilterSensitiveLog = (obj) => ({
|
|
660
|
+
...obj,
|
|
661
|
+
});
|
|
662
|
+
export const ArtifactLocationFilterSensitiveLog = (obj) => ({
|
|
663
|
+
...obj,
|
|
664
|
+
});
|
|
665
|
+
export const ArtifactFilterSensitiveLog = (obj) => ({
|
|
666
|
+
...obj,
|
|
667
|
+
});
|
|
668
|
+
export const ArtifactRevisionFilterSensitiveLog = (obj) => ({
|
|
669
|
+
...obj,
|
|
670
|
+
});
|
|
671
|
+
export const EncryptionKeyFilterSensitiveLog = (obj) => ({
|
|
672
|
+
...obj,
|
|
673
|
+
});
|
|
674
|
+
export const ArtifactStoreFilterSensitiveLog = (obj) => ({
|
|
675
|
+
...obj,
|
|
676
|
+
});
|
|
677
|
+
export const AWSSessionCredentialsFilterSensitiveLog = (obj) => ({
|
|
678
|
+
...obj,
|
|
679
|
+
...(obj.accessKeyId && { accessKeyId: SENSITIVE_STRING }),
|
|
680
|
+
...(obj.secretAccessKey && { secretAccessKey: SENSITIVE_STRING }),
|
|
681
|
+
...(obj.sessionToken && { sessionToken: SENSITIVE_STRING }),
|
|
682
|
+
});
|
|
683
|
+
export const BlockerDeclarationFilterSensitiveLog = (obj) => ({
|
|
684
|
+
...obj,
|
|
685
|
+
});
|
|
686
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
687
|
+
...obj,
|
|
688
|
+
});
|
|
689
|
+
export const CreateCustomActionTypeInputFilterSensitiveLog = (obj) => ({
|
|
690
|
+
...obj,
|
|
691
|
+
});
|
|
692
|
+
export const CreateCustomActionTypeOutputFilterSensitiveLog = (obj) => ({
|
|
693
|
+
...obj,
|
|
694
|
+
});
|
|
695
|
+
export const StageDeclarationFilterSensitiveLog = (obj) => ({
|
|
696
|
+
...obj,
|
|
697
|
+
});
|
|
698
|
+
export const PipelineDeclarationFilterSensitiveLog = (obj) => ({
|
|
699
|
+
...obj,
|
|
700
|
+
});
|
|
701
|
+
export const CreatePipelineInputFilterSensitiveLog = (obj) => ({
|
|
702
|
+
...obj,
|
|
703
|
+
});
|
|
704
|
+
export const CreatePipelineOutputFilterSensitiveLog = (obj) => ({
|
|
705
|
+
...obj,
|
|
706
|
+
});
|
|
707
|
+
export const DeleteCustomActionTypeInputFilterSensitiveLog = (obj) => ({
|
|
708
|
+
...obj,
|
|
709
|
+
});
|
|
710
|
+
export const DeletePipelineInputFilterSensitiveLog = (obj) => ({
|
|
711
|
+
...obj,
|
|
712
|
+
});
|
|
713
|
+
export const DeleteWebhookInputFilterSensitiveLog = (obj) => ({
|
|
714
|
+
...obj,
|
|
715
|
+
});
|
|
716
|
+
export const DeleteWebhookOutputFilterSensitiveLog = (obj) => ({
|
|
717
|
+
...obj,
|
|
718
|
+
});
|
|
719
|
+
export const DeregisterWebhookWithThirdPartyInputFilterSensitiveLog = (obj) => ({
|
|
720
|
+
...obj,
|
|
721
|
+
});
|
|
722
|
+
export const DeregisterWebhookWithThirdPartyOutputFilterSensitiveLog = (obj) => ({
|
|
723
|
+
...obj,
|
|
724
|
+
});
|
|
725
|
+
export const DisableStageTransitionInputFilterSensitiveLog = (obj) => ({
|
|
726
|
+
...obj,
|
|
727
|
+
});
|
|
728
|
+
export const EnableStageTransitionInputFilterSensitiveLog = (obj) => ({
|
|
729
|
+
...obj,
|
|
730
|
+
});
|
|
731
|
+
export const GetActionTypeInputFilterSensitiveLog = (obj) => ({
|
|
732
|
+
...obj,
|
|
733
|
+
});
|
|
734
|
+
export const GetActionTypeOutputFilterSensitiveLog = (obj) => ({
|
|
735
|
+
...obj,
|
|
736
|
+
});
|
|
737
|
+
export const GetJobDetailsInputFilterSensitiveLog = (obj) => ({
|
|
738
|
+
...obj,
|
|
739
|
+
});
|
|
740
|
+
export const StageContextFilterSensitiveLog = (obj) => ({
|
|
741
|
+
...obj,
|
|
742
|
+
});
|
|
743
|
+
export const PipelineContextFilterSensitiveLog = (obj) => ({
|
|
744
|
+
...obj,
|
|
745
|
+
});
|
|
746
|
+
export const JobDataFilterSensitiveLog = (obj) => ({
|
|
747
|
+
...obj,
|
|
748
|
+
...(obj.artifactCredentials && { artifactCredentials: SENSITIVE_STRING }),
|
|
749
|
+
});
|
|
750
|
+
export const JobDetailsFilterSensitiveLog = (obj) => ({
|
|
751
|
+
...obj,
|
|
752
|
+
...(obj.data && { data: JobDataFilterSensitiveLog(obj.data) }),
|
|
753
|
+
});
|
|
754
|
+
export const GetJobDetailsOutputFilterSensitiveLog = (obj) => ({
|
|
755
|
+
...obj,
|
|
756
|
+
...(obj.jobDetails && { jobDetails: JobDetailsFilterSensitiveLog(obj.jobDetails) }),
|
|
757
|
+
});
|
|
758
|
+
export const GetPipelineInputFilterSensitiveLog = (obj) => ({
|
|
759
|
+
...obj,
|
|
760
|
+
});
|
|
761
|
+
export const PipelineMetadataFilterSensitiveLog = (obj) => ({
|
|
762
|
+
...obj,
|
|
763
|
+
});
|
|
764
|
+
export const GetPipelineOutputFilterSensitiveLog = (obj) => ({
|
|
765
|
+
...obj,
|
|
766
|
+
});
|
|
767
|
+
export const GetPipelineExecutionInputFilterSensitiveLog = (obj) => ({
|
|
768
|
+
...obj,
|
|
769
|
+
});
|
|
770
|
+
export const PipelineExecutionFilterSensitiveLog = (obj) => ({
|
|
771
|
+
...obj,
|
|
772
|
+
});
|
|
773
|
+
export const GetPipelineExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
774
|
+
...obj,
|
|
775
|
+
});
|
|
776
|
+
export const GetPipelineStateInputFilterSensitiveLog = (obj) => ({
|
|
777
|
+
...obj,
|
|
778
|
+
});
|
|
779
|
+
export const StageExecutionFilterSensitiveLog = (obj) => ({
|
|
780
|
+
...obj,
|
|
781
|
+
});
|
|
782
|
+
export const TransitionStateFilterSensitiveLog = (obj) => ({
|
|
783
|
+
...obj,
|
|
784
|
+
});
|
|
785
|
+
export const StageStateFilterSensitiveLog = (obj) => ({
|
|
786
|
+
...obj,
|
|
787
|
+
});
|
|
788
|
+
export const GetPipelineStateOutputFilterSensitiveLog = (obj) => ({
|
|
789
|
+
...obj,
|
|
790
|
+
});
|
|
791
|
+
export const GetThirdPartyJobDetailsInputFilterSensitiveLog = (obj) => ({
|
|
792
|
+
...obj,
|
|
793
|
+
});
|
|
794
|
+
export const ThirdPartyJobDataFilterSensitiveLog = (obj) => ({
|
|
795
|
+
...obj,
|
|
796
|
+
...(obj.artifactCredentials && { artifactCredentials: SENSITIVE_STRING }),
|
|
797
|
+
});
|
|
798
|
+
export const ThirdPartyJobDetailsFilterSensitiveLog = (obj) => ({
|
|
799
|
+
...obj,
|
|
800
|
+
...(obj.data && { data: ThirdPartyJobDataFilterSensitiveLog(obj.data) }),
|
|
801
|
+
});
|
|
802
|
+
export const GetThirdPartyJobDetailsOutputFilterSensitiveLog = (obj) => ({
|
|
803
|
+
...obj,
|
|
804
|
+
...(obj.jobDetails && { jobDetails: ThirdPartyJobDetailsFilterSensitiveLog(obj.jobDetails) }),
|
|
805
|
+
});
|
|
806
|
+
export const ListActionExecutionsInputFilterSensitiveLog = (obj) => ({
|
|
807
|
+
...obj,
|
|
808
|
+
});
|
|
809
|
+
export const ListActionExecutionsOutputFilterSensitiveLog = (obj) => ({
|
|
810
|
+
...obj,
|
|
811
|
+
});
|
|
812
|
+
export const ListActionTypesInputFilterSensitiveLog = (obj) => ({
|
|
813
|
+
...obj,
|
|
814
|
+
});
|
|
815
|
+
export const ListActionTypesOutputFilterSensitiveLog = (obj) => ({
|
|
816
|
+
...obj,
|
|
817
|
+
});
|
|
818
|
+
export const ListPipelineExecutionsInputFilterSensitiveLog = (obj) => ({
|
|
819
|
+
...obj,
|
|
820
|
+
});
|
|
821
|
+
export const SourceRevisionFilterSensitiveLog = (obj) => ({
|
|
822
|
+
...obj,
|
|
823
|
+
});
|
|
824
|
+
export const StopExecutionTriggerFilterSensitiveLog = (obj) => ({
|
|
825
|
+
...obj,
|
|
826
|
+
});
|
|
827
|
+
export const ExecutionTriggerFilterSensitiveLog = (obj) => ({
|
|
828
|
+
...obj,
|
|
829
|
+
});
|
|
830
|
+
export const PipelineExecutionSummaryFilterSensitiveLog = (obj) => ({
|
|
831
|
+
...obj,
|
|
832
|
+
});
|
|
833
|
+
export const ListPipelineExecutionsOutputFilterSensitiveLog = (obj) => ({
|
|
834
|
+
...obj,
|
|
835
|
+
});
|
|
836
|
+
export const ListPipelinesInputFilterSensitiveLog = (obj) => ({
|
|
837
|
+
...obj,
|
|
838
|
+
});
|
|
839
|
+
export const PipelineSummaryFilterSensitiveLog = (obj) => ({
|
|
840
|
+
...obj,
|
|
841
|
+
});
|
|
842
|
+
export const ListPipelinesOutputFilterSensitiveLog = (obj) => ({
|
|
843
|
+
...obj,
|
|
844
|
+
});
|
|
845
|
+
export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
|
|
846
|
+
...obj,
|
|
847
|
+
});
|
|
848
|
+
export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
849
|
+
...obj,
|
|
850
|
+
});
|
|
851
|
+
export const ListWebhooksInputFilterSensitiveLog = (obj) => ({
|
|
852
|
+
...obj,
|
|
853
|
+
});
|
|
854
|
+
export const WebhookAuthConfigurationFilterSensitiveLog = (obj) => ({
|
|
855
|
+
...obj,
|
|
856
|
+
});
|
|
857
|
+
export const WebhookFilterRuleFilterSensitiveLog = (obj) => ({
|
|
858
|
+
...obj,
|
|
859
|
+
});
|
|
860
|
+
export const WebhookDefinitionFilterSensitiveLog = (obj) => ({
|
|
861
|
+
...obj,
|
|
862
|
+
});
|
|
863
|
+
export const ListWebhookItemFilterSensitiveLog = (obj) => ({
|
|
864
|
+
...obj,
|
|
865
|
+
});
|
|
866
|
+
export const ListWebhooksOutputFilterSensitiveLog = (obj) => ({
|
|
867
|
+
...obj,
|
|
868
|
+
});
|
|
869
|
+
export const PollForJobsInputFilterSensitiveLog = (obj) => ({
|
|
870
|
+
...obj,
|
|
871
|
+
});
|
|
872
|
+
export const JobFilterSensitiveLog = (obj) => ({
|
|
873
|
+
...obj,
|
|
874
|
+
...(obj.data && { data: JobDataFilterSensitiveLog(obj.data) }),
|
|
875
|
+
});
|
|
876
|
+
export const PollForJobsOutputFilterSensitiveLog = (obj) => ({
|
|
877
|
+
...obj,
|
|
878
|
+
...(obj.jobs && { jobs: obj.jobs.map((item) => JobFilterSensitiveLog(item)) }),
|
|
879
|
+
});
|
|
880
|
+
export const PollForThirdPartyJobsInputFilterSensitiveLog = (obj) => ({
|
|
881
|
+
...obj,
|
|
882
|
+
});
|
|
883
|
+
export const ThirdPartyJobFilterSensitiveLog = (obj) => ({
|
|
884
|
+
...obj,
|
|
885
|
+
});
|
|
886
|
+
export const PollForThirdPartyJobsOutputFilterSensitiveLog = (obj) => ({
|
|
887
|
+
...obj,
|
|
888
|
+
});
|
|
889
|
+
export const PutActionRevisionInputFilterSensitiveLog = (obj) => ({
|
|
890
|
+
...obj,
|
|
891
|
+
});
|
|
892
|
+
export const PutActionRevisionOutputFilterSensitiveLog = (obj) => ({
|
|
893
|
+
...obj,
|
|
894
|
+
});
|
|
895
|
+
export const PutApprovalResultInputFilterSensitiveLog = (obj) => ({
|
|
896
|
+
...obj,
|
|
897
|
+
});
|
|
898
|
+
export const PutApprovalResultOutputFilterSensitiveLog = (obj) => ({
|
|
899
|
+
...obj,
|
|
900
|
+
});
|
|
901
|
+
export const FailureDetailsFilterSensitiveLog = (obj) => ({
|
|
902
|
+
...obj,
|
|
903
|
+
});
|
|
904
|
+
export const PutJobFailureResultInputFilterSensitiveLog = (obj) => ({
|
|
905
|
+
...obj,
|
|
906
|
+
});
|
|
907
|
+
export const CurrentRevisionFilterSensitiveLog = (obj) => ({
|
|
908
|
+
...obj,
|
|
909
|
+
});
|
|
910
|
+
export const ExecutionDetailsFilterSensitiveLog = (obj) => ({
|
|
911
|
+
...obj,
|
|
912
|
+
});
|
|
913
|
+
export const PutJobSuccessResultInputFilterSensitiveLog = (obj) => ({
|
|
914
|
+
...obj,
|
|
915
|
+
});
|
|
916
|
+
export const PutThirdPartyJobFailureResultInputFilterSensitiveLog = (obj) => ({
|
|
917
|
+
...obj,
|
|
918
|
+
});
|
|
919
|
+
export const PutThirdPartyJobSuccessResultInputFilterSensitiveLog = (obj) => ({
|
|
920
|
+
...obj,
|
|
921
|
+
});
|
|
922
|
+
export const PutWebhookInputFilterSensitiveLog = (obj) => ({
|
|
923
|
+
...obj,
|
|
924
|
+
});
|
|
925
|
+
export const PutWebhookOutputFilterSensitiveLog = (obj) => ({
|
|
926
|
+
...obj,
|
|
927
|
+
});
|
|
928
|
+
export const RegisterWebhookWithThirdPartyInputFilterSensitiveLog = (obj) => ({
|
|
929
|
+
...obj,
|
|
930
|
+
});
|
|
931
|
+
export const RegisterWebhookWithThirdPartyOutputFilterSensitiveLog = (obj) => ({
|
|
932
|
+
...obj,
|
|
933
|
+
});
|
|
934
|
+
export const RetryStageExecutionInputFilterSensitiveLog = (obj) => ({
|
|
935
|
+
...obj,
|
|
936
|
+
});
|
|
937
|
+
export const RetryStageExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
938
|
+
...obj,
|
|
939
|
+
});
|
|
940
|
+
export const StartPipelineExecutionInputFilterSensitiveLog = (obj) => ({
|
|
941
|
+
...obj,
|
|
942
|
+
});
|
|
943
|
+
export const StartPipelineExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
944
|
+
...obj,
|
|
945
|
+
});
|
|
946
|
+
export const StopPipelineExecutionInputFilterSensitiveLog = (obj) => ({
|
|
947
|
+
...obj,
|
|
948
|
+
});
|
|
949
|
+
export const StopPipelineExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
950
|
+
...obj,
|
|
951
|
+
});
|
|
952
|
+
export const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
953
|
+
...obj,
|
|
954
|
+
});
|
|
955
|
+
export const TagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
956
|
+
...obj,
|
|
957
|
+
});
|
|
958
|
+
export const UntagResourceInputFilterSensitiveLog = (obj) => ({
|
|
959
|
+
...obj,
|
|
960
|
+
});
|
|
961
|
+
export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
962
|
+
...obj,
|
|
963
|
+
});
|
|
964
|
+
export const UpdateActionTypeInputFilterSensitiveLog = (obj) => ({
|
|
965
|
+
...obj,
|
|
966
|
+
});
|
|
967
|
+
export const UpdatePipelineInputFilterSensitiveLog = (obj) => ({
|
|
968
|
+
...obj,
|
|
969
|
+
});
|
|
970
|
+
export const UpdatePipelineOutputFilterSensitiveLog = (obj) => ({
|
|
971
|
+
...obj,
|
|
972
|
+
});
|