@aws-sdk/client-codepipeline 3.592.0 → 3.596.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 +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +5 -0
- package/dist-types/commands/RollbackStageCommand.d.ts +2 -1
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +21 -12
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +4 -4
package/dist-cjs/index.js
CHANGED
|
@@ -1066,6 +1066,7 @@ var ConcurrentPipelineExecutionsLimitExceededException = _ConcurrentPipelineExec
|
|
|
1066
1066
|
var SourceRevisionType = {
|
|
1067
1067
|
COMMIT_ID: "COMMIT_ID",
|
|
1068
1068
|
IMAGE_DIGEST: "IMAGE_DIGEST",
|
|
1069
|
+
S3_OBJECT_KEY: "S3_OBJECT_KEY",
|
|
1069
1070
|
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID"
|
|
1070
1071
|
};
|
|
1071
1072
|
var _DuplicatedStopRequestException = class _DuplicatedStopRequestException extends CodePipelineServiceException {
|
|
@@ -565,6 +565,7 @@ export class ConcurrentPipelineExecutionsLimitExceededException extends __BaseEx
|
|
|
565
565
|
export const SourceRevisionType = {
|
|
566
566
|
COMMIT_ID: "COMMIT_ID",
|
|
567
567
|
IMAGE_DIGEST: "IMAGE_DIGEST",
|
|
568
|
+
S3_OBJECT_KEY: "S3_OBJECT_KEY",
|
|
568
569
|
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID",
|
|
569
570
|
};
|
|
570
571
|
export class DuplicatedStopRequestException extends __BaseException {
|
|
@@ -28,6 +28,11 @@ declare const ListPipelineExecutionsCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Gets a summary of the most recent executions for a pipeline.</p>
|
|
31
|
+
* <note>
|
|
32
|
+
* <p>When applying the filter for pipeline executions that have succeeded in the stage,
|
|
33
|
+
* the operation returns all executions in the current pipeline version beginning on
|
|
34
|
+
* February 1, 2024.</p>
|
|
35
|
+
* </note>
|
|
31
36
|
* @example
|
|
32
37
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
38
|
* ```javascript
|
|
@@ -62,7 +62,8 @@ declare const RollbackStageCommand_base: {
|
|
|
62
62
|
* execution ID does not belong to the specified pipeline. </p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link PipelineExecutionOutdatedException} (client fault)
|
|
65
|
-
* <p>The specified pipeline execution is outdated and cannot be used as a target pipeline
|
|
65
|
+
* <p>The specified pipeline execution is outdated and cannot be used as a target pipeline
|
|
66
|
+
* execution for rollback.</p>
|
|
66
67
|
*
|
|
67
68
|
* @throws {@link PipelineNotFoundException} (client fault)
|
|
68
69
|
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
@@ -47,7 +47,7 @@ declare const StartPipelineExecutionCommand_base: {
|
|
|
47
47
|
* sourceRevisions: [ // SourceRevisionOverrideList
|
|
48
48
|
* { // SourceRevisionOverride
|
|
49
49
|
* actionName: "STRING_VALUE", // required
|
|
50
|
-
* revisionType: "COMMIT_ID" || "IMAGE_DIGEST" || "S3_OBJECT_VERSION_ID", // required
|
|
50
|
+
* revisionType: "COMMIT_ID" || "IMAGE_DIGEST" || "S3_OBJECT_VERSION_ID" || "S3_OBJECT_KEY", // required
|
|
51
51
|
* revisionValue: "STRING_VALUE", // required
|
|
52
52
|
* },
|
|
53
53
|
* ],
|
|
@@ -1709,12 +1709,14 @@ export declare const Result: {
|
|
|
1709
1709
|
*/
|
|
1710
1710
|
export type Result = (typeof Result)[keyof typeof Result];
|
|
1711
1711
|
/**
|
|
1712
|
-
* <p>The configuration that specifies the result, such as rollback, to occur upon stage
|
|
1712
|
+
* <p>The configuration that specifies the result, such as rollback, to occur upon stage
|
|
1713
|
+
* failure. </p>
|
|
1713
1714
|
* @public
|
|
1714
1715
|
*/
|
|
1715
1716
|
export interface FailureConditions {
|
|
1716
1717
|
/**
|
|
1717
|
-
* <p>The specified result for when the failure conditions are met, such as rolling back the
|
|
1718
|
+
* <p>The specified result for when the failure conditions are met, such as rolling back the
|
|
1719
|
+
* stage.</p>
|
|
1718
1720
|
* @public
|
|
1719
1721
|
*/
|
|
1720
1722
|
result?: Result;
|
|
@@ -1740,7 +1742,9 @@ export interface StageDeclaration {
|
|
|
1740
1742
|
*/
|
|
1741
1743
|
actions: ActionDeclaration[] | undefined;
|
|
1742
1744
|
/**
|
|
1743
|
-
* <p>The method to use when a stage has not completed successfully. For example,
|
|
1745
|
+
* <p>The method to use when a stage has not completed successfully. For example,
|
|
1746
|
+
* configuring this field for rollback will roll back a failed stage automatically to the
|
|
1747
|
+
* last successful pipeline execution in the stage.</p>
|
|
1744
1748
|
* @public
|
|
1745
1749
|
*/
|
|
1746
1750
|
onFailure?: FailureConditions;
|
|
@@ -2907,7 +2911,8 @@ export interface StageExecution {
|
|
|
2907
2911
|
*/
|
|
2908
2912
|
status: StageExecutionStatus | undefined;
|
|
2909
2913
|
/**
|
|
2910
|
-
* <p>The type of pipeline execution for the stage, such as a rollback pipeline
|
|
2914
|
+
* <p>The type of pipeline execution for the stage, such as a rollback pipeline
|
|
2915
|
+
* execution.</p>
|
|
2911
2916
|
* @public
|
|
2912
2917
|
*/
|
|
2913
2918
|
type?: ExecutionType;
|
|
@@ -3171,10 +3176,6 @@ export interface ListActionExecutionsInput {
|
|
|
3171
3176
|
* results, make another call with the returned nextToken value. Action execution history
|
|
3172
3177
|
* is retained for up to 12 months, based on action execution start times. Default value is
|
|
3173
3178
|
* 100. </p>
|
|
3174
|
-
* <note>
|
|
3175
|
-
* <p>Detailed execution history is available for executions run on or after February
|
|
3176
|
-
* 21, 2019.</p>
|
|
3177
|
-
* </note>
|
|
3178
3179
|
* @public
|
|
3179
3180
|
*/
|
|
3180
3181
|
maxResults?: number;
|
|
@@ -3243,13 +3244,14 @@ export interface ListActionTypesOutput {
|
|
|
3243
3244
|
nextToken?: string;
|
|
3244
3245
|
}
|
|
3245
3246
|
/**
|
|
3246
|
-
* <p>Filter for pipeline executions that have successfully completed the stage in the
|
|
3247
|
+
* <p>Filter for pipeline executions that have successfully completed the stage in the
|
|
3248
|
+
* current pipeline version.</p>
|
|
3247
3249
|
* @public
|
|
3248
3250
|
*/
|
|
3249
3251
|
export interface SucceededInStageFilter {
|
|
3250
3252
|
/**
|
|
3251
|
-
* <p>The name of the stage for filtering for pipeline executions where the stage was
|
|
3252
|
-
* version.</p>
|
|
3253
|
+
* <p>The name of the stage for filtering for pipeline executions where the stage was
|
|
3254
|
+
* successful in the current pipeline version.</p>
|
|
3253
3255
|
* @public
|
|
3254
3256
|
*/
|
|
3255
3257
|
stageName?: string;
|
|
@@ -4410,7 +4412,8 @@ export declare class StageNotRetryableException extends __BaseException {
|
|
|
4410
4412
|
constructor(opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>);
|
|
4411
4413
|
}
|
|
4412
4414
|
/**
|
|
4413
|
-
* <p>The specified pipeline execution is outdated and cannot be used as a target pipeline
|
|
4415
|
+
* <p>The specified pipeline execution is outdated and cannot be used as a target pipeline
|
|
4416
|
+
* execution for rollback.</p>
|
|
4414
4417
|
* @public
|
|
4415
4418
|
*/
|
|
4416
4419
|
export declare class PipelineExecutionOutdatedException extends __BaseException {
|
|
@@ -4485,6 +4488,7 @@ export declare class ConcurrentPipelineExecutionsLimitExceededException extends
|
|
|
4485
4488
|
export declare const SourceRevisionType: {
|
|
4486
4489
|
readonly COMMIT_ID: "COMMIT_ID";
|
|
4487
4490
|
readonly IMAGE_DIGEST: "IMAGE_DIGEST";
|
|
4491
|
+
readonly S3_OBJECT_KEY: "S3_OBJECT_KEY";
|
|
4488
4492
|
readonly S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID";
|
|
4489
4493
|
};
|
|
4490
4494
|
/**
|
|
@@ -4495,6 +4499,11 @@ export type SourceRevisionType = (typeof SourceRevisionType)[keyof typeof Source
|
|
|
4495
4499
|
* <p>A list that allows you to specify, or override, the source revision for a pipeline
|
|
4496
4500
|
* execution that's being started. A source revision is the version with all the changes to
|
|
4497
4501
|
* your application code, or source artifact, for the pipeline execution.</p>
|
|
4502
|
+
* <note>
|
|
4503
|
+
* <p>For the <code>S3_OBJECT_VERSION_ID</code> and <code>S3_OBJECT_KEY</code> types of source revisions, either
|
|
4504
|
+
* of the types can be used independently, or they can be used together to override the
|
|
4505
|
+
* source with a specific ObjectKey and VersionID.</p>
|
|
4506
|
+
* </note>
|
|
4498
4507
|
* @public
|
|
4499
4508
|
*/
|
|
4500
4509
|
export interface SourceRevisionOverride {
|
|
@@ -1181,6 +1181,7 @@ export declare class ConcurrentPipelineExecutionsLimitExceededException extends
|
|
|
1181
1181
|
export declare const SourceRevisionType: {
|
|
1182
1182
|
readonly COMMIT_ID: "COMMIT_ID";
|
|
1183
1183
|
readonly IMAGE_DIGEST: "IMAGE_DIGEST";
|
|
1184
|
+
readonly S3_OBJECT_KEY: "S3_OBJECT_KEY";
|
|
1184
1185
|
readonly S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID";
|
|
1185
1186
|
};
|
|
1186
1187
|
export type SourceRevisionType =
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codepipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.596.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codepipeline",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.596.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.596.0",
|
|
25
25
|
"@aws-sdk/core": "3.592.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.596.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|