@aws-sdk/client-codepipeline 3.321.1 → 3.326.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 +6 -0
- package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +44 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +73 -0
- package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +4 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +4 -0
- package/dist-types/commands/DisableStageTransitionCommand.d.ts +4 -0
- package/dist-types/commands/EnableStageTransitionCommand.d.ts +4 -0
- package/dist-types/commands/GetActionTypeCommand.d.ts +61 -0
- package/dist-types/commands/GetJobDetailsCommand.d.ts +70 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +72 -0
- package/dist-types/commands/GetPipelineExecutionCommand.d.ts +22 -0
- package/dist-types/commands/GetPipelineStateCommand.d.ts +55 -0
- package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +70 -0
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +63 -0
- package/dist-types/commands/ListActionTypesCommand.d.ts +41 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +29 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +37 -0
- package/dist-types/commands/PollForJobsCommand.d.ts +73 -0
- package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +11 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +7 -0
- package/dist-types/commands/PutApprovalResultCommand.d.ts +6 -0
- package/dist-types/commands/PutJobFailureResultCommand.d.ts +4 -0
- package/dist-types/commands/PutJobSuccessResultCommand.d.ts +4 -0
- package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +4 -0
- package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +4 -0
- package/dist-types/commands/PutWebhookCommand.d.ts +34 -0
- package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +4 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateActionTypeCommand.d.ts +4 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +67 -0
- package/package.json +16 -16
|
@@ -37,6 +37,10 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new RetryStageExecutionCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // RetryStageExecutionOutput
|
|
41
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
40
44
|
* ```
|
|
41
45
|
*
|
|
42
46
|
* @param RetryStageExecutionCommandInput - {@link RetryStageExecutionCommandInput}
|
|
@@ -67,6 +71,8 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut
|
|
|
67
71
|
* @throws {@link ValidationException} (client fault)
|
|
68
72
|
* <p>The validation was specified in an invalid format.</p>
|
|
69
73
|
*
|
|
74
|
+
* @throws {@link CodePipelineServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
70
76
|
*
|
|
71
77
|
*/
|
|
72
78
|
export declare class RetryStageExecutionCommand extends $Command<RetryStageExecutionCommandInput, RetryStageExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new StartPipelineExecutionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // StartPipelineExecutionOutput
|
|
37
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param StartPipelineExecutionCommandInput - {@link StartPipelineExecutionCommandInput}
|
|
@@ -51,6 +55,8 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut
|
|
|
51
55
|
* @throws {@link ValidationException} (client fault)
|
|
52
56
|
* <p>The validation was specified in an invalid format.</p>
|
|
53
57
|
*
|
|
58
|
+
* @throws {@link CodePipelineServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
54
60
|
*
|
|
55
61
|
*/
|
|
56
62
|
export declare class StartPipelineExecutionCommand extends $Command<StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -39,6 +39,10 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new StopPipelineExecutionCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // StopPipelineExecutionOutput
|
|
43
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
42
46
|
* ```
|
|
43
47
|
*
|
|
44
48
|
* @param StopPipelineExecutionCommandInput - {@link StopPipelineExecutionCommandInput}
|
|
@@ -68,6 +72,8 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio
|
|
|
68
72
|
* @throws {@link ValidationException} (client fault)
|
|
69
73
|
* <p>The validation was specified in an invalid format.</p>
|
|
70
74
|
*
|
|
75
|
+
* @throws {@link CodePipelineServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
71
77
|
*
|
|
72
78
|
*/
|
|
73
79
|
export declare class StopPipelineExecutionCommand extends $Command<StopPipelineExecutionCommandInput, StopPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new TagResourceCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -64,6 +66,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
64
66
|
* @throws {@link ValidationException} (client fault)
|
|
65
67
|
* <p>The validation was specified in an invalid format.</p>
|
|
66
68
|
*
|
|
69
|
+
* @throws {@link CodePipelineServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
67
71
|
*
|
|
68
72
|
*/
|
|
69
73
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>The validation was specified in an invalid format.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link CodePipelineServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -89,6 +89,8 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
|
|
|
89
89
|
* };
|
|
90
90
|
* const command = new UpdateActionTypeCommand(input);
|
|
91
91
|
* const response = await client.send(command);
|
|
92
|
+
* // {};
|
|
93
|
+
*
|
|
92
94
|
* ```
|
|
93
95
|
*
|
|
94
96
|
* @param UpdateActionTypeCommandInput - {@link UpdateActionTypeCommandInput}
|
|
@@ -106,6 +108,8 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
|
|
|
106
108
|
* @throws {@link ValidationException} (client fault)
|
|
107
109
|
* <p>The validation was specified in an invalid format.</p>
|
|
108
110
|
*
|
|
111
|
+
* @throws {@link CodePipelineServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
109
113
|
*
|
|
110
114
|
*/
|
|
111
115
|
export declare class UpdateActionTypeCommand extends $Command<UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -95,6 +95,71 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
|
|
|
95
95
|
* };
|
|
96
96
|
* const command = new UpdatePipelineCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
+
* // { // UpdatePipelineOutput
|
|
99
|
+
* // pipeline: { // PipelineDeclaration
|
|
100
|
+
* // name: "STRING_VALUE", // required
|
|
101
|
+
* // roleArn: "STRING_VALUE", // required
|
|
102
|
+
* // artifactStore: { // ArtifactStore
|
|
103
|
+
* // type: "STRING_VALUE", // required
|
|
104
|
+
* // location: "STRING_VALUE", // required
|
|
105
|
+
* // encryptionKey: { // EncryptionKey
|
|
106
|
+
* // id: "STRING_VALUE", // required
|
|
107
|
+
* // type: "STRING_VALUE", // required
|
|
108
|
+
* // },
|
|
109
|
+
* // },
|
|
110
|
+
* // artifactStores: { // ArtifactStoreMap
|
|
111
|
+
* // "<keys>": {
|
|
112
|
+
* // type: "STRING_VALUE", // required
|
|
113
|
+
* // location: "STRING_VALUE", // required
|
|
114
|
+
* // encryptionKey: {
|
|
115
|
+
* // id: "STRING_VALUE", // required
|
|
116
|
+
* // type: "STRING_VALUE", // required
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // },
|
|
120
|
+
* // stages: [ // PipelineStageDeclarationList // required
|
|
121
|
+
* // { // StageDeclaration
|
|
122
|
+
* // name: "STRING_VALUE", // required
|
|
123
|
+
* // blockers: [ // StageBlockerDeclarationList
|
|
124
|
+
* // { // BlockerDeclaration
|
|
125
|
+
* // name: "STRING_VALUE", // required
|
|
126
|
+
* // type: "STRING_VALUE", // required
|
|
127
|
+
* // },
|
|
128
|
+
* // ],
|
|
129
|
+
* // actions: [ // StageActionDeclarationList // required
|
|
130
|
+
* // { // ActionDeclaration
|
|
131
|
+
* // name: "STRING_VALUE", // required
|
|
132
|
+
* // actionTypeId: { // ActionTypeId
|
|
133
|
+
* // category: "STRING_VALUE", // required
|
|
134
|
+
* // owner: "STRING_VALUE", // required
|
|
135
|
+
* // provider: "STRING_VALUE", // required
|
|
136
|
+
* // version: "STRING_VALUE", // required
|
|
137
|
+
* // },
|
|
138
|
+
* // runOrder: Number("int"),
|
|
139
|
+
* // configuration: { // ActionConfigurationMap
|
|
140
|
+
* // "<keys>": "STRING_VALUE",
|
|
141
|
+
* // },
|
|
142
|
+
* // outputArtifacts: [ // OutputArtifactList
|
|
143
|
+
* // { // OutputArtifact
|
|
144
|
+
* // name: "STRING_VALUE", // required
|
|
145
|
+
* // },
|
|
146
|
+
* // ],
|
|
147
|
+
* // inputArtifacts: [ // InputArtifactList
|
|
148
|
+
* // { // InputArtifact
|
|
149
|
+
* // name: "STRING_VALUE", // required
|
|
150
|
+
* // },
|
|
151
|
+
* // ],
|
|
152
|
+
* // roleArn: "STRING_VALUE",
|
|
153
|
+
* // region: "STRING_VALUE",
|
|
154
|
+
* // namespace: "STRING_VALUE",
|
|
155
|
+
* // },
|
|
156
|
+
* // ],
|
|
157
|
+
* // },
|
|
158
|
+
* // ],
|
|
159
|
+
* // version: Number("int"),
|
|
160
|
+
* // },
|
|
161
|
+
* // };
|
|
162
|
+
*
|
|
98
163
|
* ```
|
|
99
164
|
*
|
|
100
165
|
* @param UpdatePipelineCommandInput - {@link UpdatePipelineCommandInput}
|
|
@@ -122,6 +187,8 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
|
|
|
122
187
|
* @throws {@link ValidationException} (client fault)
|
|
123
188
|
* <p>The validation was specified in an invalid format.</p>
|
|
124
189
|
*
|
|
190
|
+
* @throws {@link CodePipelineServiceException}
|
|
191
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
125
192
|
*
|
|
126
193
|
*/
|
|
127
194
|
export declare class UpdatePipelineCommand extends $Command<UpdatePipelineCommandInput, UpdatePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
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.326.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",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|