@aws-sdk/client-codepipeline 3.934.0 → 3.936.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/dist-cjs/index.js +183 -182
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +182 -0
- package/dist-es/models/errors.js +493 -0
- package/dist-es/models/models_0.js +1 -675
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +462 -0
- package/dist-types/models/errors.d.ts +512 -0
- package/dist-types/models/models_0.d.ts +1 -974
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +238 -0
- package/dist-types/ts3.4/models/errors.d.ts +335 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -573
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,675 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const JobStatus = {
|
|
3
|
-
Created: "Created",
|
|
4
|
-
Dispatched: "Dispatched",
|
|
5
|
-
Failed: "Failed",
|
|
6
|
-
InProgress: "InProgress",
|
|
7
|
-
Queued: "Queued",
|
|
8
|
-
Succeeded: "Succeeded",
|
|
9
|
-
TimedOut: "TimedOut",
|
|
10
|
-
};
|
|
11
|
-
export class InvalidNonceException extends __BaseException {
|
|
12
|
-
name = "InvalidNonceException";
|
|
13
|
-
$fault = "client";
|
|
14
|
-
constructor(opts) {
|
|
15
|
-
super({
|
|
16
|
-
name: "InvalidNonceException",
|
|
17
|
-
$fault: "client",
|
|
18
|
-
...opts,
|
|
19
|
-
});
|
|
20
|
-
Object.setPrototypeOf(this, InvalidNonceException.prototype);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
export class JobNotFoundException extends __BaseException {
|
|
24
|
-
name = "JobNotFoundException";
|
|
25
|
-
$fault = "client";
|
|
26
|
-
constructor(opts) {
|
|
27
|
-
super({
|
|
28
|
-
name: "JobNotFoundException",
|
|
29
|
-
$fault: "client",
|
|
30
|
-
...opts,
|
|
31
|
-
});
|
|
32
|
-
Object.setPrototypeOf(this, JobNotFoundException.prototype);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
export class ValidationException extends __BaseException {
|
|
36
|
-
name = "ValidationException";
|
|
37
|
-
$fault = "client";
|
|
38
|
-
constructor(opts) {
|
|
39
|
-
super({
|
|
40
|
-
name: "ValidationException",
|
|
41
|
-
$fault: "client",
|
|
42
|
-
...opts,
|
|
43
|
-
});
|
|
44
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
export class InvalidClientTokenException extends __BaseException {
|
|
48
|
-
name = "InvalidClientTokenException";
|
|
49
|
-
$fault = "client";
|
|
50
|
-
constructor(opts) {
|
|
51
|
-
super({
|
|
52
|
-
name: "InvalidClientTokenException",
|
|
53
|
-
$fault: "client",
|
|
54
|
-
...opts,
|
|
55
|
-
});
|
|
56
|
-
Object.setPrototypeOf(this, InvalidClientTokenException.prototype);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
export const ActionCategory = {
|
|
60
|
-
Approval: "Approval",
|
|
61
|
-
Build: "Build",
|
|
62
|
-
Compute: "Compute",
|
|
63
|
-
Deploy: "Deploy",
|
|
64
|
-
Invoke: "Invoke",
|
|
65
|
-
Source: "Source",
|
|
66
|
-
Test: "Test",
|
|
67
|
-
};
|
|
68
|
-
export const ActionConfigurationPropertyType = {
|
|
69
|
-
Boolean: "Boolean",
|
|
70
|
-
Number: "Number",
|
|
71
|
-
String: "String",
|
|
72
|
-
};
|
|
73
|
-
export const ActionOwner = {
|
|
74
|
-
AWS: "AWS",
|
|
75
|
-
Custom: "Custom",
|
|
76
|
-
ThirdParty: "ThirdParty",
|
|
77
|
-
};
|
|
78
|
-
export const EnvironmentVariableType = {
|
|
79
|
-
PLAINTEXT: "PLAINTEXT",
|
|
80
|
-
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
81
|
-
};
|
|
82
|
-
export const ActionExecutionStatus = {
|
|
83
|
-
Abandoned: "Abandoned",
|
|
84
|
-
Failed: "Failed",
|
|
85
|
-
InProgress: "InProgress",
|
|
86
|
-
Succeeded: "Succeeded",
|
|
87
|
-
};
|
|
88
|
-
export const StartTimeRange = {
|
|
89
|
-
All: "All",
|
|
90
|
-
Latest: "Latest",
|
|
91
|
-
};
|
|
92
|
-
export class ActionExecutionNotFoundException extends __BaseException {
|
|
93
|
-
name = "ActionExecutionNotFoundException";
|
|
94
|
-
$fault = "client";
|
|
95
|
-
constructor(opts) {
|
|
96
|
-
super({
|
|
97
|
-
name: "ActionExecutionNotFoundException",
|
|
98
|
-
$fault: "client",
|
|
99
|
-
...opts,
|
|
100
|
-
});
|
|
101
|
-
Object.setPrototypeOf(this, ActionExecutionNotFoundException.prototype);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
export class ActionNotFoundException extends __BaseException {
|
|
105
|
-
name = "ActionNotFoundException";
|
|
106
|
-
$fault = "client";
|
|
107
|
-
constructor(opts) {
|
|
108
|
-
super({
|
|
109
|
-
name: "ActionNotFoundException",
|
|
110
|
-
$fault: "client",
|
|
111
|
-
...opts,
|
|
112
|
-
});
|
|
113
|
-
Object.setPrototypeOf(this, ActionNotFoundException.prototype);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
export const ExecutorType = {
|
|
117
|
-
JobWorker: "JobWorker",
|
|
118
|
-
Lambda: "Lambda",
|
|
119
|
-
};
|
|
120
|
-
export class ActionTypeNotFoundException extends __BaseException {
|
|
121
|
-
name = "ActionTypeNotFoundException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ActionTypeNotFoundException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ActionTypeNotFoundException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
export class ApprovalAlreadyCompletedException extends __BaseException {
|
|
133
|
-
name = "ApprovalAlreadyCompletedException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ApprovalAlreadyCompletedException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ApprovalAlreadyCompletedException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
export const ApprovalStatus = {
|
|
145
|
-
Approved: "Approved",
|
|
146
|
-
Rejected: "Rejected",
|
|
147
|
-
};
|
|
148
|
-
export const ArtifactLocationType = {
|
|
149
|
-
S3: "S3",
|
|
150
|
-
};
|
|
151
|
-
export const EncryptionKeyType = {
|
|
152
|
-
KMS: "KMS",
|
|
153
|
-
};
|
|
154
|
-
export const ArtifactStoreType = {
|
|
155
|
-
S3: "S3",
|
|
156
|
-
};
|
|
157
|
-
export const Result = {
|
|
158
|
-
FAIL: "FAIL",
|
|
159
|
-
RETRY: "RETRY",
|
|
160
|
-
ROLLBACK: "ROLLBACK",
|
|
161
|
-
SKIP: "SKIP",
|
|
162
|
-
};
|
|
163
|
-
export const RuleCategory = {
|
|
164
|
-
Rule: "Rule",
|
|
165
|
-
};
|
|
166
|
-
export const RuleOwner = {
|
|
167
|
-
AWS: "AWS",
|
|
168
|
-
};
|
|
169
|
-
export const BlockerType = {
|
|
170
|
-
Schedule: "Schedule",
|
|
171
|
-
};
|
|
172
|
-
export class ConcurrentModificationException extends __BaseException {
|
|
173
|
-
name = "ConcurrentModificationException";
|
|
174
|
-
$fault = "client";
|
|
175
|
-
constructor(opts) {
|
|
176
|
-
super({
|
|
177
|
-
name: "ConcurrentModificationException",
|
|
178
|
-
$fault: "client",
|
|
179
|
-
...opts,
|
|
180
|
-
});
|
|
181
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
export class InvalidTagsException extends __BaseException {
|
|
185
|
-
name = "InvalidTagsException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
constructor(opts) {
|
|
188
|
-
super({
|
|
189
|
-
name: "InvalidTagsException",
|
|
190
|
-
$fault: "client",
|
|
191
|
-
...opts,
|
|
192
|
-
});
|
|
193
|
-
Object.setPrototypeOf(this, InvalidTagsException.prototype);
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
export class LimitExceededException extends __BaseException {
|
|
197
|
-
name = "LimitExceededException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
constructor(opts) {
|
|
200
|
-
super({
|
|
201
|
-
name: "LimitExceededException",
|
|
202
|
-
$fault: "client",
|
|
203
|
-
...opts,
|
|
204
|
-
});
|
|
205
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
export class TooManyTagsException extends __BaseException {
|
|
209
|
-
name = "TooManyTagsException";
|
|
210
|
-
$fault = "client";
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "TooManyTagsException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
export const ExecutionMode = {
|
|
221
|
-
PARALLEL: "PARALLEL",
|
|
222
|
-
QUEUED: "QUEUED",
|
|
223
|
-
SUPERSEDED: "SUPERSEDED",
|
|
224
|
-
};
|
|
225
|
-
export const PipelineType = {
|
|
226
|
-
V1: "V1",
|
|
227
|
-
V2: "V2",
|
|
228
|
-
};
|
|
229
|
-
export const StageRetryMode = {
|
|
230
|
-
ALL_ACTIONS: "ALL_ACTIONS",
|
|
231
|
-
FAILED_ACTIONS: "FAILED_ACTIONS",
|
|
232
|
-
};
|
|
233
|
-
export const GitPullRequestEventType = {
|
|
234
|
-
CLOSED: "CLOSED",
|
|
235
|
-
OPEN: "OPEN",
|
|
236
|
-
UPDATED: "UPDATED",
|
|
237
|
-
};
|
|
238
|
-
export const PipelineTriggerProviderType = {
|
|
239
|
-
CodeStarSourceConnection: "CodeStarSourceConnection",
|
|
240
|
-
};
|
|
241
|
-
export class InvalidActionDeclarationException extends __BaseException {
|
|
242
|
-
name = "InvalidActionDeclarationException";
|
|
243
|
-
$fault = "client";
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "InvalidActionDeclarationException",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, InvalidActionDeclarationException.prototype);
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
export class InvalidBlockerDeclarationException extends __BaseException {
|
|
254
|
-
name = "InvalidBlockerDeclarationException";
|
|
255
|
-
$fault = "client";
|
|
256
|
-
constructor(opts) {
|
|
257
|
-
super({
|
|
258
|
-
name: "InvalidBlockerDeclarationException",
|
|
259
|
-
$fault: "client",
|
|
260
|
-
...opts,
|
|
261
|
-
});
|
|
262
|
-
Object.setPrototypeOf(this, InvalidBlockerDeclarationException.prototype);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
export class InvalidStageDeclarationException extends __BaseException {
|
|
266
|
-
name = "InvalidStageDeclarationException";
|
|
267
|
-
$fault = "client";
|
|
268
|
-
constructor(opts) {
|
|
269
|
-
super({
|
|
270
|
-
name: "InvalidStageDeclarationException",
|
|
271
|
-
$fault: "client",
|
|
272
|
-
...opts,
|
|
273
|
-
});
|
|
274
|
-
Object.setPrototypeOf(this, InvalidStageDeclarationException.prototype);
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
export class InvalidStructureException extends __BaseException {
|
|
278
|
-
name = "InvalidStructureException";
|
|
279
|
-
$fault = "client";
|
|
280
|
-
constructor(opts) {
|
|
281
|
-
super({
|
|
282
|
-
name: "InvalidStructureException",
|
|
283
|
-
$fault: "client",
|
|
284
|
-
...opts,
|
|
285
|
-
});
|
|
286
|
-
Object.setPrototypeOf(this, InvalidStructureException.prototype);
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
export class PipelineNameInUseException extends __BaseException {
|
|
290
|
-
name = "PipelineNameInUseException";
|
|
291
|
-
$fault = "client";
|
|
292
|
-
constructor(opts) {
|
|
293
|
-
super({
|
|
294
|
-
name: "PipelineNameInUseException",
|
|
295
|
-
$fault: "client",
|
|
296
|
-
...opts,
|
|
297
|
-
});
|
|
298
|
-
Object.setPrototypeOf(this, PipelineNameInUseException.prototype);
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
export class WebhookNotFoundException extends __BaseException {
|
|
302
|
-
name = "WebhookNotFoundException";
|
|
303
|
-
$fault = "client";
|
|
304
|
-
constructor(opts) {
|
|
305
|
-
super({
|
|
306
|
-
name: "WebhookNotFoundException",
|
|
307
|
-
$fault: "client",
|
|
308
|
-
...opts,
|
|
309
|
-
});
|
|
310
|
-
Object.setPrototypeOf(this, WebhookNotFoundException.prototype);
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
export const StageTransitionType = {
|
|
314
|
-
Inbound: "Inbound",
|
|
315
|
-
Outbound: "Outbound",
|
|
316
|
-
};
|
|
317
|
-
export class PipelineNotFoundException extends __BaseException {
|
|
318
|
-
name = "PipelineNotFoundException";
|
|
319
|
-
$fault = "client";
|
|
320
|
-
constructor(opts) {
|
|
321
|
-
super({
|
|
322
|
-
name: "PipelineNotFoundException",
|
|
323
|
-
$fault: "client",
|
|
324
|
-
...opts,
|
|
325
|
-
});
|
|
326
|
-
Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
export class StageNotFoundException extends __BaseException {
|
|
330
|
-
name = "StageNotFoundException";
|
|
331
|
-
$fault = "client";
|
|
332
|
-
constructor(opts) {
|
|
333
|
-
super({
|
|
334
|
-
name: "StageNotFoundException",
|
|
335
|
-
$fault: "client",
|
|
336
|
-
...opts,
|
|
337
|
-
});
|
|
338
|
-
Object.setPrototypeOf(this, StageNotFoundException.prototype);
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
export class PipelineVersionNotFoundException extends __BaseException {
|
|
342
|
-
name = "PipelineVersionNotFoundException";
|
|
343
|
-
$fault = "client";
|
|
344
|
-
constructor(opts) {
|
|
345
|
-
super({
|
|
346
|
-
name: "PipelineVersionNotFoundException",
|
|
347
|
-
$fault: "client",
|
|
348
|
-
...opts,
|
|
349
|
-
});
|
|
350
|
-
Object.setPrototypeOf(this, PipelineVersionNotFoundException.prototype);
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
export const ExecutionType = {
|
|
354
|
-
ROLLBACK: "ROLLBACK",
|
|
355
|
-
STANDARD: "STANDARD",
|
|
356
|
-
};
|
|
357
|
-
export const PipelineExecutionStatus = {
|
|
358
|
-
Cancelled: "Cancelled",
|
|
359
|
-
Failed: "Failed",
|
|
360
|
-
InProgress: "InProgress",
|
|
361
|
-
Stopped: "Stopped",
|
|
362
|
-
Stopping: "Stopping",
|
|
363
|
-
Succeeded: "Succeeded",
|
|
364
|
-
Superseded: "Superseded",
|
|
365
|
-
};
|
|
366
|
-
export const TriggerType = {
|
|
367
|
-
AutomatedRollback: "AutomatedRollback",
|
|
368
|
-
CloudWatchEvent: "CloudWatchEvent",
|
|
369
|
-
CreatePipeline: "CreatePipeline",
|
|
370
|
-
ManualRollback: "ManualRollback",
|
|
371
|
-
PollForSourceChanges: "PollForSourceChanges",
|
|
372
|
-
PutActionRevision: "PutActionRevision",
|
|
373
|
-
StartPipelineExecution: "StartPipelineExecution",
|
|
374
|
-
Webhook: "Webhook",
|
|
375
|
-
WebhookV2: "WebhookV2",
|
|
376
|
-
};
|
|
377
|
-
export class PipelineExecutionNotFoundException extends __BaseException {
|
|
378
|
-
name = "PipelineExecutionNotFoundException";
|
|
379
|
-
$fault = "client";
|
|
380
|
-
constructor(opts) {
|
|
381
|
-
super({
|
|
382
|
-
name: "PipelineExecutionNotFoundException",
|
|
383
|
-
$fault: "client",
|
|
384
|
-
...opts,
|
|
385
|
-
});
|
|
386
|
-
Object.setPrototypeOf(this, PipelineExecutionNotFoundException.prototype);
|
|
387
|
-
}
|
|
388
|
-
}
|
|
389
|
-
export const ConditionExecutionStatus = {
|
|
390
|
-
Abandoned: "Abandoned",
|
|
391
|
-
Cancelled: "Cancelled",
|
|
392
|
-
Errored: "Errored",
|
|
393
|
-
Failed: "Failed",
|
|
394
|
-
InProgress: "InProgress",
|
|
395
|
-
Overridden: "Overridden",
|
|
396
|
-
Succeeded: "Succeeded",
|
|
397
|
-
};
|
|
398
|
-
export const RuleExecutionStatus = {
|
|
399
|
-
Abandoned: "Abandoned",
|
|
400
|
-
Failed: "Failed",
|
|
401
|
-
InProgress: "InProgress",
|
|
402
|
-
Succeeded: "Succeeded",
|
|
403
|
-
};
|
|
404
|
-
export const StageExecutionStatus = {
|
|
405
|
-
Cancelled: "Cancelled",
|
|
406
|
-
Failed: "Failed",
|
|
407
|
-
InProgress: "InProgress",
|
|
408
|
-
Skipped: "Skipped",
|
|
409
|
-
Stopped: "Stopped",
|
|
410
|
-
Stopping: "Stopping",
|
|
411
|
-
Succeeded: "Succeeded",
|
|
412
|
-
};
|
|
413
|
-
export const RetryTrigger = {
|
|
414
|
-
AutomatedStageRetry: "AutomatedStageRetry",
|
|
415
|
-
ManualStageRetry: "ManualStageRetry",
|
|
416
|
-
};
|
|
417
|
-
export class InvalidJobException extends __BaseException {
|
|
418
|
-
name = "InvalidJobException";
|
|
419
|
-
$fault = "client";
|
|
420
|
-
constructor(opts) {
|
|
421
|
-
super({
|
|
422
|
-
name: "InvalidJobException",
|
|
423
|
-
$fault: "client",
|
|
424
|
-
...opts,
|
|
425
|
-
});
|
|
426
|
-
Object.setPrototypeOf(this, InvalidJobException.prototype);
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
export class InvalidNextTokenException extends __BaseException {
|
|
430
|
-
name = "InvalidNextTokenException";
|
|
431
|
-
$fault = "client";
|
|
432
|
-
constructor(opts) {
|
|
433
|
-
super({
|
|
434
|
-
name: "InvalidNextTokenException",
|
|
435
|
-
$fault: "client",
|
|
436
|
-
...opts,
|
|
437
|
-
});
|
|
438
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
export const TargetFilterName = {
|
|
442
|
-
TARGET_STATUS: "TARGET_STATUS",
|
|
443
|
-
};
|
|
444
|
-
export const RuleConfigurationPropertyType = {
|
|
445
|
-
Boolean: "Boolean",
|
|
446
|
-
Number: "Number",
|
|
447
|
-
String: "String",
|
|
448
|
-
};
|
|
449
|
-
export class InvalidArnException extends __BaseException {
|
|
450
|
-
name = "InvalidArnException";
|
|
451
|
-
$fault = "client";
|
|
452
|
-
constructor(opts) {
|
|
453
|
-
super({
|
|
454
|
-
name: "InvalidArnException",
|
|
455
|
-
$fault: "client",
|
|
456
|
-
...opts,
|
|
457
|
-
});
|
|
458
|
-
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
462
|
-
name = "ResourceNotFoundException";
|
|
463
|
-
$fault = "client";
|
|
464
|
-
constructor(opts) {
|
|
465
|
-
super({
|
|
466
|
-
name: "ResourceNotFoundException",
|
|
467
|
-
$fault: "client",
|
|
468
|
-
...opts,
|
|
469
|
-
});
|
|
470
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
export const WebhookAuthenticationType = {
|
|
474
|
-
GITHUB_HMAC: "GITHUB_HMAC",
|
|
475
|
-
IP: "IP",
|
|
476
|
-
UNAUTHENTICATED: "UNAUTHENTICATED",
|
|
477
|
-
};
|
|
478
|
-
export class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
|
|
479
|
-
name = "ConcurrentPipelineExecutionsLimitExceededException";
|
|
480
|
-
$fault = "client";
|
|
481
|
-
constructor(opts) {
|
|
482
|
-
super({
|
|
483
|
-
name: "ConcurrentPipelineExecutionsLimitExceededException",
|
|
484
|
-
$fault: "client",
|
|
485
|
-
...opts,
|
|
486
|
-
});
|
|
487
|
-
Object.setPrototypeOf(this, ConcurrentPipelineExecutionsLimitExceededException.prototype);
|
|
488
|
-
}
|
|
489
|
-
}
|
|
490
|
-
export class ConditionNotOverridableException extends __BaseException {
|
|
491
|
-
name = "ConditionNotOverridableException";
|
|
492
|
-
$fault = "client";
|
|
493
|
-
constructor(opts) {
|
|
494
|
-
super({
|
|
495
|
-
name: "ConditionNotOverridableException",
|
|
496
|
-
$fault: "client",
|
|
497
|
-
...opts,
|
|
498
|
-
});
|
|
499
|
-
Object.setPrototypeOf(this, ConditionNotOverridableException.prototype);
|
|
500
|
-
}
|
|
501
|
-
}
|
|
502
|
-
export class ConflictException extends __BaseException {
|
|
503
|
-
name = "ConflictException";
|
|
504
|
-
$fault = "client";
|
|
505
|
-
constructor(opts) {
|
|
506
|
-
super({
|
|
507
|
-
name: "ConflictException",
|
|
508
|
-
$fault: "client",
|
|
509
|
-
...opts,
|
|
510
|
-
});
|
|
511
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
512
|
-
}
|
|
513
|
-
}
|
|
514
|
-
export class NotLatestPipelineExecutionException extends __BaseException {
|
|
515
|
-
name = "NotLatestPipelineExecutionException";
|
|
516
|
-
$fault = "client";
|
|
517
|
-
constructor(opts) {
|
|
518
|
-
super({
|
|
519
|
-
name: "NotLatestPipelineExecutionException",
|
|
520
|
-
$fault: "client",
|
|
521
|
-
...opts,
|
|
522
|
-
});
|
|
523
|
-
Object.setPrototypeOf(this, NotLatestPipelineExecutionException.prototype);
|
|
524
|
-
}
|
|
525
|
-
}
|
|
526
|
-
export const ConditionType = {
|
|
527
|
-
BEFORE_ENTRY: "BEFORE_ENTRY",
|
|
528
|
-
ON_SUCCESS: "ON_SUCCESS",
|
|
529
|
-
};
|
|
530
|
-
export class InvalidApprovalTokenException extends __BaseException {
|
|
531
|
-
name = "InvalidApprovalTokenException";
|
|
532
|
-
$fault = "client";
|
|
533
|
-
constructor(opts) {
|
|
534
|
-
super({
|
|
535
|
-
name: "InvalidApprovalTokenException",
|
|
536
|
-
$fault: "client",
|
|
537
|
-
...opts,
|
|
538
|
-
});
|
|
539
|
-
Object.setPrototypeOf(this, InvalidApprovalTokenException.prototype);
|
|
540
|
-
}
|
|
541
|
-
}
|
|
542
|
-
export class InvalidJobStateException extends __BaseException {
|
|
543
|
-
name = "InvalidJobStateException";
|
|
544
|
-
$fault = "client";
|
|
545
|
-
constructor(opts) {
|
|
546
|
-
super({
|
|
547
|
-
name: "InvalidJobStateException",
|
|
548
|
-
$fault: "client",
|
|
549
|
-
...opts,
|
|
550
|
-
});
|
|
551
|
-
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
export const FailureType = {
|
|
555
|
-
ConfigurationError: "ConfigurationError",
|
|
556
|
-
JobFailed: "JobFailed",
|
|
557
|
-
PermissionError: "PermissionError",
|
|
558
|
-
RevisionOutOfSync: "RevisionOutOfSync",
|
|
559
|
-
RevisionUnavailable: "RevisionUnavailable",
|
|
560
|
-
SystemUnavailable: "SystemUnavailable",
|
|
561
|
-
};
|
|
562
|
-
export class OutputVariablesSizeExceededException extends __BaseException {
|
|
563
|
-
name = "OutputVariablesSizeExceededException";
|
|
564
|
-
$fault = "client";
|
|
565
|
-
constructor(opts) {
|
|
566
|
-
super({
|
|
567
|
-
name: "OutputVariablesSizeExceededException",
|
|
568
|
-
$fault: "client",
|
|
569
|
-
...opts,
|
|
570
|
-
});
|
|
571
|
-
Object.setPrototypeOf(this, OutputVariablesSizeExceededException.prototype);
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
export class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
575
|
-
name = "InvalidWebhookAuthenticationParametersException";
|
|
576
|
-
$fault = "client";
|
|
577
|
-
constructor(opts) {
|
|
578
|
-
super({
|
|
579
|
-
name: "InvalidWebhookAuthenticationParametersException",
|
|
580
|
-
$fault: "client",
|
|
581
|
-
...opts,
|
|
582
|
-
});
|
|
583
|
-
Object.setPrototypeOf(this, InvalidWebhookAuthenticationParametersException.prototype);
|
|
584
|
-
}
|
|
585
|
-
}
|
|
586
|
-
export class InvalidWebhookFilterPatternException extends __BaseException {
|
|
587
|
-
name = "InvalidWebhookFilterPatternException";
|
|
588
|
-
$fault = "client";
|
|
589
|
-
constructor(opts) {
|
|
590
|
-
super({
|
|
591
|
-
name: "InvalidWebhookFilterPatternException",
|
|
592
|
-
$fault: "client",
|
|
593
|
-
...opts,
|
|
594
|
-
});
|
|
595
|
-
Object.setPrototypeOf(this, InvalidWebhookFilterPatternException.prototype);
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
|
-
export class StageNotRetryableException extends __BaseException {
|
|
599
|
-
name = "StageNotRetryableException";
|
|
600
|
-
$fault = "client";
|
|
601
|
-
constructor(opts) {
|
|
602
|
-
super({
|
|
603
|
-
name: "StageNotRetryableException",
|
|
604
|
-
$fault: "client",
|
|
605
|
-
...opts,
|
|
606
|
-
});
|
|
607
|
-
Object.setPrototypeOf(this, StageNotRetryableException.prototype);
|
|
608
|
-
}
|
|
609
|
-
}
|
|
610
|
-
export class PipelineExecutionOutdatedException extends __BaseException {
|
|
611
|
-
name = "PipelineExecutionOutdatedException";
|
|
612
|
-
$fault = "client";
|
|
613
|
-
constructor(opts) {
|
|
614
|
-
super({
|
|
615
|
-
name: "PipelineExecutionOutdatedException",
|
|
616
|
-
$fault: "client",
|
|
617
|
-
...opts,
|
|
618
|
-
});
|
|
619
|
-
Object.setPrototypeOf(this, PipelineExecutionOutdatedException.prototype);
|
|
620
|
-
}
|
|
621
|
-
}
|
|
622
|
-
export class UnableToRollbackStageException extends __BaseException {
|
|
623
|
-
name = "UnableToRollbackStageException";
|
|
624
|
-
$fault = "client";
|
|
625
|
-
constructor(opts) {
|
|
626
|
-
super({
|
|
627
|
-
name: "UnableToRollbackStageException",
|
|
628
|
-
$fault: "client",
|
|
629
|
-
...opts,
|
|
630
|
-
});
|
|
631
|
-
Object.setPrototypeOf(this, UnableToRollbackStageException.prototype);
|
|
632
|
-
}
|
|
633
|
-
}
|
|
634
|
-
export const SourceRevisionType = {
|
|
635
|
-
COMMIT_ID: "COMMIT_ID",
|
|
636
|
-
IMAGE_DIGEST: "IMAGE_DIGEST",
|
|
637
|
-
S3_OBJECT_KEY: "S3_OBJECT_KEY",
|
|
638
|
-
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID",
|
|
639
|
-
};
|
|
640
|
-
export class DuplicatedStopRequestException extends __BaseException {
|
|
641
|
-
name = "DuplicatedStopRequestException";
|
|
642
|
-
$fault = "client";
|
|
643
|
-
constructor(opts) {
|
|
644
|
-
super({
|
|
645
|
-
name: "DuplicatedStopRequestException",
|
|
646
|
-
$fault: "client",
|
|
647
|
-
...opts,
|
|
648
|
-
});
|
|
649
|
-
Object.setPrototypeOf(this, DuplicatedStopRequestException.prototype);
|
|
650
|
-
}
|
|
651
|
-
}
|
|
652
|
-
export class PipelineExecutionNotStoppableException extends __BaseException {
|
|
653
|
-
name = "PipelineExecutionNotStoppableException";
|
|
654
|
-
$fault = "client";
|
|
655
|
-
constructor(opts) {
|
|
656
|
-
super({
|
|
657
|
-
name: "PipelineExecutionNotStoppableException",
|
|
658
|
-
$fault: "client",
|
|
659
|
-
...opts,
|
|
660
|
-
});
|
|
661
|
-
Object.setPrototypeOf(this, PipelineExecutionNotStoppableException.prototype);
|
|
662
|
-
}
|
|
663
|
-
}
|
|
664
|
-
export class RequestFailedException extends __BaseException {
|
|
665
|
-
name = "RequestFailedException";
|
|
666
|
-
$fault = "client";
|
|
667
|
-
constructor(opts) {
|
|
668
|
-
super({
|
|
669
|
-
name: "RequestFailedException",
|
|
670
|
-
$fault: "client",
|
|
671
|
-
...opts,
|
|
672
|
-
});
|
|
673
|
-
Object.setPrototypeOf(this, RequestFailedException.prototype);
|
|
674
|
-
}
|
|
675
|
-
}
|
|
1
|
+
export {};
|
|
@@ -565,7 +565,7 @@ const _we = "webhook";
|
|
|
565
565
|
const n0 = "com.amazonaws.codepipeline";
|
|
566
566
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
567
567
|
import { CodePipelineServiceException as __CodePipelineServiceException } from "../models/CodePipelineServiceException";
|
|
568
|
-
import { ActionExecutionNotFoundException as __ActionExecutionNotFoundException, ActionNotFoundException as __ActionNotFoundException, ActionTypeNotFoundException as __ActionTypeNotFoundException, ApprovalAlreadyCompletedException as __ApprovalAlreadyCompletedException, ConcurrentModificationException as __ConcurrentModificationException, ConcurrentPipelineExecutionsLimitExceededException as __ConcurrentPipelineExecutionsLimitExceededException, ConditionNotOverridableException as __ConditionNotOverridableException, ConflictException as __ConflictException, DuplicatedStopRequestException as __DuplicatedStopRequestException, InvalidActionDeclarationException as __InvalidActionDeclarationException, InvalidApprovalTokenException as __InvalidApprovalTokenException, InvalidArnException as __InvalidArnException, InvalidBlockerDeclarationException as __InvalidBlockerDeclarationException, InvalidClientTokenException as __InvalidClientTokenException, InvalidJobException as __InvalidJobException, InvalidJobStateException as __InvalidJobStateException, InvalidNextTokenException as __InvalidNextTokenException, InvalidNonceException as __InvalidNonceException, InvalidStageDeclarationException as __InvalidStageDeclarationException, InvalidStructureException as __InvalidStructureException, InvalidTagsException as __InvalidTagsException, InvalidWebhookAuthenticationParametersException as __InvalidWebhookAuthenticationParametersException, InvalidWebhookFilterPatternException as __InvalidWebhookFilterPatternException, JobNotFoundException as __JobNotFoundException, LimitExceededException as __LimitExceededException, NotLatestPipelineExecutionException as __NotLatestPipelineExecutionException, OutputVariablesSizeExceededException as __OutputVariablesSizeExceededException, PipelineExecutionNotFoundException as __PipelineExecutionNotFoundException, PipelineExecutionNotStoppableException as __PipelineExecutionNotStoppableException, PipelineExecutionOutdatedException as __PipelineExecutionOutdatedException, PipelineNameInUseException as __PipelineNameInUseException, PipelineNotFoundException as __PipelineNotFoundException, PipelineVersionNotFoundException as __PipelineVersionNotFoundException, RequestFailedException as __RequestFailedException, ResourceNotFoundException as __ResourceNotFoundException, StageNotFoundException as __StageNotFoundException, StageNotRetryableException as __StageNotRetryableException, TooManyTagsException as __TooManyTagsException, UnableToRollbackStageException as __UnableToRollbackStageException, ValidationException as __ValidationException, WebhookNotFoundException as __WebhookNotFoundException, } from "../models/
|
|
568
|
+
import { ActionExecutionNotFoundException as __ActionExecutionNotFoundException, ActionNotFoundException as __ActionNotFoundException, ActionTypeNotFoundException as __ActionTypeNotFoundException, ApprovalAlreadyCompletedException as __ApprovalAlreadyCompletedException, ConcurrentModificationException as __ConcurrentModificationException, ConcurrentPipelineExecutionsLimitExceededException as __ConcurrentPipelineExecutionsLimitExceededException, ConditionNotOverridableException as __ConditionNotOverridableException, ConflictException as __ConflictException, DuplicatedStopRequestException as __DuplicatedStopRequestException, InvalidActionDeclarationException as __InvalidActionDeclarationException, InvalidApprovalTokenException as __InvalidApprovalTokenException, InvalidArnException as __InvalidArnException, InvalidBlockerDeclarationException as __InvalidBlockerDeclarationException, InvalidClientTokenException as __InvalidClientTokenException, InvalidJobException as __InvalidJobException, InvalidJobStateException as __InvalidJobStateException, InvalidNextTokenException as __InvalidNextTokenException, InvalidNonceException as __InvalidNonceException, InvalidStageDeclarationException as __InvalidStageDeclarationException, InvalidStructureException as __InvalidStructureException, InvalidTagsException as __InvalidTagsException, InvalidWebhookAuthenticationParametersException as __InvalidWebhookAuthenticationParametersException, InvalidWebhookFilterPatternException as __InvalidWebhookFilterPatternException, JobNotFoundException as __JobNotFoundException, LimitExceededException as __LimitExceededException, NotLatestPipelineExecutionException as __NotLatestPipelineExecutionException, OutputVariablesSizeExceededException as __OutputVariablesSizeExceededException, PipelineExecutionNotFoundException as __PipelineExecutionNotFoundException, PipelineExecutionNotStoppableException as __PipelineExecutionNotStoppableException, PipelineExecutionOutdatedException as __PipelineExecutionOutdatedException, PipelineNameInUseException as __PipelineNameInUseException, PipelineNotFoundException as __PipelineNotFoundException, PipelineVersionNotFoundException as __PipelineVersionNotFoundException, RequestFailedException as __RequestFailedException, ResourceNotFoundException as __ResourceNotFoundException, StageNotFoundException as __StageNotFoundException, StageNotRetryableException as __StageNotRetryableException, TooManyTagsException as __TooManyTagsException, UnableToRollbackStageException as __UnableToRollbackStageException, ValidationException as __ValidationException, WebhookNotFoundException as __WebhookNotFoundException, } from "../models/errors";
|
|
569
569
|
export var AccessKeyId = [0, n0, _AKI, 8, 0];
|
|
570
570
|
export var SecretAccessKey = [0, n0, _SAK, 8, 0];
|
|
571
571
|
export var SessionToken = [0, n0, _ST, 8, 0];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -206,5 +206,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
206
206
|
export type { CodePipelineExtensionConfiguration } from "./extensionConfiguration";
|
|
207
207
|
export * from "./commands";
|
|
208
208
|
export * from "./pagination";
|
|
209
|
-
export * from "./models";
|
|
209
|
+
export * from "./models/enums";
|
|
210
|
+
export * from "./models/errors";
|
|
211
|
+
export type * from "./models/models_0";
|
|
210
212
|
export { CodePipelineServiceException } from "./models/CodePipelineServiceException";
|