@aws-sdk/client-codepipeline 3.289.0 → 3.290.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-types/commands/AcknowledgeJobCommand.d.ts +10 -0
- package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +13 -0
- package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +17 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +32 -0
- package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +7 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +7 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +7 -0
- package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +8 -0
- package/dist-types/commands/DisableStageTransitionCommand.d.ts +10 -0
- package/dist-types/commands/EnableStageTransitionCommand.d.ts +10 -0
- package/dist-types/commands/GetActionTypeCommand.d.ts +7 -0
- package/dist-types/commands/GetJobDetailsCommand.d.ts +7 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +11 -0
- package/dist-types/commands/GetPipelineExecutionCommand.d.ts +11 -0
- package/dist-types/commands/GetPipelineStateCommand.d.ts +7 -0
- package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +13 -0
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +15 -0
- package/dist-types/commands/ListActionTypesCommand.d.ts +8 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +11 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +14 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +8 -0
- package/dist-types/commands/PollForJobsCommand.d.ts +7 -0
- package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +7 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +13 -0
- package/dist-types/commands/PutApprovalResultCommand.d.ts +19 -0
- package/dist-types/commands/PutJobFailureResultCommand.d.ts +10 -0
- package/dist-types/commands/PutJobSuccessResultCommand.d.ts +13 -0
- package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +13 -0
- package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +13 -0
- package/dist-types/commands/PutWebhookCommand.d.ts +26 -0
- package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +8 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +23 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +11 -0
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +22 -0
- package/dist-types/commands/TagResourceCommand.d.ts +19 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateActionTypeCommand.d.ts +10 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +20 -0
- package/package.json +29 -29
|
@@ -30,6 +30,16 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met
|
|
|
30
30
|
* @see {@link AcknowledgeJobCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidNonceException} (client fault)
|
|
34
|
+
* <p>The nonce was specified in an invalid format.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
37
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class AcknowledgeJobCommand extends $Command<AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
45
|
readonly input: AcknowledgeJobCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP
|
|
|
30
30
|
* @see {@link AcknowledgeThirdPartyJobCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
34
|
+
* <p>The client token was specified in an invalid format</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidNonceException} (client fault)
|
|
37
|
+
* <p>The nonce was specified in an invalid format.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
40
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class AcknowledgeThirdPartyJobCommand extends $Command<AcknowledgeThirdPartyJobCommandInput, AcknowledgeThirdPartyJobCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
48
|
readonly input: AcknowledgeThirdPartyJobCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
|
|
|
30
30
|
* @see {@link CreateCustomActionTypeCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
34
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidTagsException} (client fault)
|
|
37
|
+
* <p>The specified resource tags are invalid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
40
|
+
* <p>The number of pipelines associated with the AWS account has exceeded the limit
|
|
41
|
+
* allowed for the account.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
44
|
+
* <p>The tags limit for a resource has been exceeded.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
33
50
|
*/
|
|
34
51
|
export declare class CreateCustomActionTypeCommand extends $Command<CreateCustomActionTypeCommandInput, CreateCustomActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
52
|
readonly input: CreateCustomActionTypeCommandInput;
|
|
@@ -35,6 +35,38 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
35
35
|
* @see {@link CreatePipelineCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
39
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidActionDeclarationException} (client fault)
|
|
42
|
+
* <p>The action declaration was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidBlockerDeclarationException} (client fault)
|
|
45
|
+
* <p>Reserved for future use.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidStageDeclarationException} (client fault)
|
|
48
|
+
* <p>The stage declaration was specified in an invalid format.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidStructureException} (client fault)
|
|
51
|
+
* <p>The structure was specified in an invalid format.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InvalidTagsException} (client fault)
|
|
54
|
+
* <p>The specified resource tags are invalid.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
57
|
+
* <p>The number of pipelines associated with the AWS account has exceeded the limit
|
|
58
|
+
* allowed for the account.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link PipelineNameInUseException} (client fault)
|
|
61
|
+
* <p>The specified pipeline name is already in use.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
64
|
+
* <p>The tags limit for a resource has been exceeded.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
38
70
|
*/
|
|
39
71
|
export declare class CreatePipelineCommand extends $Command<CreatePipelineCommandInput, CreatePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
40
72
|
readonly input: CreatePipelineCommandInput;
|
|
@@ -37,6 +37,13 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
|
|
|
37
37
|
* @see {@link DeleteCustomActionTypeCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
41
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
40
47
|
*/
|
|
41
48
|
export declare class DeleteCustomActionTypeCommand extends $Command<DeleteCustomActionTypeCommandInput, DeleteCustomActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
42
49
|
readonly input: DeleteCustomActionTypeCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeletePipelineCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
33
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ValidationException} (client fault)
|
|
36
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class DeletePipelineCommand extends $Command<DeletePipelineCommandInput, DeletePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
34
41
|
readonly input: DeletePipelineCommandInput;
|
|
@@ -33,6 +33,13 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
33
33
|
* @see {@link DeleteWebhookCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
36
43
|
*/
|
|
37
44
|
export declare class DeleteWebhookCommand extends $Command<DeleteWebhookCommandInput, DeleteWebhookCommandOutput, CodePipelineClientResolvedConfig> {
|
|
38
45
|
readonly input: DeleteWebhookCommandInput;
|
|
@@ -31,6 +31,14 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput extends Deregister
|
|
|
31
31
|
* @see {@link DeregisterWebhookWithThirdPartyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ValidationException} (client fault)
|
|
35
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link WebhookNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
39
|
+
* found.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
34
42
|
*/
|
|
35
43
|
export declare class DeregisterWebhookWithThirdPartyCommand extends $Command<DeregisterWebhookWithThirdPartyCommandInput, DeregisterWebhookWithThirdPartyCommandOutput, CodePipelineClientResolvedConfig> {
|
|
36
44
|
readonly input: DeregisterWebhookWithThirdPartyCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link DisableStageTransitionCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
34
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link StageNotFoundException} (client fault)
|
|
37
|
+
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class DisableStageTransitionCommand extends $Command<DisableStageTransitionCommandInput, DisableStageTransitionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
45
|
readonly input: DisableStageTransitionCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface EnableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link EnableStageTransitionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
33
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link StageNotFoundException} (client fault)
|
|
36
|
+
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class EnableStageTransitionCommand extends $Command<EnableStageTransitionCommandInput, EnableStageTransitionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
34
44
|
readonly input: EnableStageTransitionCommandInput;
|
|
@@ -31,6 +31,13 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
|
|
|
31
31
|
* @see {@link GetActionTypeCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ActionTypeNotFoundException} (client fault)
|
|
35
|
+
* <p>The specified action type cannot be found.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ValidationException} (client fault)
|
|
38
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
34
41
|
*/
|
|
35
42
|
export declare class GetActionTypeCommand extends $Command<GetActionTypeCommandInput, GetActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
36
43
|
readonly input: GetActionTypeCommandInput;
|
|
@@ -35,6 +35,13 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
|
|
|
35
35
|
* @see {@link GetJobDetailsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
39
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
38
45
|
*/
|
|
39
46
|
export declare class GetJobDetailsCommand extends $Command<GetJobDetailsCommandInput, GetJobDetailsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
40
47
|
readonly input: GetJobDetailsCommandInput;
|
|
@@ -31,6 +31,17 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
|
|
|
31
31
|
* @see {@link GetPipelineCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
35
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link PipelineVersionNotFoundException} (client fault)
|
|
38
|
+
* <p>The pipeline version was specified in an invalid format or cannot be
|
|
39
|
+
* found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
34
45
|
*/
|
|
35
46
|
export declare class GetPipelineCommand extends $Command<GetPipelineCommandInput, GetPipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
36
47
|
readonly input: GetPipelineCommandInput;
|
|
@@ -31,6 +31,17 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO
|
|
|
31
31
|
* @see {@link GetPipelineExecutionCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link PipelineExecutionNotFoundException} (client fault)
|
|
35
|
+
* <p>The pipeline execution was specified in an invalid format or cannot be found, or an
|
|
36
|
+
* execution ID does not belong to the specified pipeline. </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
39
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
34
45
|
*/
|
|
35
46
|
export declare class GetPipelineExecutionCommand extends $Command<GetPipelineExecutionCommandInput, GetPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
36
47
|
readonly input: GetPipelineExecutionCommandInput;
|
|
@@ -35,6 +35,13 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _
|
|
|
35
35
|
* @see {@link GetPipelineStateCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
39
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
38
45
|
*/
|
|
39
46
|
export declare class GetPipelineStateCommand extends $Command<GetPipelineStateCommandInput, GetPipelineStateCommandOutput, CodePipelineClientResolvedConfig> {
|
|
40
47
|
readonly input: GetPipelineStateCommandInput;
|
|
@@ -36,6 +36,19 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
|
|
|
36
36
|
* @see {@link GetThirdPartyJobDetailsCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
40
|
+
* <p>The client token was specified in an invalid format</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidJobException} (client fault)
|
|
43
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
46
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
39
52
|
*/
|
|
40
53
|
export declare class GetThirdPartyJobDetailsCommand extends $Command<GetThirdPartyJobDetailsCommandInput, GetThirdPartyJobDetailsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
41
54
|
readonly input: GetThirdPartyJobDetailsCommandInput;
|
|
@@ -29,6 +29,21 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO
|
|
|
29
29
|
* @see {@link ListActionExecutionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
34
|
+
* you provide is the token returned by a previous call.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link PipelineExecutionNotFoundException} (client fault)
|
|
37
|
+
* <p>The pipeline execution was specified in an invalid format or cannot be found, or an
|
|
38
|
+
* execution ID does not belong to the specified pipeline. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
41
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
32
47
|
*/
|
|
33
48
|
export declare class ListActionExecutionsCommand extends $Command<ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
34
49
|
readonly input: ListActionExecutionsCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
|
|
|
30
30
|
* @see {@link ListActionTypesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
34
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
35
|
+
* you provide is the token returned by a previous call.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ValidationException} (client fault)
|
|
38
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class ListActionTypesCommand extends $Command<ListActionTypesCommandInput, ListActionTypesCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
43
|
readonly input: ListActionTypesCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti
|
|
|
29
29
|
* @see {@link ListPipelineExecutionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
34
|
+
* you provide is the token returned by a previous call.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
37
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class ListPipelineExecutionsCommand extends $Command<ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
34
45
|
readonly input: ListPipelineExecutionsCommandInput;
|
|
@@ -29,6 +29,14 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
29
29
|
* @see {@link ListPipelinesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
34
|
+
* you provide is the token returned by a previous call.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ValidationException} (client fault)
|
|
37
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
32
40
|
*/
|
|
33
41
|
export declare class ListPipelinesCommand extends $Command<ListPipelinesCommandInput, ListPipelinesCommandOutput, CodePipelineClientResolvedConfig> {
|
|
34
42
|
readonly input: ListPipelinesCommandInput;
|
|
@@ -30,6 +30,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
30
30
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
34
|
+
* <p>The specified resource ARN is invalid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
37
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
38
|
+
* you provide is the token returned by a previous call.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>The resource was specified in an invalid format.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
33
47
|
*/
|
|
34
48
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
49
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -31,6 +31,14 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat
|
|
|
31
31
|
* @see {@link ListWebhooksCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
35
|
+
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
36
|
+
* you provide is the token returned by a previous call.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
34
42
|
*/
|
|
35
43
|
export declare class ListWebhooksCommand extends $Command<ListWebhooksCommandInput, ListWebhooksCommandOutput, CodePipelineClientResolvedConfig> {
|
|
36
44
|
readonly input: ListWebhooksCommandInput;
|
|
@@ -38,6 +38,13 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
|
|
|
38
38
|
* @see {@link PollForJobsCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link ActionTypeNotFoundException} (client fault)
|
|
42
|
+
* <p>The specified action type cannot be found.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
41
48
|
*/
|
|
42
49
|
export declare class PollForJobsCommand extends $Command<PollForJobsCommandInput, PollForJobsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
43
50
|
readonly input: PollForJobsCommandInput;
|
|
@@ -35,6 +35,13 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
|
|
|
35
35
|
* @see {@link PollForThirdPartyJobsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ActionTypeNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified action type cannot be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
38
45
|
*/
|
|
39
46
|
export declare class PollForThirdPartyJobsCommand extends $Command<PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
40
47
|
readonly input: PollForThirdPartyJobsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput,
|
|
|
29
29
|
* @see {@link PutActionRevisionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ActionNotFoundException} (client fault)
|
|
33
|
+
* <p>The specified action cannot be found.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
36
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link StageNotFoundException} (client fault)
|
|
39
|
+
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class PutActionRevisionCommand extends $Command<PutActionRevisionCommandInput, PutActionRevisionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
34
47
|
readonly input: PutActionRevisionCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput,
|
|
|
30
30
|
* @see {@link PutApprovalResultCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ActionNotFoundException} (client fault)
|
|
34
|
+
* <p>The specified action cannot be found.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ApprovalAlreadyCompletedException} (client fault)
|
|
37
|
+
* <p>The approval action has already been approved or rejected.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidApprovalTokenException} (client fault)
|
|
40
|
+
* <p>The approval request already received a response or has expired.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
43
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link StageNotFoundException} (client fault)
|
|
46
|
+
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class PutApprovalResultCommand extends $Command<PutApprovalResultCommandInput, PutApprovalResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
54
|
readonly input: PutApprovalResultCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link PutJobFailureResultCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidJobStateException} (client fault)
|
|
34
|
+
* <p>The job state was specified in an invalid format.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
37
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class PutJobFailureResultCommand extends $Command<PutJobFailureResultCommandInput, PutJobFailureResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
45
|
readonly input: PutJobFailureResultCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link PutJobSuccessResultCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidJobStateException} (client fault)
|
|
34
|
+
* <p>The job state was specified in an invalid format.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
37
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link OutputVariablesSizeExceededException} (client fault)
|
|
40
|
+
* <p>Exceeded the total size limit for all variables in the pipeline.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class PutJobSuccessResultCommand extends $Command<PutJobSuccessResultCommandInput, PutJobSuccessResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
48
|
readonly input: PutJobSuccessResultCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe
|
|
|
30
30
|
* @see {@link PutThirdPartyJobFailureResultCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
34
|
+
* <p>The client token was specified in an invalid format</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidJobStateException} (client fault)
|
|
37
|
+
* <p>The job state was specified in an invalid format.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
40
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class PutThirdPartyJobFailureResultCommand extends $Command<PutThirdPartyJobFailureResultCommandInput, PutThirdPartyJobFailureResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
48
|
readonly input: PutThirdPartyJobFailureResultCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe
|
|
|
30
30
|
* @see {@link PutThirdPartyJobSuccessResultCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
34
|
+
* <p>The client token was specified in an invalid format</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidJobStateException} (client fault)
|
|
37
|
+
* <p>The job state was specified in an invalid format.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link JobNotFoundException} (client fault)
|
|
40
|
+
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class PutThirdPartyJobSuccessResultCommand extends $Command<PutThirdPartyJobSuccessResultCommandInput, PutThirdPartyJobSuccessResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
48
|
readonly input: PutThirdPartyJobSuccessResultCommandInput;
|
|
@@ -35,6 +35,32 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea
|
|
|
35
35
|
* @see {@link PutWebhookCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
39
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidTagsException} (client fault)
|
|
42
|
+
* <p>The specified resource tags are invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidWebhookAuthenticationParametersException} (client fault)
|
|
45
|
+
* <p>The specified authentication type is in an invalid format.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidWebhookFilterPatternException} (client fault)
|
|
48
|
+
* <p>The specified event filter rule is in an invalid format.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
51
|
+
* <p>The number of pipelines associated with the AWS account has exceeded the limit
|
|
52
|
+
* allowed for the account.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
55
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
58
|
+
* <p>The tags limit for a resource has been exceeded.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ValidationException} (client fault)
|
|
61
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
38
64
|
*/
|
|
39
65
|
export declare class PutWebhookCommand extends $Command<PutWebhookCommandInput, PutWebhookCommandOutput, CodePipelineClientResolvedConfig> {
|
|
40
66
|
readonly input: PutWebhookCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebh
|
|
|
30
30
|
* @see {@link RegisterWebhookWithThirdPartyCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ValidationException} (client fault)
|
|
34
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link WebhookNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
38
|
+
* found.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class RegisterWebhookWithThirdPartyCommand extends $Command<RegisterWebhookWithThirdPartyCommandInput, RegisterWebhookWithThirdPartyCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
43
|
readonly input: RegisterWebhookWithThirdPartyCommandInput;
|
|
@@ -32,6 +32,29 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut
|
|
|
32
32
|
* @see {@link RetryStageExecutionCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>Your request cannot be handled because the pipeline is busy handling ongoing
|
|
37
|
+
* activities. Try again later.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link NotLatestPipelineExecutionException} (client fault)
|
|
40
|
+
* <p>The stage has failed in a later run of the pipeline and the pipelineExecutionId
|
|
41
|
+
* associated with the request is out of date.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
44
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link StageNotFoundException} (client fault)
|
|
47
|
+
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link StageNotRetryableException} (client fault)
|
|
50
|
+
* <p>Unable to retry. The pipeline structure or stage state might have changed while
|
|
51
|
+
* actions awaited retry, or the stage contains no failed
|
|
52
|
+
* actions.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
35
58
|
*/
|
|
36
59
|
export declare class RetryStageExecutionCommand extends $Command<RetryStageExecutionCommandInput, RetryStageExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
37
60
|
readonly input: RetryStageExecutionCommandInput;
|
|
@@ -30,6 +30,17 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut
|
|
|
30
30
|
* @see {@link StartPipelineExecutionCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConflictException} (client fault)
|
|
34
|
+
* <p>Your request cannot be handled because the pipeline is busy handling ongoing
|
|
35
|
+
* activities. Try again later.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
38
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
33
44
|
*/
|
|
34
45
|
export declare class StartPipelineExecutionCommand extends $Command<StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
46
|
readonly input: StartPipelineExecutionCommandInput;
|
|
@@ -34,6 +34,28 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio
|
|
|
34
34
|
* @see {@link StopPipelineExecutionCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>Your request cannot be handled because the pipeline is busy handling ongoing
|
|
39
|
+
* activities. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link DuplicatedStopRequestException} (client fault)
|
|
42
|
+
* <p>The pipeline execution is already in a <code>Stopping</code> state. If you already
|
|
43
|
+
* chose to stop and wait, you cannot make that request again. You can choose to stop and
|
|
44
|
+
* abandon now, but be aware that this option can lead to failed tasks or out of sequence
|
|
45
|
+
* tasks. If you already chose to stop and abandon, you cannot make that request
|
|
46
|
+
* again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link PipelineExecutionNotStoppableException} (client fault)
|
|
49
|
+
* <p>Unable to stop the pipeline execution. The execution might already be in a
|
|
50
|
+
* <code>Stopped</code> state, or it might no longer be in progress.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link PipelineNotFoundException} (client fault)
|
|
53
|
+
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ValidationException} (client fault)
|
|
56
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
37
59
|
*/
|
|
38
60
|
export declare class StopPipelineExecutionCommand extends $Command<StopPipelineExecutionCommandInput, StopPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
39
61
|
readonly input: StopPipelineExecutionCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
30
30
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
34
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
37
|
+
* <p>The specified resource ARN is invalid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidTagsException} (client fault)
|
|
40
|
+
* <p>The specified resource tags are invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The resource was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
46
|
+
* <p>The tags limit for a resource has been exceeded.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
35
54
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
33
|
+
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
36
|
+
* <p>The specified resource ARN is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidTagsException} (client fault)
|
|
39
|
+
* <p>The specified resource tags are invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The resource was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
34
50
|
readonly input: UntagResourceCommandInput;
|
|
@@ -32,6 +32,16 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* @see {@link UpdateActionTypeCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ActionTypeNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified action type cannot be found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link RequestFailedException} (client fault)
|
|
39
|
+
* <p>The request failed because of an unknown error, exception, or failure.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
35
45
|
*/
|
|
36
46
|
export declare class UpdateActionTypeCommand extends $Command<UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
37
47
|
readonly input: UpdateActionTypeCommandInput;
|
|
@@ -32,6 +32,26 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
|
|
|
32
32
|
* @see {@link UpdatePipelineCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InvalidActionDeclarationException} (client fault)
|
|
36
|
+
* <p>The action declaration was specified in an invalid format.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidBlockerDeclarationException} (client fault)
|
|
39
|
+
* <p>Reserved for future use.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidStageDeclarationException} (client fault)
|
|
42
|
+
* <p>The stage declaration was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidStructureException} (client fault)
|
|
45
|
+
* <p>The structure was specified in an invalid format.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <p>The number of pipelines associated with the AWS account has exceeded the limit
|
|
49
|
+
* allowed for the account.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>The validation was specified in an invalid format.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
35
55
|
*/
|
|
36
56
|
export declare class UpdatePipelineCommand extends $Command<UpdatePipelineCommandInput, UpdatePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
37
57
|
readonly input: UpdatePipelineCommandInput;
|
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.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
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-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|