Skip to content

Commit 3d482c5

Browse files
author
awstools
committed
feat(client-codepipeline): AWS CodePipeline introduces a Compute category
1 parent 27f462b commit 3d482c5

19 files changed

+38
-19
lines changed

clients/client-codepipeline/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ action categories are:</p>
115115
<li>
116116
<p>Invoke</p>
117117
</li>
118+
<li>
119+
<p>Compute</p>
120+
</li>
118121
</ul>
119122
<p>Pipelines also include <i>transitions</i>, which allow the transition
120123
of artifacts from one stage to the next in a pipeline after the actions in one stage

clients/client-codepipeline/src/CodePipeline.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,6 +1010,9 @@ export interface CodePipeline {
10101010
* <li>
10111011
* <p>Invoke</p>
10121012
* </li>
1013+
* <li>
1014+
* <p>Compute</p>
1015+
* </li>
10131016
* </ul>
10141017
* <p>Pipelines also include <i>transitions</i>, which allow the transition
10151018
* of artifacts from one stage to the next in a pipeline after the actions in one stage

clients/client-codepipeline/src/CodePipelineClient.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,9 @@ export interface CodePipelineClientResolvedConfig extends CodePipelineClientReso
546546
* <li>
547547
* <p>Invoke</p>
548548
* </li>
549+
* <li>
550+
* <p>Compute</p>
551+
* </li>
549552
* </ul>
550553
* <p>Pipelines also include <i>transitions</i>, which allow the transition
551554
* of artifacts from one stage to the next in a pipeline after the actions in one stage

clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
3737
* // const { CodePipelineClient, CreateCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
3838
* const client = new CodePipelineClient(config);
3939
* const input = { // CreateCustomActionTypeInput
40-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
40+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
4141
* provider: "STRING_VALUE", // required
4242
* version: "STRING_VALUE", // required
4343
* settings: { // ActionTypeSettings
@@ -77,7 +77,7 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
7777
* // { // CreateCustomActionTypeOutput
7878
* // actionType: { // ActionType
7979
* // id: { // ActionTypeId
80-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
80+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
8181
* // owner: "AWS" || "ThirdParty" || "Custom", // required
8282
* // provider: "STRING_VALUE", // required
8383
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/CreatePipelineCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
7676
* { // ActionDeclaration
7777
* name: "STRING_VALUE", // required
7878
* actionTypeId: { // ActionTypeId
79-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
79+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
8080
* owner: "AWS" || "ThirdParty" || "Custom", // required
8181
* provider: "STRING_VALUE", // required
8282
* version: "STRING_VALUE", // required
@@ -314,7 +314,7 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
314314
* // { // ActionDeclaration
315315
* // name: "STRING_VALUE", // required
316316
* // actionTypeId: { // ActionTypeId
317-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
317+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
318318
* // owner: "AWS" || "ThirdParty" || "Custom", // required
319319
* // provider: "STRING_VALUE", // required
320320
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {}
4444
* // const { CodePipelineClient, DeleteCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
4545
* const client = new CodePipelineClient(config);
4646
* const input = { // DeleteCustomActionTypeInput
47-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
47+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
4848
* provider: "STRING_VALUE", // required
4949
* version: "STRING_VALUE", // required
5050
* };

clients/client-codepipeline/src/commands/GetActionTypeCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
3838
* // const { CodePipelineClient, GetActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
3939
* const client = new CodePipelineClient(config);
4040
* const input = { // GetActionTypeInput
41-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
41+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
4242
* owner: "STRING_VALUE", // required
4343
* provider: "STRING_VALUE", // required
4444
* version: "STRING_VALUE", // required
@@ -67,7 +67,7 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
6767
* // jobTimeout: Number("int"),
6868
* // },
6969
* // id: { // ActionTypeIdentifier
70-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
70+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
7171
* // owner: "STRING_VALUE", // required
7272
* // provider: "STRING_VALUE", // required
7373
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
5151
* // id: "STRING_VALUE",
5252
* // data: { // JobData
5353
* // actionTypeId: { // ActionTypeId
54-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
54+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
5555
* // owner: "AWS" || "ThirdParty" || "Custom", // required
5656
* // provider: "STRING_VALUE", // required
5757
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/GetPipelineCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
7878
* // { // ActionDeclaration
7979
* // name: "STRING_VALUE", // required
8080
* // actionTypeId: { // ActionTypeId
81-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
81+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
8282
* // owner: "AWS" || "ThirdParty" || "Custom", // required
8383
* // provider: "STRING_VALUE", // required
8484
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
5757
* // id: "STRING_VALUE",
5858
* // data: { // ThirdPartyJobData
5959
* // actionTypeId: { // ActionTypeId
60-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
60+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
6161
* // owner: "AWS" || "ThirdParty" || "Custom", // required
6262
* // provider: "STRING_VALUE", // required
6363
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO
6363
* // status: "InProgress" || "Abandoned" || "Succeeded" || "Failed",
6464
* // input: { // ActionExecutionInput
6565
* // actionTypeId: { // ActionTypeId
66-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
66+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
6767
* // owner: "AWS" || "ThirdParty" || "Custom", // required
6868
* // provider: "STRING_VALUE", // required
6969
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/ListActionTypesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
4747
* // actionTypes: [ // ActionTypeList // required
4848
* // { // ActionType
4949
* // id: { // ActionTypeId
50-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
50+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
5151
* // owner: "AWS" || "ThirdParty" || "Custom", // required
5252
* // provider: "STRING_VALUE", // required
5353
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/PollForJobsCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
4646
* const client = new CodePipelineClient(config);
4747
* const input = { // PollForJobsInput
4848
* actionTypeId: { // ActionTypeId
49-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
49+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
5050
* owner: "AWS" || "ThirdParty" || "Custom", // required
5151
* provider: "STRING_VALUE", // required
5252
* version: "STRING_VALUE", // required
@@ -64,7 +64,7 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
6464
* // id: "STRING_VALUE",
6565
* // data: { // JobData
6666
* // actionTypeId: { // ActionTypeId
67-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
67+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
6868
* // owner: "AWS" || "ThirdParty" || "Custom", // required
6969
* // provider: "STRING_VALUE", // required
7070
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
4343
* const client = new CodePipelineClient(config);
4444
* const input = { // PollForThirdPartyJobsInput
4545
* actionTypeId: { // ActionTypeId
46-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
46+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
4747
* owner: "AWS" || "ThirdParty" || "Custom", // required
4848
* provider: "STRING_VALUE", // required
4949
* version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {}
6060
* jobTimeout: Number("int"),
6161
* },
6262
* id: { // ActionTypeIdentifier
63-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
63+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
6464
* owner: "STRING_VALUE", // required
6565
* provider: "STRING_VALUE", // required
6666
* version: "STRING_VALUE", // required

clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
7373
* { // ActionDeclaration
7474
* name: "STRING_VALUE", // required
7575
* actionTypeId: { // ActionTypeId
76-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
76+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
7777
* owner: "AWS" || "ThirdParty" || "Custom", // required
7878
* provider: "STRING_VALUE", // required
7979
* version: "STRING_VALUE", // required
@@ -305,7 +305,7 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
305305
* // { // ActionDeclaration
306306
* // name: "STRING_VALUE", // required
307307
* // actionTypeId: { // ActionTypeId
308-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
308+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
309309
* // owner: "AWS" || "ThirdParty" || "Custom", // required
310310
* // provider: "STRING_VALUE", // required
311311
* // version: "STRING_VALUE", // required

clients/client-codepipeline/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@
109109
* <li>
110110
* <p>Invoke</p>
111111
* </li>
112+
* <li>
113+
* <p>Compute</p>
114+
* </li>
112115
* </ul>
113116
* <p>Pipelines also include <i>transitions</i>, which allow the transition
114117
* of artifacts from one stage to the next in a pipeline after the actions in one stage

clients/client-codepipeline/src/models/models_0.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ export class InvalidClientTokenException extends __BaseException {
181181
export const ActionCategory = {
182182
Approval: "Approval",
183183
Build: "Build",
184+
Compute: "Compute",
184185
Deploy: "Deploy",
185186
Invoke: "Invoke",
186187
Source: "Source",

0 commit comments

Comments
 (0)