@aws-sdk/client-codepipeline 3.933.0 → 3.935.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 +12 -12
- 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
package/dist-cjs/index.js
CHANGED
|
@@ -117,15 +117,6 @@ let CodePipelineServiceException$1 = class CodePipelineServiceException extends
|
|
|
117
117
|
}
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const JobStatus = {
|
|
121
|
-
Created: "Created",
|
|
122
|
-
Dispatched: "Dispatched",
|
|
123
|
-
Failed: "Failed",
|
|
124
|
-
InProgress: "InProgress",
|
|
125
|
-
Queued: "Queued",
|
|
126
|
-
Succeeded: "Succeeded",
|
|
127
|
-
TimedOut: "TimedOut",
|
|
128
|
-
};
|
|
129
120
|
let InvalidNonceException$1 = class InvalidNonceException extends CodePipelineServiceException$1 {
|
|
130
121
|
name = "InvalidNonceException";
|
|
131
122
|
$fault = "client";
|
|
@@ -174,39 +165,6 @@ let InvalidClientTokenException$1 = class InvalidClientTokenException extends Co
|
|
|
174
165
|
Object.setPrototypeOf(this, InvalidClientTokenException.prototype);
|
|
175
166
|
}
|
|
176
167
|
};
|
|
177
|
-
const ActionCategory = {
|
|
178
|
-
Approval: "Approval",
|
|
179
|
-
Build: "Build",
|
|
180
|
-
Compute: "Compute",
|
|
181
|
-
Deploy: "Deploy",
|
|
182
|
-
Invoke: "Invoke",
|
|
183
|
-
Source: "Source",
|
|
184
|
-
Test: "Test",
|
|
185
|
-
};
|
|
186
|
-
const ActionConfigurationPropertyType = {
|
|
187
|
-
Boolean: "Boolean",
|
|
188
|
-
Number: "Number",
|
|
189
|
-
String: "String",
|
|
190
|
-
};
|
|
191
|
-
const ActionOwner = {
|
|
192
|
-
AWS: "AWS",
|
|
193
|
-
Custom: "Custom",
|
|
194
|
-
ThirdParty: "ThirdParty",
|
|
195
|
-
};
|
|
196
|
-
const EnvironmentVariableType = {
|
|
197
|
-
PLAINTEXT: "PLAINTEXT",
|
|
198
|
-
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
199
|
-
};
|
|
200
|
-
const ActionExecutionStatus = {
|
|
201
|
-
Abandoned: "Abandoned",
|
|
202
|
-
Failed: "Failed",
|
|
203
|
-
InProgress: "InProgress",
|
|
204
|
-
Succeeded: "Succeeded",
|
|
205
|
-
};
|
|
206
|
-
const StartTimeRange = {
|
|
207
|
-
All: "All",
|
|
208
|
-
Latest: "Latest",
|
|
209
|
-
};
|
|
210
168
|
let ActionExecutionNotFoundException$1 = class ActionExecutionNotFoundException extends CodePipelineServiceException$1 {
|
|
211
169
|
name = "ActionExecutionNotFoundException";
|
|
212
170
|
$fault = "client";
|
|
@@ -231,10 +189,6 @@ let ActionNotFoundException$1 = class ActionNotFoundException extends CodePipeli
|
|
|
231
189
|
Object.setPrototypeOf(this, ActionNotFoundException.prototype);
|
|
232
190
|
}
|
|
233
191
|
};
|
|
234
|
-
const ExecutorType = {
|
|
235
|
-
JobWorker: "JobWorker",
|
|
236
|
-
Lambda: "Lambda",
|
|
237
|
-
};
|
|
238
192
|
let ActionTypeNotFoundException$1 = class ActionTypeNotFoundException extends CodePipelineServiceException$1 {
|
|
239
193
|
name = "ActionTypeNotFoundException";
|
|
240
194
|
$fault = "client";
|
|
@@ -259,34 +213,6 @@ let ApprovalAlreadyCompletedException$1 = class ApprovalAlreadyCompletedExceptio
|
|
|
259
213
|
Object.setPrototypeOf(this, ApprovalAlreadyCompletedException.prototype);
|
|
260
214
|
}
|
|
261
215
|
};
|
|
262
|
-
const ApprovalStatus = {
|
|
263
|
-
Approved: "Approved",
|
|
264
|
-
Rejected: "Rejected",
|
|
265
|
-
};
|
|
266
|
-
const ArtifactLocationType = {
|
|
267
|
-
S3: "S3",
|
|
268
|
-
};
|
|
269
|
-
const EncryptionKeyType = {
|
|
270
|
-
KMS: "KMS",
|
|
271
|
-
};
|
|
272
|
-
const ArtifactStoreType = {
|
|
273
|
-
S3: "S3",
|
|
274
|
-
};
|
|
275
|
-
const Result = {
|
|
276
|
-
FAIL: "FAIL",
|
|
277
|
-
RETRY: "RETRY",
|
|
278
|
-
ROLLBACK: "ROLLBACK",
|
|
279
|
-
SKIP: "SKIP",
|
|
280
|
-
};
|
|
281
|
-
const RuleCategory = {
|
|
282
|
-
Rule: "Rule",
|
|
283
|
-
};
|
|
284
|
-
const RuleOwner = {
|
|
285
|
-
AWS: "AWS",
|
|
286
|
-
};
|
|
287
|
-
const BlockerType = {
|
|
288
|
-
Schedule: "Schedule",
|
|
289
|
-
};
|
|
290
216
|
let ConcurrentModificationException$1 = class ConcurrentModificationException extends CodePipelineServiceException$1 {
|
|
291
217
|
name = "ConcurrentModificationException";
|
|
292
218
|
$fault = "client";
|
|
@@ -335,27 +261,6 @@ let TooManyTagsException$1 = class TooManyTagsException extends CodePipelineServ
|
|
|
335
261
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
336
262
|
}
|
|
337
263
|
};
|
|
338
|
-
const ExecutionMode = {
|
|
339
|
-
PARALLEL: "PARALLEL",
|
|
340
|
-
QUEUED: "QUEUED",
|
|
341
|
-
SUPERSEDED: "SUPERSEDED",
|
|
342
|
-
};
|
|
343
|
-
const PipelineType = {
|
|
344
|
-
V1: "V1",
|
|
345
|
-
V2: "V2",
|
|
346
|
-
};
|
|
347
|
-
const StageRetryMode = {
|
|
348
|
-
ALL_ACTIONS: "ALL_ACTIONS",
|
|
349
|
-
FAILED_ACTIONS: "FAILED_ACTIONS",
|
|
350
|
-
};
|
|
351
|
-
const GitPullRequestEventType = {
|
|
352
|
-
CLOSED: "CLOSED",
|
|
353
|
-
OPEN: "OPEN",
|
|
354
|
-
UPDATED: "UPDATED",
|
|
355
|
-
};
|
|
356
|
-
const PipelineTriggerProviderType = {
|
|
357
|
-
CodeStarSourceConnection: "CodeStarSourceConnection",
|
|
358
|
-
};
|
|
359
264
|
let InvalidActionDeclarationException$1 = class InvalidActionDeclarationException extends CodePipelineServiceException$1 {
|
|
360
265
|
name = "InvalidActionDeclarationException";
|
|
361
266
|
$fault = "client";
|
|
@@ -428,10 +333,6 @@ let WebhookNotFoundException$1 = class WebhookNotFoundException extends CodePipe
|
|
|
428
333
|
Object.setPrototypeOf(this, WebhookNotFoundException.prototype);
|
|
429
334
|
}
|
|
430
335
|
};
|
|
431
|
-
const StageTransitionType = {
|
|
432
|
-
Inbound: "Inbound",
|
|
433
|
-
Outbound: "Outbound",
|
|
434
|
-
};
|
|
435
336
|
let PipelineNotFoundException$1 = class PipelineNotFoundException extends CodePipelineServiceException$1 {
|
|
436
337
|
name = "PipelineNotFoundException";
|
|
437
338
|
$fault = "client";
|
|
@@ -468,30 +369,6 @@ let PipelineVersionNotFoundException$1 = class PipelineVersionNotFoundException
|
|
|
468
369
|
Object.setPrototypeOf(this, PipelineVersionNotFoundException.prototype);
|
|
469
370
|
}
|
|
470
371
|
};
|
|
471
|
-
const ExecutionType = {
|
|
472
|
-
ROLLBACK: "ROLLBACK",
|
|
473
|
-
STANDARD: "STANDARD",
|
|
474
|
-
};
|
|
475
|
-
const PipelineExecutionStatus = {
|
|
476
|
-
Cancelled: "Cancelled",
|
|
477
|
-
Failed: "Failed",
|
|
478
|
-
InProgress: "InProgress",
|
|
479
|
-
Stopped: "Stopped",
|
|
480
|
-
Stopping: "Stopping",
|
|
481
|
-
Succeeded: "Succeeded",
|
|
482
|
-
Superseded: "Superseded",
|
|
483
|
-
};
|
|
484
|
-
const TriggerType = {
|
|
485
|
-
AutomatedRollback: "AutomatedRollback",
|
|
486
|
-
CloudWatchEvent: "CloudWatchEvent",
|
|
487
|
-
CreatePipeline: "CreatePipeline",
|
|
488
|
-
ManualRollback: "ManualRollback",
|
|
489
|
-
PollForSourceChanges: "PollForSourceChanges",
|
|
490
|
-
PutActionRevision: "PutActionRevision",
|
|
491
|
-
StartPipelineExecution: "StartPipelineExecution",
|
|
492
|
-
Webhook: "Webhook",
|
|
493
|
-
WebhookV2: "WebhookV2",
|
|
494
|
-
};
|
|
495
372
|
let PipelineExecutionNotFoundException$1 = class PipelineExecutionNotFoundException extends CodePipelineServiceException$1 {
|
|
496
373
|
name = "PipelineExecutionNotFoundException";
|
|
497
374
|
$fault = "client";
|
|
@@ -504,34 +381,6 @@ let PipelineExecutionNotFoundException$1 = class PipelineExecutionNotFoundExcept
|
|
|
504
381
|
Object.setPrototypeOf(this, PipelineExecutionNotFoundException.prototype);
|
|
505
382
|
}
|
|
506
383
|
};
|
|
507
|
-
const ConditionExecutionStatus = {
|
|
508
|
-
Abandoned: "Abandoned",
|
|
509
|
-
Cancelled: "Cancelled",
|
|
510
|
-
Errored: "Errored",
|
|
511
|
-
Failed: "Failed",
|
|
512
|
-
InProgress: "InProgress",
|
|
513
|
-
Overridden: "Overridden",
|
|
514
|
-
Succeeded: "Succeeded",
|
|
515
|
-
};
|
|
516
|
-
const RuleExecutionStatus = {
|
|
517
|
-
Abandoned: "Abandoned",
|
|
518
|
-
Failed: "Failed",
|
|
519
|
-
InProgress: "InProgress",
|
|
520
|
-
Succeeded: "Succeeded",
|
|
521
|
-
};
|
|
522
|
-
const StageExecutionStatus = {
|
|
523
|
-
Cancelled: "Cancelled",
|
|
524
|
-
Failed: "Failed",
|
|
525
|
-
InProgress: "InProgress",
|
|
526
|
-
Skipped: "Skipped",
|
|
527
|
-
Stopped: "Stopped",
|
|
528
|
-
Stopping: "Stopping",
|
|
529
|
-
Succeeded: "Succeeded",
|
|
530
|
-
};
|
|
531
|
-
const RetryTrigger = {
|
|
532
|
-
AutomatedStageRetry: "AutomatedStageRetry",
|
|
533
|
-
ManualStageRetry: "ManualStageRetry",
|
|
534
|
-
};
|
|
535
384
|
let InvalidJobException$1 = class InvalidJobException extends CodePipelineServiceException$1 {
|
|
536
385
|
name = "InvalidJobException";
|
|
537
386
|
$fault = "client";
|
|
@@ -556,14 +405,6 @@ let InvalidNextTokenException$1 = class InvalidNextTokenException extends CodePi
|
|
|
556
405
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
557
406
|
}
|
|
558
407
|
};
|
|
559
|
-
const TargetFilterName = {
|
|
560
|
-
TARGET_STATUS: "TARGET_STATUS",
|
|
561
|
-
};
|
|
562
|
-
const RuleConfigurationPropertyType = {
|
|
563
|
-
Boolean: "Boolean",
|
|
564
|
-
Number: "Number",
|
|
565
|
-
String: "String",
|
|
566
|
-
};
|
|
567
408
|
let InvalidArnException$1 = class InvalidArnException extends CodePipelineServiceException$1 {
|
|
568
409
|
name = "InvalidArnException";
|
|
569
410
|
$fault = "client";
|
|
@@ -588,11 +429,6 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends CodePi
|
|
|
588
429
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
589
430
|
}
|
|
590
431
|
};
|
|
591
|
-
const WebhookAuthenticationType = {
|
|
592
|
-
GITHUB_HMAC: "GITHUB_HMAC",
|
|
593
|
-
IP: "IP",
|
|
594
|
-
UNAUTHENTICATED: "UNAUTHENTICATED",
|
|
595
|
-
};
|
|
596
432
|
let ConcurrentPipelineExecutionsLimitExceededException$1 = class ConcurrentPipelineExecutionsLimitExceededException extends CodePipelineServiceException$1 {
|
|
597
433
|
name = "ConcurrentPipelineExecutionsLimitExceededException";
|
|
598
434
|
$fault = "client";
|
|
@@ -641,10 +477,6 @@ let NotLatestPipelineExecutionException$1 = class NotLatestPipelineExecutionExce
|
|
|
641
477
|
Object.setPrototypeOf(this, NotLatestPipelineExecutionException.prototype);
|
|
642
478
|
}
|
|
643
479
|
};
|
|
644
|
-
const ConditionType = {
|
|
645
|
-
BEFORE_ENTRY: "BEFORE_ENTRY",
|
|
646
|
-
ON_SUCCESS: "ON_SUCCESS",
|
|
647
|
-
};
|
|
648
480
|
let InvalidApprovalTokenException$1 = class InvalidApprovalTokenException extends CodePipelineServiceException$1 {
|
|
649
481
|
name = "InvalidApprovalTokenException";
|
|
650
482
|
$fault = "client";
|
|
@@ -669,14 +501,6 @@ let InvalidJobStateException$1 = class InvalidJobStateException extends CodePipe
|
|
|
669
501
|
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
670
502
|
}
|
|
671
503
|
};
|
|
672
|
-
const FailureType = {
|
|
673
|
-
ConfigurationError: "ConfigurationError",
|
|
674
|
-
JobFailed: "JobFailed",
|
|
675
|
-
PermissionError: "PermissionError",
|
|
676
|
-
RevisionOutOfSync: "RevisionOutOfSync",
|
|
677
|
-
RevisionUnavailable: "RevisionUnavailable",
|
|
678
|
-
SystemUnavailable: "SystemUnavailable",
|
|
679
|
-
};
|
|
680
504
|
let OutputVariablesSizeExceededException$1 = class OutputVariablesSizeExceededException extends CodePipelineServiceException$1 {
|
|
681
505
|
name = "OutputVariablesSizeExceededException";
|
|
682
506
|
$fault = "client";
|
|
@@ -749,12 +573,6 @@ let UnableToRollbackStageException$1 = class UnableToRollbackStageException exte
|
|
|
749
573
|
Object.setPrototypeOf(this, UnableToRollbackStageException.prototype);
|
|
750
574
|
}
|
|
751
575
|
};
|
|
752
|
-
const SourceRevisionType = {
|
|
753
|
-
COMMIT_ID: "COMMIT_ID",
|
|
754
|
-
IMAGE_DIGEST: "IMAGE_DIGEST",
|
|
755
|
-
S3_OBJECT_KEY: "S3_OBJECT_KEY",
|
|
756
|
-
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID",
|
|
757
|
-
};
|
|
758
576
|
let DuplicatedStopRequestException$1 = class DuplicatedStopRequestException extends CodePipelineServiceException$1 {
|
|
759
577
|
name = "DuplicatedStopRequestException";
|
|
760
578
|
$fault = "client";
|
|
@@ -3484,6 +3302,189 @@ const paginateListTagsForResource = core.createPaginator(CodePipelineClient, Lis
|
|
|
3484
3302
|
|
|
3485
3303
|
const paginateListWebhooks = core.createPaginator(CodePipelineClient, ListWebhooksCommand, "NextToken", "NextToken", "MaxResults");
|
|
3486
3304
|
|
|
3305
|
+
const JobStatus = {
|
|
3306
|
+
Created: "Created",
|
|
3307
|
+
Dispatched: "Dispatched",
|
|
3308
|
+
Failed: "Failed",
|
|
3309
|
+
InProgress: "InProgress",
|
|
3310
|
+
Queued: "Queued",
|
|
3311
|
+
Succeeded: "Succeeded",
|
|
3312
|
+
TimedOut: "TimedOut",
|
|
3313
|
+
};
|
|
3314
|
+
const ActionCategory = {
|
|
3315
|
+
Approval: "Approval",
|
|
3316
|
+
Build: "Build",
|
|
3317
|
+
Compute: "Compute",
|
|
3318
|
+
Deploy: "Deploy",
|
|
3319
|
+
Invoke: "Invoke",
|
|
3320
|
+
Source: "Source",
|
|
3321
|
+
Test: "Test",
|
|
3322
|
+
};
|
|
3323
|
+
const ActionConfigurationPropertyType = {
|
|
3324
|
+
Boolean: "Boolean",
|
|
3325
|
+
Number: "Number",
|
|
3326
|
+
String: "String",
|
|
3327
|
+
};
|
|
3328
|
+
const ActionOwner = {
|
|
3329
|
+
AWS: "AWS",
|
|
3330
|
+
Custom: "Custom",
|
|
3331
|
+
ThirdParty: "ThirdParty",
|
|
3332
|
+
};
|
|
3333
|
+
const EnvironmentVariableType = {
|
|
3334
|
+
PLAINTEXT: "PLAINTEXT",
|
|
3335
|
+
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
3336
|
+
};
|
|
3337
|
+
const ActionExecutionStatus = {
|
|
3338
|
+
Abandoned: "Abandoned",
|
|
3339
|
+
Failed: "Failed",
|
|
3340
|
+
InProgress: "InProgress",
|
|
3341
|
+
Succeeded: "Succeeded",
|
|
3342
|
+
};
|
|
3343
|
+
const StartTimeRange = {
|
|
3344
|
+
All: "All",
|
|
3345
|
+
Latest: "Latest",
|
|
3346
|
+
};
|
|
3347
|
+
const ExecutorType = {
|
|
3348
|
+
JobWorker: "JobWorker",
|
|
3349
|
+
Lambda: "Lambda",
|
|
3350
|
+
};
|
|
3351
|
+
const ApprovalStatus = {
|
|
3352
|
+
Approved: "Approved",
|
|
3353
|
+
Rejected: "Rejected",
|
|
3354
|
+
};
|
|
3355
|
+
const ArtifactLocationType = {
|
|
3356
|
+
S3: "S3",
|
|
3357
|
+
};
|
|
3358
|
+
const EncryptionKeyType = {
|
|
3359
|
+
KMS: "KMS",
|
|
3360
|
+
};
|
|
3361
|
+
const ArtifactStoreType = {
|
|
3362
|
+
S3: "S3",
|
|
3363
|
+
};
|
|
3364
|
+
const Result = {
|
|
3365
|
+
FAIL: "FAIL",
|
|
3366
|
+
RETRY: "RETRY",
|
|
3367
|
+
ROLLBACK: "ROLLBACK",
|
|
3368
|
+
SKIP: "SKIP",
|
|
3369
|
+
};
|
|
3370
|
+
const RuleCategory = {
|
|
3371
|
+
Rule: "Rule",
|
|
3372
|
+
};
|
|
3373
|
+
const RuleOwner = {
|
|
3374
|
+
AWS: "AWS",
|
|
3375
|
+
};
|
|
3376
|
+
const BlockerType = {
|
|
3377
|
+
Schedule: "Schedule",
|
|
3378
|
+
};
|
|
3379
|
+
const ExecutionMode = {
|
|
3380
|
+
PARALLEL: "PARALLEL",
|
|
3381
|
+
QUEUED: "QUEUED",
|
|
3382
|
+
SUPERSEDED: "SUPERSEDED",
|
|
3383
|
+
};
|
|
3384
|
+
const PipelineType = {
|
|
3385
|
+
V1: "V1",
|
|
3386
|
+
V2: "V2",
|
|
3387
|
+
};
|
|
3388
|
+
const StageRetryMode = {
|
|
3389
|
+
ALL_ACTIONS: "ALL_ACTIONS",
|
|
3390
|
+
FAILED_ACTIONS: "FAILED_ACTIONS",
|
|
3391
|
+
};
|
|
3392
|
+
const GitPullRequestEventType = {
|
|
3393
|
+
CLOSED: "CLOSED",
|
|
3394
|
+
OPEN: "OPEN",
|
|
3395
|
+
UPDATED: "UPDATED",
|
|
3396
|
+
};
|
|
3397
|
+
const PipelineTriggerProviderType = {
|
|
3398
|
+
CodeStarSourceConnection: "CodeStarSourceConnection",
|
|
3399
|
+
};
|
|
3400
|
+
const StageTransitionType = {
|
|
3401
|
+
Inbound: "Inbound",
|
|
3402
|
+
Outbound: "Outbound",
|
|
3403
|
+
};
|
|
3404
|
+
const ExecutionType = {
|
|
3405
|
+
ROLLBACK: "ROLLBACK",
|
|
3406
|
+
STANDARD: "STANDARD",
|
|
3407
|
+
};
|
|
3408
|
+
const PipelineExecutionStatus = {
|
|
3409
|
+
Cancelled: "Cancelled",
|
|
3410
|
+
Failed: "Failed",
|
|
3411
|
+
InProgress: "InProgress",
|
|
3412
|
+
Stopped: "Stopped",
|
|
3413
|
+
Stopping: "Stopping",
|
|
3414
|
+
Succeeded: "Succeeded",
|
|
3415
|
+
Superseded: "Superseded",
|
|
3416
|
+
};
|
|
3417
|
+
const TriggerType = {
|
|
3418
|
+
AutomatedRollback: "AutomatedRollback",
|
|
3419
|
+
CloudWatchEvent: "CloudWatchEvent",
|
|
3420
|
+
CreatePipeline: "CreatePipeline",
|
|
3421
|
+
ManualRollback: "ManualRollback",
|
|
3422
|
+
PollForSourceChanges: "PollForSourceChanges",
|
|
3423
|
+
PutActionRevision: "PutActionRevision",
|
|
3424
|
+
StartPipelineExecution: "StartPipelineExecution",
|
|
3425
|
+
Webhook: "Webhook",
|
|
3426
|
+
WebhookV2: "WebhookV2",
|
|
3427
|
+
};
|
|
3428
|
+
const ConditionExecutionStatus = {
|
|
3429
|
+
Abandoned: "Abandoned",
|
|
3430
|
+
Cancelled: "Cancelled",
|
|
3431
|
+
Errored: "Errored",
|
|
3432
|
+
Failed: "Failed",
|
|
3433
|
+
InProgress: "InProgress",
|
|
3434
|
+
Overridden: "Overridden",
|
|
3435
|
+
Succeeded: "Succeeded",
|
|
3436
|
+
};
|
|
3437
|
+
const RuleExecutionStatus = {
|
|
3438
|
+
Abandoned: "Abandoned",
|
|
3439
|
+
Failed: "Failed",
|
|
3440
|
+
InProgress: "InProgress",
|
|
3441
|
+
Succeeded: "Succeeded",
|
|
3442
|
+
};
|
|
3443
|
+
const StageExecutionStatus = {
|
|
3444
|
+
Cancelled: "Cancelled",
|
|
3445
|
+
Failed: "Failed",
|
|
3446
|
+
InProgress: "InProgress",
|
|
3447
|
+
Skipped: "Skipped",
|
|
3448
|
+
Stopped: "Stopped",
|
|
3449
|
+
Stopping: "Stopping",
|
|
3450
|
+
Succeeded: "Succeeded",
|
|
3451
|
+
};
|
|
3452
|
+
const RetryTrigger = {
|
|
3453
|
+
AutomatedStageRetry: "AutomatedStageRetry",
|
|
3454
|
+
ManualStageRetry: "ManualStageRetry",
|
|
3455
|
+
};
|
|
3456
|
+
const TargetFilterName = {
|
|
3457
|
+
TARGET_STATUS: "TARGET_STATUS",
|
|
3458
|
+
};
|
|
3459
|
+
const RuleConfigurationPropertyType = {
|
|
3460
|
+
Boolean: "Boolean",
|
|
3461
|
+
Number: "Number",
|
|
3462
|
+
String: "String",
|
|
3463
|
+
};
|
|
3464
|
+
const WebhookAuthenticationType = {
|
|
3465
|
+
GITHUB_HMAC: "GITHUB_HMAC",
|
|
3466
|
+
IP: "IP",
|
|
3467
|
+
UNAUTHENTICATED: "UNAUTHENTICATED",
|
|
3468
|
+
};
|
|
3469
|
+
const ConditionType = {
|
|
3470
|
+
BEFORE_ENTRY: "BEFORE_ENTRY",
|
|
3471
|
+
ON_SUCCESS: "ON_SUCCESS",
|
|
3472
|
+
};
|
|
3473
|
+
const FailureType = {
|
|
3474
|
+
ConfigurationError: "ConfigurationError",
|
|
3475
|
+
JobFailed: "JobFailed",
|
|
3476
|
+
PermissionError: "PermissionError",
|
|
3477
|
+
RevisionOutOfSync: "RevisionOutOfSync",
|
|
3478
|
+
RevisionUnavailable: "RevisionUnavailable",
|
|
3479
|
+
SystemUnavailable: "SystemUnavailable",
|
|
3480
|
+
};
|
|
3481
|
+
const SourceRevisionType = {
|
|
3482
|
+
COMMIT_ID: "COMMIT_ID",
|
|
3483
|
+
IMAGE_DIGEST: "IMAGE_DIGEST",
|
|
3484
|
+
S3_OBJECT_KEY: "S3_OBJECT_KEY",
|
|
3485
|
+
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID",
|
|
3486
|
+
};
|
|
3487
|
+
|
|
3487
3488
|
Object.defineProperty(exports, "$Command", {
|
|
3488
3489
|
enumerable: true,
|
|
3489
3490
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./CodePipelineClient";
|
|
|
2
2
|
export * from "./CodePipeline";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { CodePipelineServiceException } from "./models/CodePipelineServiceException";
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
export const JobStatus = {
|
|
2
|
+
Created: "Created",
|
|
3
|
+
Dispatched: "Dispatched",
|
|
4
|
+
Failed: "Failed",
|
|
5
|
+
InProgress: "InProgress",
|
|
6
|
+
Queued: "Queued",
|
|
7
|
+
Succeeded: "Succeeded",
|
|
8
|
+
TimedOut: "TimedOut",
|
|
9
|
+
};
|
|
10
|
+
export const ActionCategory = {
|
|
11
|
+
Approval: "Approval",
|
|
12
|
+
Build: "Build",
|
|
13
|
+
Compute: "Compute",
|
|
14
|
+
Deploy: "Deploy",
|
|
15
|
+
Invoke: "Invoke",
|
|
16
|
+
Source: "Source",
|
|
17
|
+
Test: "Test",
|
|
18
|
+
};
|
|
19
|
+
export const ActionConfigurationPropertyType = {
|
|
20
|
+
Boolean: "Boolean",
|
|
21
|
+
Number: "Number",
|
|
22
|
+
String: "String",
|
|
23
|
+
};
|
|
24
|
+
export const ActionOwner = {
|
|
25
|
+
AWS: "AWS",
|
|
26
|
+
Custom: "Custom",
|
|
27
|
+
ThirdParty: "ThirdParty",
|
|
28
|
+
};
|
|
29
|
+
export const EnvironmentVariableType = {
|
|
30
|
+
PLAINTEXT: "PLAINTEXT",
|
|
31
|
+
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
32
|
+
};
|
|
33
|
+
export const ActionExecutionStatus = {
|
|
34
|
+
Abandoned: "Abandoned",
|
|
35
|
+
Failed: "Failed",
|
|
36
|
+
InProgress: "InProgress",
|
|
37
|
+
Succeeded: "Succeeded",
|
|
38
|
+
};
|
|
39
|
+
export const StartTimeRange = {
|
|
40
|
+
All: "All",
|
|
41
|
+
Latest: "Latest",
|
|
42
|
+
};
|
|
43
|
+
export const ExecutorType = {
|
|
44
|
+
JobWorker: "JobWorker",
|
|
45
|
+
Lambda: "Lambda",
|
|
46
|
+
};
|
|
47
|
+
export const ApprovalStatus = {
|
|
48
|
+
Approved: "Approved",
|
|
49
|
+
Rejected: "Rejected",
|
|
50
|
+
};
|
|
51
|
+
export const ArtifactLocationType = {
|
|
52
|
+
S3: "S3",
|
|
53
|
+
};
|
|
54
|
+
export const EncryptionKeyType = {
|
|
55
|
+
KMS: "KMS",
|
|
56
|
+
};
|
|
57
|
+
export const ArtifactStoreType = {
|
|
58
|
+
S3: "S3",
|
|
59
|
+
};
|
|
60
|
+
export const Result = {
|
|
61
|
+
FAIL: "FAIL",
|
|
62
|
+
RETRY: "RETRY",
|
|
63
|
+
ROLLBACK: "ROLLBACK",
|
|
64
|
+
SKIP: "SKIP",
|
|
65
|
+
};
|
|
66
|
+
export const RuleCategory = {
|
|
67
|
+
Rule: "Rule",
|
|
68
|
+
};
|
|
69
|
+
export const RuleOwner = {
|
|
70
|
+
AWS: "AWS",
|
|
71
|
+
};
|
|
72
|
+
export const BlockerType = {
|
|
73
|
+
Schedule: "Schedule",
|
|
74
|
+
};
|
|
75
|
+
export const ExecutionMode = {
|
|
76
|
+
PARALLEL: "PARALLEL",
|
|
77
|
+
QUEUED: "QUEUED",
|
|
78
|
+
SUPERSEDED: "SUPERSEDED",
|
|
79
|
+
};
|
|
80
|
+
export const PipelineType = {
|
|
81
|
+
V1: "V1",
|
|
82
|
+
V2: "V2",
|
|
83
|
+
};
|
|
84
|
+
export const StageRetryMode = {
|
|
85
|
+
ALL_ACTIONS: "ALL_ACTIONS",
|
|
86
|
+
FAILED_ACTIONS: "FAILED_ACTIONS",
|
|
87
|
+
};
|
|
88
|
+
export const GitPullRequestEventType = {
|
|
89
|
+
CLOSED: "CLOSED",
|
|
90
|
+
OPEN: "OPEN",
|
|
91
|
+
UPDATED: "UPDATED",
|
|
92
|
+
};
|
|
93
|
+
export const PipelineTriggerProviderType = {
|
|
94
|
+
CodeStarSourceConnection: "CodeStarSourceConnection",
|
|
95
|
+
};
|
|
96
|
+
export const StageTransitionType = {
|
|
97
|
+
Inbound: "Inbound",
|
|
98
|
+
Outbound: "Outbound",
|
|
99
|
+
};
|
|
100
|
+
export const ExecutionType = {
|
|
101
|
+
ROLLBACK: "ROLLBACK",
|
|
102
|
+
STANDARD: "STANDARD",
|
|
103
|
+
};
|
|
104
|
+
export const PipelineExecutionStatus = {
|
|
105
|
+
Cancelled: "Cancelled",
|
|
106
|
+
Failed: "Failed",
|
|
107
|
+
InProgress: "InProgress",
|
|
108
|
+
Stopped: "Stopped",
|
|
109
|
+
Stopping: "Stopping",
|
|
110
|
+
Succeeded: "Succeeded",
|
|
111
|
+
Superseded: "Superseded",
|
|
112
|
+
};
|
|
113
|
+
export const TriggerType = {
|
|
114
|
+
AutomatedRollback: "AutomatedRollback",
|
|
115
|
+
CloudWatchEvent: "CloudWatchEvent",
|
|
116
|
+
CreatePipeline: "CreatePipeline",
|
|
117
|
+
ManualRollback: "ManualRollback",
|
|
118
|
+
PollForSourceChanges: "PollForSourceChanges",
|
|
119
|
+
PutActionRevision: "PutActionRevision",
|
|
120
|
+
StartPipelineExecution: "StartPipelineExecution",
|
|
121
|
+
Webhook: "Webhook",
|
|
122
|
+
WebhookV2: "WebhookV2",
|
|
123
|
+
};
|
|
124
|
+
export const ConditionExecutionStatus = {
|
|
125
|
+
Abandoned: "Abandoned",
|
|
126
|
+
Cancelled: "Cancelled",
|
|
127
|
+
Errored: "Errored",
|
|
128
|
+
Failed: "Failed",
|
|
129
|
+
InProgress: "InProgress",
|
|
130
|
+
Overridden: "Overridden",
|
|
131
|
+
Succeeded: "Succeeded",
|
|
132
|
+
};
|
|
133
|
+
export const RuleExecutionStatus = {
|
|
134
|
+
Abandoned: "Abandoned",
|
|
135
|
+
Failed: "Failed",
|
|
136
|
+
InProgress: "InProgress",
|
|
137
|
+
Succeeded: "Succeeded",
|
|
138
|
+
};
|
|
139
|
+
export const StageExecutionStatus = {
|
|
140
|
+
Cancelled: "Cancelled",
|
|
141
|
+
Failed: "Failed",
|
|
142
|
+
InProgress: "InProgress",
|
|
143
|
+
Skipped: "Skipped",
|
|
144
|
+
Stopped: "Stopped",
|
|
145
|
+
Stopping: "Stopping",
|
|
146
|
+
Succeeded: "Succeeded",
|
|
147
|
+
};
|
|
148
|
+
export const RetryTrigger = {
|
|
149
|
+
AutomatedStageRetry: "AutomatedStageRetry",
|
|
150
|
+
ManualStageRetry: "ManualStageRetry",
|
|
151
|
+
};
|
|
152
|
+
export const TargetFilterName = {
|
|
153
|
+
TARGET_STATUS: "TARGET_STATUS",
|
|
154
|
+
};
|
|
155
|
+
export const RuleConfigurationPropertyType = {
|
|
156
|
+
Boolean: "Boolean",
|
|
157
|
+
Number: "Number",
|
|
158
|
+
String: "String",
|
|
159
|
+
};
|
|
160
|
+
export const WebhookAuthenticationType = {
|
|
161
|
+
GITHUB_HMAC: "GITHUB_HMAC",
|
|
162
|
+
IP: "IP",
|
|
163
|
+
UNAUTHENTICATED: "UNAUTHENTICATED",
|
|
164
|
+
};
|
|
165
|
+
export const ConditionType = {
|
|
166
|
+
BEFORE_ENTRY: "BEFORE_ENTRY",
|
|
167
|
+
ON_SUCCESS: "ON_SUCCESS",
|
|
168
|
+
};
|
|
169
|
+
export const FailureType = {
|
|
170
|
+
ConfigurationError: "ConfigurationError",
|
|
171
|
+
JobFailed: "JobFailed",
|
|
172
|
+
PermissionError: "PermissionError",
|
|
173
|
+
RevisionOutOfSync: "RevisionOutOfSync",
|
|
174
|
+
RevisionUnavailable: "RevisionUnavailable",
|
|
175
|
+
SystemUnavailable: "SystemUnavailable",
|
|
176
|
+
};
|
|
177
|
+
export const SourceRevisionType = {
|
|
178
|
+
COMMIT_ID: "COMMIT_ID",
|
|
179
|
+
IMAGE_DIGEST: "IMAGE_DIGEST",
|
|
180
|
+
S3_OBJECT_KEY: "S3_OBJECT_KEY",
|
|
181
|
+
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID",
|
|
182
|
+
};
|