@aws-sdk/client-codepipeline 3.721.0 → 3.723.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 +429 -339
- package/dist-es/CodePipelineClient.js +1 -0
- package/dist-es/models/models_0.js +80 -80
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class CodePipelineClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -10,50 +10,50 @@ export const JobStatus = {
|
|
|
10
10
|
TimedOut: "TimedOut",
|
|
11
11
|
};
|
|
12
12
|
export class InvalidNonceException extends __BaseException {
|
|
13
|
+
name = "InvalidNonceException";
|
|
14
|
+
$fault = "client";
|
|
13
15
|
constructor(opts) {
|
|
14
16
|
super({
|
|
15
17
|
name: "InvalidNonceException",
|
|
16
18
|
$fault: "client",
|
|
17
19
|
...opts,
|
|
18
20
|
});
|
|
19
|
-
this.name = "InvalidNonceException";
|
|
20
|
-
this.$fault = "client";
|
|
21
21
|
Object.setPrototypeOf(this, InvalidNonceException.prototype);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
export class JobNotFoundException extends __BaseException {
|
|
25
|
+
name = "JobNotFoundException";
|
|
26
|
+
$fault = "client";
|
|
25
27
|
constructor(opts) {
|
|
26
28
|
super({
|
|
27
29
|
name: "JobNotFoundException",
|
|
28
30
|
$fault: "client",
|
|
29
31
|
...opts,
|
|
30
32
|
});
|
|
31
|
-
this.name = "JobNotFoundException";
|
|
32
|
-
this.$fault = "client";
|
|
33
33
|
Object.setPrototypeOf(this, JobNotFoundException.prototype);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
export class ValidationException extends __BaseException {
|
|
37
|
+
name = "ValidationException";
|
|
38
|
+
$fault = "client";
|
|
37
39
|
constructor(opts) {
|
|
38
40
|
super({
|
|
39
41
|
name: "ValidationException",
|
|
40
42
|
$fault: "client",
|
|
41
43
|
...opts,
|
|
42
44
|
});
|
|
43
|
-
this.name = "ValidationException";
|
|
44
|
-
this.$fault = "client";
|
|
45
45
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
export class InvalidClientTokenException extends __BaseException {
|
|
49
|
+
name = "InvalidClientTokenException";
|
|
50
|
+
$fault = "client";
|
|
49
51
|
constructor(opts) {
|
|
50
52
|
super({
|
|
51
53
|
name: "InvalidClientTokenException",
|
|
52
54
|
$fault: "client",
|
|
53
55
|
...opts,
|
|
54
56
|
});
|
|
55
|
-
this.name = "InvalidClientTokenException";
|
|
56
|
-
this.$fault = "client";
|
|
57
57
|
Object.setPrototypeOf(this, InvalidClientTokenException.prototype);
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -87,14 +87,14 @@ export const StartTimeRange = {
|
|
|
87
87
|
Latest: "Latest",
|
|
88
88
|
};
|
|
89
89
|
export class ActionNotFoundException extends __BaseException {
|
|
90
|
+
name = "ActionNotFoundException";
|
|
91
|
+
$fault = "client";
|
|
90
92
|
constructor(opts) {
|
|
91
93
|
super({
|
|
92
94
|
name: "ActionNotFoundException",
|
|
93
95
|
$fault: "client",
|
|
94
96
|
...opts,
|
|
95
97
|
});
|
|
96
|
-
this.name = "ActionNotFoundException";
|
|
97
|
-
this.$fault = "client";
|
|
98
98
|
Object.setPrototypeOf(this, ActionNotFoundException.prototype);
|
|
99
99
|
}
|
|
100
100
|
}
|
|
@@ -103,26 +103,26 @@ export const ExecutorType = {
|
|
|
103
103
|
Lambda: "Lambda",
|
|
104
104
|
};
|
|
105
105
|
export class ActionTypeNotFoundException extends __BaseException {
|
|
106
|
+
name = "ActionTypeNotFoundException";
|
|
107
|
+
$fault = "client";
|
|
106
108
|
constructor(opts) {
|
|
107
109
|
super({
|
|
108
110
|
name: "ActionTypeNotFoundException",
|
|
109
111
|
$fault: "client",
|
|
110
112
|
...opts,
|
|
111
113
|
});
|
|
112
|
-
this.name = "ActionTypeNotFoundException";
|
|
113
|
-
this.$fault = "client";
|
|
114
114
|
Object.setPrototypeOf(this, ActionTypeNotFoundException.prototype);
|
|
115
115
|
}
|
|
116
116
|
}
|
|
117
117
|
export class ApprovalAlreadyCompletedException extends __BaseException {
|
|
118
|
+
name = "ApprovalAlreadyCompletedException";
|
|
119
|
+
$fault = "client";
|
|
118
120
|
constructor(opts) {
|
|
119
121
|
super({
|
|
120
122
|
name: "ApprovalAlreadyCompletedException",
|
|
121
123
|
$fault: "client",
|
|
122
124
|
...opts,
|
|
123
125
|
});
|
|
124
|
-
this.name = "ApprovalAlreadyCompletedException";
|
|
125
|
-
this.$fault = "client";
|
|
126
126
|
Object.setPrototypeOf(this, ApprovalAlreadyCompletedException.prototype);
|
|
127
127
|
}
|
|
128
128
|
}
|
|
@@ -155,50 +155,50 @@ export const BlockerType = {
|
|
|
155
155
|
Schedule: "Schedule",
|
|
156
156
|
};
|
|
157
157
|
export class ConcurrentModificationException extends __BaseException {
|
|
158
|
+
name = "ConcurrentModificationException";
|
|
159
|
+
$fault = "client";
|
|
158
160
|
constructor(opts) {
|
|
159
161
|
super({
|
|
160
162
|
name: "ConcurrentModificationException",
|
|
161
163
|
$fault: "client",
|
|
162
164
|
...opts,
|
|
163
165
|
});
|
|
164
|
-
this.name = "ConcurrentModificationException";
|
|
165
|
-
this.$fault = "client";
|
|
166
166
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
169
|
export class InvalidTagsException extends __BaseException {
|
|
170
|
+
name = "InvalidTagsException";
|
|
171
|
+
$fault = "client";
|
|
170
172
|
constructor(opts) {
|
|
171
173
|
super({
|
|
172
174
|
name: "InvalidTagsException",
|
|
173
175
|
$fault: "client",
|
|
174
176
|
...opts,
|
|
175
177
|
});
|
|
176
|
-
this.name = "InvalidTagsException";
|
|
177
|
-
this.$fault = "client";
|
|
178
178
|
Object.setPrototypeOf(this, InvalidTagsException.prototype);
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
181
|
export class LimitExceededException extends __BaseException {
|
|
182
|
+
name = "LimitExceededException";
|
|
183
|
+
$fault = "client";
|
|
182
184
|
constructor(opts) {
|
|
183
185
|
super({
|
|
184
186
|
name: "LimitExceededException",
|
|
185
187
|
$fault: "client",
|
|
186
188
|
...opts,
|
|
187
189
|
});
|
|
188
|
-
this.name = "LimitExceededException";
|
|
189
|
-
this.$fault = "client";
|
|
190
190
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
193
|
export class TooManyTagsException extends __BaseException {
|
|
194
|
+
name = "TooManyTagsException";
|
|
195
|
+
$fault = "client";
|
|
194
196
|
constructor(opts) {
|
|
195
197
|
super({
|
|
196
198
|
name: "TooManyTagsException",
|
|
197
199
|
$fault: "client",
|
|
198
200
|
...opts,
|
|
199
201
|
});
|
|
200
|
-
this.name = "TooManyTagsException";
|
|
201
|
-
this.$fault = "client";
|
|
202
202
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
203
203
|
}
|
|
204
204
|
}
|
|
@@ -224,74 +224,74 @@ export const PipelineTriggerProviderType = {
|
|
|
224
224
|
CodeStarSourceConnection: "CodeStarSourceConnection",
|
|
225
225
|
};
|
|
226
226
|
export class InvalidActionDeclarationException extends __BaseException {
|
|
227
|
+
name = "InvalidActionDeclarationException";
|
|
228
|
+
$fault = "client";
|
|
227
229
|
constructor(opts) {
|
|
228
230
|
super({
|
|
229
231
|
name: "InvalidActionDeclarationException",
|
|
230
232
|
$fault: "client",
|
|
231
233
|
...opts,
|
|
232
234
|
});
|
|
233
|
-
this.name = "InvalidActionDeclarationException";
|
|
234
|
-
this.$fault = "client";
|
|
235
235
|
Object.setPrototypeOf(this, InvalidActionDeclarationException.prototype);
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
export class InvalidBlockerDeclarationException extends __BaseException {
|
|
239
|
+
name = "InvalidBlockerDeclarationException";
|
|
240
|
+
$fault = "client";
|
|
239
241
|
constructor(opts) {
|
|
240
242
|
super({
|
|
241
243
|
name: "InvalidBlockerDeclarationException",
|
|
242
244
|
$fault: "client",
|
|
243
245
|
...opts,
|
|
244
246
|
});
|
|
245
|
-
this.name = "InvalidBlockerDeclarationException";
|
|
246
|
-
this.$fault = "client";
|
|
247
247
|
Object.setPrototypeOf(this, InvalidBlockerDeclarationException.prototype);
|
|
248
248
|
}
|
|
249
249
|
}
|
|
250
250
|
export class InvalidStageDeclarationException extends __BaseException {
|
|
251
|
+
name = "InvalidStageDeclarationException";
|
|
252
|
+
$fault = "client";
|
|
251
253
|
constructor(opts) {
|
|
252
254
|
super({
|
|
253
255
|
name: "InvalidStageDeclarationException",
|
|
254
256
|
$fault: "client",
|
|
255
257
|
...opts,
|
|
256
258
|
});
|
|
257
|
-
this.name = "InvalidStageDeclarationException";
|
|
258
|
-
this.$fault = "client";
|
|
259
259
|
Object.setPrototypeOf(this, InvalidStageDeclarationException.prototype);
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
export class InvalidStructureException extends __BaseException {
|
|
263
|
+
name = "InvalidStructureException";
|
|
264
|
+
$fault = "client";
|
|
263
265
|
constructor(opts) {
|
|
264
266
|
super({
|
|
265
267
|
name: "InvalidStructureException",
|
|
266
268
|
$fault: "client",
|
|
267
269
|
...opts,
|
|
268
270
|
});
|
|
269
|
-
this.name = "InvalidStructureException";
|
|
270
|
-
this.$fault = "client";
|
|
271
271
|
Object.setPrototypeOf(this, InvalidStructureException.prototype);
|
|
272
272
|
}
|
|
273
273
|
}
|
|
274
274
|
export class PipelineNameInUseException extends __BaseException {
|
|
275
|
+
name = "PipelineNameInUseException";
|
|
276
|
+
$fault = "client";
|
|
275
277
|
constructor(opts) {
|
|
276
278
|
super({
|
|
277
279
|
name: "PipelineNameInUseException",
|
|
278
280
|
$fault: "client",
|
|
279
281
|
...opts,
|
|
280
282
|
});
|
|
281
|
-
this.name = "PipelineNameInUseException";
|
|
282
|
-
this.$fault = "client";
|
|
283
283
|
Object.setPrototypeOf(this, PipelineNameInUseException.prototype);
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
286
|
export class WebhookNotFoundException extends __BaseException {
|
|
287
|
+
name = "WebhookNotFoundException";
|
|
288
|
+
$fault = "client";
|
|
287
289
|
constructor(opts) {
|
|
288
290
|
super({
|
|
289
291
|
name: "WebhookNotFoundException",
|
|
290
292
|
$fault: "client",
|
|
291
293
|
...opts,
|
|
292
294
|
});
|
|
293
|
-
this.name = "WebhookNotFoundException";
|
|
294
|
-
this.$fault = "client";
|
|
295
295
|
Object.setPrototypeOf(this, WebhookNotFoundException.prototype);
|
|
296
296
|
}
|
|
297
297
|
}
|
|
@@ -300,38 +300,38 @@ export const StageTransitionType = {
|
|
|
300
300
|
Outbound: "Outbound",
|
|
301
301
|
};
|
|
302
302
|
export class PipelineNotFoundException extends __BaseException {
|
|
303
|
+
name = "PipelineNotFoundException";
|
|
304
|
+
$fault = "client";
|
|
303
305
|
constructor(opts) {
|
|
304
306
|
super({
|
|
305
307
|
name: "PipelineNotFoundException",
|
|
306
308
|
$fault: "client",
|
|
307
309
|
...opts,
|
|
308
310
|
});
|
|
309
|
-
this.name = "PipelineNotFoundException";
|
|
310
|
-
this.$fault = "client";
|
|
311
311
|
Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
|
|
312
312
|
}
|
|
313
313
|
}
|
|
314
314
|
export class StageNotFoundException extends __BaseException {
|
|
315
|
+
name = "StageNotFoundException";
|
|
316
|
+
$fault = "client";
|
|
315
317
|
constructor(opts) {
|
|
316
318
|
super({
|
|
317
319
|
name: "StageNotFoundException",
|
|
318
320
|
$fault: "client",
|
|
319
321
|
...opts,
|
|
320
322
|
});
|
|
321
|
-
this.name = "StageNotFoundException";
|
|
322
|
-
this.$fault = "client";
|
|
323
323
|
Object.setPrototypeOf(this, StageNotFoundException.prototype);
|
|
324
324
|
}
|
|
325
325
|
}
|
|
326
326
|
export class PipelineVersionNotFoundException extends __BaseException {
|
|
327
|
+
name = "PipelineVersionNotFoundException";
|
|
328
|
+
$fault = "client";
|
|
327
329
|
constructor(opts) {
|
|
328
330
|
super({
|
|
329
331
|
name: "PipelineVersionNotFoundException",
|
|
330
332
|
$fault: "client",
|
|
331
333
|
...opts,
|
|
332
334
|
});
|
|
333
|
-
this.name = "PipelineVersionNotFoundException";
|
|
334
|
-
this.$fault = "client";
|
|
335
335
|
Object.setPrototypeOf(this, PipelineVersionNotFoundException.prototype);
|
|
336
336
|
}
|
|
337
337
|
}
|
|
@@ -360,14 +360,14 @@ export const TriggerType = {
|
|
|
360
360
|
WebhookV2: "WebhookV2",
|
|
361
361
|
};
|
|
362
362
|
export class PipelineExecutionNotFoundException extends __BaseException {
|
|
363
|
+
name = "PipelineExecutionNotFoundException";
|
|
364
|
+
$fault = "client";
|
|
363
365
|
constructor(opts) {
|
|
364
366
|
super({
|
|
365
367
|
name: "PipelineExecutionNotFoundException",
|
|
366
368
|
$fault: "client",
|
|
367
369
|
...opts,
|
|
368
370
|
});
|
|
369
|
-
this.name = "PipelineExecutionNotFoundException";
|
|
370
|
-
this.$fault = "client";
|
|
371
371
|
Object.setPrototypeOf(this, PipelineExecutionNotFoundException.prototype);
|
|
372
372
|
}
|
|
373
373
|
}
|
|
@@ -400,26 +400,26 @@ export const RetryTrigger = {
|
|
|
400
400
|
ManualStageRetry: "ManualStageRetry",
|
|
401
401
|
};
|
|
402
402
|
export class InvalidJobException extends __BaseException {
|
|
403
|
+
name = "InvalidJobException";
|
|
404
|
+
$fault = "client";
|
|
403
405
|
constructor(opts) {
|
|
404
406
|
super({
|
|
405
407
|
name: "InvalidJobException",
|
|
406
408
|
$fault: "client",
|
|
407
409
|
...opts,
|
|
408
410
|
});
|
|
409
|
-
this.name = "InvalidJobException";
|
|
410
|
-
this.$fault = "client";
|
|
411
411
|
Object.setPrototypeOf(this, InvalidJobException.prototype);
|
|
412
412
|
}
|
|
413
413
|
}
|
|
414
414
|
export class InvalidNextTokenException extends __BaseException {
|
|
415
|
+
name = "InvalidNextTokenException";
|
|
416
|
+
$fault = "client";
|
|
415
417
|
constructor(opts) {
|
|
416
418
|
super({
|
|
417
419
|
name: "InvalidNextTokenException",
|
|
418
420
|
$fault: "client",
|
|
419
421
|
...opts,
|
|
420
422
|
});
|
|
421
|
-
this.name = "InvalidNextTokenException";
|
|
422
|
-
this.$fault = "client";
|
|
423
423
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
424
424
|
}
|
|
425
425
|
}
|
|
@@ -429,26 +429,26 @@ export const RuleConfigurationPropertyType = {
|
|
|
429
429
|
String: "String",
|
|
430
430
|
};
|
|
431
431
|
export class InvalidArnException extends __BaseException {
|
|
432
|
+
name = "InvalidArnException";
|
|
433
|
+
$fault = "client";
|
|
432
434
|
constructor(opts) {
|
|
433
435
|
super({
|
|
434
436
|
name: "InvalidArnException",
|
|
435
437
|
$fault: "client",
|
|
436
438
|
...opts,
|
|
437
439
|
});
|
|
438
|
-
this.name = "InvalidArnException";
|
|
439
|
-
this.$fault = "client";
|
|
440
440
|
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
441
441
|
}
|
|
442
442
|
}
|
|
443
443
|
export class ResourceNotFoundException extends __BaseException {
|
|
444
|
+
name = "ResourceNotFoundException";
|
|
445
|
+
$fault = "client";
|
|
444
446
|
constructor(opts) {
|
|
445
447
|
super({
|
|
446
448
|
name: "ResourceNotFoundException",
|
|
447
449
|
$fault: "client",
|
|
448
450
|
...opts,
|
|
449
451
|
});
|
|
450
|
-
this.name = "ResourceNotFoundException";
|
|
451
|
-
this.$fault = "client";
|
|
452
452
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
453
453
|
}
|
|
454
454
|
}
|
|
@@ -458,50 +458,50 @@ export const WebhookAuthenticationType = {
|
|
|
458
458
|
UNAUTHENTICATED: "UNAUTHENTICATED",
|
|
459
459
|
};
|
|
460
460
|
export class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
|
|
461
|
+
name = "ConcurrentPipelineExecutionsLimitExceededException";
|
|
462
|
+
$fault = "client";
|
|
461
463
|
constructor(opts) {
|
|
462
464
|
super({
|
|
463
465
|
name: "ConcurrentPipelineExecutionsLimitExceededException",
|
|
464
466
|
$fault: "client",
|
|
465
467
|
...opts,
|
|
466
468
|
});
|
|
467
|
-
this.name = "ConcurrentPipelineExecutionsLimitExceededException";
|
|
468
|
-
this.$fault = "client";
|
|
469
469
|
Object.setPrototypeOf(this, ConcurrentPipelineExecutionsLimitExceededException.prototype);
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
472
|
export class ConditionNotOverridableException extends __BaseException {
|
|
473
|
+
name = "ConditionNotOverridableException";
|
|
474
|
+
$fault = "client";
|
|
473
475
|
constructor(opts) {
|
|
474
476
|
super({
|
|
475
477
|
name: "ConditionNotOverridableException",
|
|
476
478
|
$fault: "client",
|
|
477
479
|
...opts,
|
|
478
480
|
});
|
|
479
|
-
this.name = "ConditionNotOverridableException";
|
|
480
|
-
this.$fault = "client";
|
|
481
481
|
Object.setPrototypeOf(this, ConditionNotOverridableException.prototype);
|
|
482
482
|
}
|
|
483
483
|
}
|
|
484
484
|
export class ConflictException extends __BaseException {
|
|
485
|
+
name = "ConflictException";
|
|
486
|
+
$fault = "client";
|
|
485
487
|
constructor(opts) {
|
|
486
488
|
super({
|
|
487
489
|
name: "ConflictException",
|
|
488
490
|
$fault: "client",
|
|
489
491
|
...opts,
|
|
490
492
|
});
|
|
491
|
-
this.name = "ConflictException";
|
|
492
|
-
this.$fault = "client";
|
|
493
493
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
494
494
|
}
|
|
495
495
|
}
|
|
496
496
|
export class NotLatestPipelineExecutionException extends __BaseException {
|
|
497
|
+
name = "NotLatestPipelineExecutionException";
|
|
498
|
+
$fault = "client";
|
|
497
499
|
constructor(opts) {
|
|
498
500
|
super({
|
|
499
501
|
name: "NotLatestPipelineExecutionException",
|
|
500
502
|
$fault: "client",
|
|
501
503
|
...opts,
|
|
502
504
|
});
|
|
503
|
-
this.name = "NotLatestPipelineExecutionException";
|
|
504
|
-
this.$fault = "client";
|
|
505
505
|
Object.setPrototypeOf(this, NotLatestPipelineExecutionException.prototype);
|
|
506
506
|
}
|
|
507
507
|
}
|
|
@@ -510,26 +510,26 @@ export const ConditionType = {
|
|
|
510
510
|
ON_SUCCESS: "ON_SUCCESS",
|
|
511
511
|
};
|
|
512
512
|
export class InvalidApprovalTokenException extends __BaseException {
|
|
513
|
+
name = "InvalidApprovalTokenException";
|
|
514
|
+
$fault = "client";
|
|
513
515
|
constructor(opts) {
|
|
514
516
|
super({
|
|
515
517
|
name: "InvalidApprovalTokenException",
|
|
516
518
|
$fault: "client",
|
|
517
519
|
...opts,
|
|
518
520
|
});
|
|
519
|
-
this.name = "InvalidApprovalTokenException";
|
|
520
|
-
this.$fault = "client";
|
|
521
521
|
Object.setPrototypeOf(this, InvalidApprovalTokenException.prototype);
|
|
522
522
|
}
|
|
523
523
|
}
|
|
524
524
|
export class InvalidJobStateException extends __BaseException {
|
|
525
|
+
name = "InvalidJobStateException";
|
|
526
|
+
$fault = "client";
|
|
525
527
|
constructor(opts) {
|
|
526
528
|
super({
|
|
527
529
|
name: "InvalidJobStateException",
|
|
528
530
|
$fault: "client",
|
|
529
531
|
...opts,
|
|
530
532
|
});
|
|
531
|
-
this.name = "InvalidJobStateException";
|
|
532
|
-
this.$fault = "client";
|
|
533
533
|
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
534
534
|
}
|
|
535
535
|
}
|
|
@@ -542,74 +542,74 @@ export const FailureType = {
|
|
|
542
542
|
SystemUnavailable: "SystemUnavailable",
|
|
543
543
|
};
|
|
544
544
|
export class OutputVariablesSizeExceededException extends __BaseException {
|
|
545
|
+
name = "OutputVariablesSizeExceededException";
|
|
546
|
+
$fault = "client";
|
|
545
547
|
constructor(opts) {
|
|
546
548
|
super({
|
|
547
549
|
name: "OutputVariablesSizeExceededException",
|
|
548
550
|
$fault: "client",
|
|
549
551
|
...opts,
|
|
550
552
|
});
|
|
551
|
-
this.name = "OutputVariablesSizeExceededException";
|
|
552
|
-
this.$fault = "client";
|
|
553
553
|
Object.setPrototypeOf(this, OutputVariablesSizeExceededException.prototype);
|
|
554
554
|
}
|
|
555
555
|
}
|
|
556
556
|
export class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
557
|
+
name = "InvalidWebhookAuthenticationParametersException";
|
|
558
|
+
$fault = "client";
|
|
557
559
|
constructor(opts) {
|
|
558
560
|
super({
|
|
559
561
|
name: "InvalidWebhookAuthenticationParametersException",
|
|
560
562
|
$fault: "client",
|
|
561
563
|
...opts,
|
|
562
564
|
});
|
|
563
|
-
this.name = "InvalidWebhookAuthenticationParametersException";
|
|
564
|
-
this.$fault = "client";
|
|
565
565
|
Object.setPrototypeOf(this, InvalidWebhookAuthenticationParametersException.prototype);
|
|
566
566
|
}
|
|
567
567
|
}
|
|
568
568
|
export class InvalidWebhookFilterPatternException extends __BaseException {
|
|
569
|
+
name = "InvalidWebhookFilterPatternException";
|
|
570
|
+
$fault = "client";
|
|
569
571
|
constructor(opts) {
|
|
570
572
|
super({
|
|
571
573
|
name: "InvalidWebhookFilterPatternException",
|
|
572
574
|
$fault: "client",
|
|
573
575
|
...opts,
|
|
574
576
|
});
|
|
575
|
-
this.name = "InvalidWebhookFilterPatternException";
|
|
576
|
-
this.$fault = "client";
|
|
577
577
|
Object.setPrototypeOf(this, InvalidWebhookFilterPatternException.prototype);
|
|
578
578
|
}
|
|
579
579
|
}
|
|
580
580
|
export class StageNotRetryableException extends __BaseException {
|
|
581
|
+
name = "StageNotRetryableException";
|
|
582
|
+
$fault = "client";
|
|
581
583
|
constructor(opts) {
|
|
582
584
|
super({
|
|
583
585
|
name: "StageNotRetryableException",
|
|
584
586
|
$fault: "client",
|
|
585
587
|
...opts,
|
|
586
588
|
});
|
|
587
|
-
this.name = "StageNotRetryableException";
|
|
588
|
-
this.$fault = "client";
|
|
589
589
|
Object.setPrototypeOf(this, StageNotRetryableException.prototype);
|
|
590
590
|
}
|
|
591
591
|
}
|
|
592
592
|
export class PipelineExecutionOutdatedException extends __BaseException {
|
|
593
|
+
name = "PipelineExecutionOutdatedException";
|
|
594
|
+
$fault = "client";
|
|
593
595
|
constructor(opts) {
|
|
594
596
|
super({
|
|
595
597
|
name: "PipelineExecutionOutdatedException",
|
|
596
598
|
$fault: "client",
|
|
597
599
|
...opts,
|
|
598
600
|
});
|
|
599
|
-
this.name = "PipelineExecutionOutdatedException";
|
|
600
|
-
this.$fault = "client";
|
|
601
601
|
Object.setPrototypeOf(this, PipelineExecutionOutdatedException.prototype);
|
|
602
602
|
}
|
|
603
603
|
}
|
|
604
604
|
export class UnableToRollbackStageException extends __BaseException {
|
|
605
|
+
name = "UnableToRollbackStageException";
|
|
606
|
+
$fault = "client";
|
|
605
607
|
constructor(opts) {
|
|
606
608
|
super({
|
|
607
609
|
name: "UnableToRollbackStageException",
|
|
608
610
|
$fault: "client",
|
|
609
611
|
...opts,
|
|
610
612
|
});
|
|
611
|
-
this.name = "UnableToRollbackStageException";
|
|
612
|
-
this.$fault = "client";
|
|
613
613
|
Object.setPrototypeOf(this, UnableToRollbackStageException.prototype);
|
|
614
614
|
}
|
|
615
615
|
}
|
|
@@ -620,38 +620,38 @@ export const SourceRevisionType = {
|
|
|
620
620
|
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID",
|
|
621
621
|
};
|
|
622
622
|
export class DuplicatedStopRequestException extends __BaseException {
|
|
623
|
+
name = "DuplicatedStopRequestException";
|
|
624
|
+
$fault = "client";
|
|
623
625
|
constructor(opts) {
|
|
624
626
|
super({
|
|
625
627
|
name: "DuplicatedStopRequestException",
|
|
626
628
|
$fault: "client",
|
|
627
629
|
...opts,
|
|
628
630
|
});
|
|
629
|
-
this.name = "DuplicatedStopRequestException";
|
|
630
|
-
this.$fault = "client";
|
|
631
631
|
Object.setPrototypeOf(this, DuplicatedStopRequestException.prototype);
|
|
632
632
|
}
|
|
633
633
|
}
|
|
634
634
|
export class PipelineExecutionNotStoppableException extends __BaseException {
|
|
635
|
+
name = "PipelineExecutionNotStoppableException";
|
|
636
|
+
$fault = "client";
|
|
635
637
|
constructor(opts) {
|
|
636
638
|
super({
|
|
637
639
|
name: "PipelineExecutionNotStoppableException",
|
|
638
640
|
$fault: "client",
|
|
639
641
|
...opts,
|
|
640
642
|
});
|
|
641
|
-
this.name = "PipelineExecutionNotStoppableException";
|
|
642
|
-
this.$fault = "client";
|
|
643
643
|
Object.setPrototypeOf(this, PipelineExecutionNotStoppableException.prototype);
|
|
644
644
|
}
|
|
645
645
|
}
|
|
646
646
|
export class RequestFailedException extends __BaseException {
|
|
647
|
+
name = "RequestFailedException";
|
|
648
|
+
$fault = "client";
|
|
647
649
|
constructor(opts) {
|
|
648
650
|
super({
|
|
649
651
|
name: "RequestFailedException",
|
|
650
652
|
$fault: "client",
|
|
651
653
|
...opts,
|
|
652
654
|
});
|
|
653
|
-
this.name = "RequestFailedException";
|
|
654
|
-
this.$fault = "client";
|
|
655
655
|
Object.setPrototypeOf(this, RequestFailedException.prototype);
|
|
656
656
|
}
|
|
657
657
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|