@aws-sdk/client-codepipeline 3.667.0 → 3.668.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/README.md +3 -0
- package/dist-cjs/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/CodePipeline.d.ts +3 -0
- package/dist-types/CodePipelineClient.d.ts +3 -0
- package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +2 -2
- package/dist-types/commands/CreatePipelineCommand.d.ts +2 -2
- package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetActionTypeCommand.d.ts +2 -2
- package/dist-types/commands/GetJobDetailsCommand.d.ts +1 -1
- package/dist-types/commands/GetPipelineCommand.d.ts +1 -1
- package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +1 -1
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListActionTypesCommand.d.ts +1 -1
- package/dist-types/commands/PollForJobsCommand.d.ts +2 -2
- package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateActionTypeCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePipelineCommand.d.ts +2 -2
- package/dist-types/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -115,6 +115,9 @@ action categories are:</p>
|
|
|
115
115
|
<li>
|
|
116
116
|
<p>Invoke</p>
|
|
117
117
|
</li>
|
|
118
|
+
<li>
|
|
119
|
+
<p>Compute</p>
|
|
120
|
+
</li>
|
|
118
121
|
</ul>
|
|
119
122
|
<p>Pipelines also include <i>transitions</i>, which allow the transition
|
|
120
123
|
of artifacts from one stage to the next in a pipeline after the actions in one stage
|
package/dist-cjs/index.js
CHANGED
|
@@ -418,6 +418,9 @@ export interface CodePipeline {
|
|
|
418
418
|
* <li>
|
|
419
419
|
* <p>Invoke</p>
|
|
420
420
|
* </li>
|
|
421
|
+
* <li>
|
|
422
|
+
* <p>Compute</p>
|
|
423
|
+
* </li>
|
|
421
424
|
* </ul>
|
|
422
425
|
* <p>Pipelines also include <i>transitions</i>, which allow the transition
|
|
423
426
|
* of artifacts from one stage to the next in a pipeline after the actions in one stage
|
|
@@ -302,6 +302,9 @@ export interface CodePipelineClientResolvedConfig extends CodePipelineClientReso
|
|
|
302
302
|
* <li>
|
|
303
303
|
* <p>Invoke</p>
|
|
304
304
|
* </li>
|
|
305
|
+
* <li>
|
|
306
|
+
* <p>Compute</p>
|
|
307
|
+
* </li>
|
|
305
308
|
* </ul>
|
|
306
309
|
* <p>Pipelines also include <i>transitions</i>, which allow the transition
|
|
307
310
|
* of artifacts from one stage to the next in a pipeline after the actions in one stage
|
|
@@ -36,7 +36,7 @@ declare const CreateCustomActionTypeCommand_base: {
|
|
|
36
36
|
* // const { CodePipelineClient, CreateCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
37
37
|
* const client = new CodePipelineClient(config);
|
|
38
38
|
* const input = { // CreateCustomActionTypeInput
|
|
39
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
39
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
40
40
|
* provider: "STRING_VALUE", // required
|
|
41
41
|
* version: "STRING_VALUE", // required
|
|
42
42
|
* settings: { // ActionTypeSettings
|
|
@@ -76,7 +76,7 @@ declare const CreateCustomActionTypeCommand_base: {
|
|
|
76
76
|
* // { // CreateCustomActionTypeOutput
|
|
77
77
|
* // actionType: { // ActionType
|
|
78
78
|
* // id: { // ActionTypeId
|
|
79
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
79
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
80
80
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
81
81
|
* // provider: "STRING_VALUE", // required
|
|
82
82
|
* // version: "STRING_VALUE", // required
|
|
@@ -75,7 +75,7 @@ declare const CreatePipelineCommand_base: {
|
|
|
75
75
|
* { // ActionDeclaration
|
|
76
76
|
* name: "STRING_VALUE", // required
|
|
77
77
|
* actionTypeId: { // ActionTypeId
|
|
78
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
78
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
79
79
|
* owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
80
80
|
* provider: "STRING_VALUE", // required
|
|
81
81
|
* version: "STRING_VALUE", // required
|
|
@@ -313,7 +313,7 @@ declare const CreatePipelineCommand_base: {
|
|
|
313
313
|
* // { // ActionDeclaration
|
|
314
314
|
* // name: "STRING_VALUE", // required
|
|
315
315
|
* // actionTypeId: { // ActionTypeId
|
|
316
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
316
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
317
317
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
318
318
|
* // provider: "STRING_VALUE", // required
|
|
319
319
|
* // version: "STRING_VALUE", // required
|
|
@@ -43,7 +43,7 @@ declare const DeleteCustomActionTypeCommand_base: {
|
|
|
43
43
|
* // const { CodePipelineClient, DeleteCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
44
44
|
* const client = new CodePipelineClient(config);
|
|
45
45
|
* const input = { // DeleteCustomActionTypeInput
|
|
46
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
46
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
47
47
|
* provider: "STRING_VALUE", // required
|
|
48
48
|
* version: "STRING_VALUE", // required
|
|
49
49
|
* };
|
|
@@ -37,7 +37,7 @@ declare const GetActionTypeCommand_base: {
|
|
|
37
37
|
* // const { CodePipelineClient, GetActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
38
38
|
* const client = new CodePipelineClient(config);
|
|
39
39
|
* const input = { // GetActionTypeInput
|
|
40
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
40
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
41
41
|
* owner: "STRING_VALUE", // required
|
|
42
42
|
* provider: "STRING_VALUE", // required
|
|
43
43
|
* version: "STRING_VALUE", // required
|
|
@@ -66,7 +66,7 @@ declare const GetActionTypeCommand_base: {
|
|
|
66
66
|
* // jobTimeout: Number("int"),
|
|
67
67
|
* // },
|
|
68
68
|
* // id: { // ActionTypeIdentifier
|
|
69
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
69
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
70
70
|
* // owner: "STRING_VALUE", // required
|
|
71
71
|
* // provider: "STRING_VALUE", // required
|
|
72
72
|
* // version: "STRING_VALUE", // required
|
|
@@ -50,7 +50,7 @@ declare const GetJobDetailsCommand_base: {
|
|
|
50
50
|
* // id: "STRING_VALUE",
|
|
51
51
|
* // data: { // JobData
|
|
52
52
|
* // actionTypeId: { // ActionTypeId
|
|
53
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
53
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
54
54
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
55
55
|
* // provider: "STRING_VALUE", // required
|
|
56
56
|
* // version: "STRING_VALUE", // required
|
|
@@ -77,7 +77,7 @@ declare const GetPipelineCommand_base: {
|
|
|
77
77
|
* // { // ActionDeclaration
|
|
78
78
|
* // name: "STRING_VALUE", // required
|
|
79
79
|
* // actionTypeId: { // ActionTypeId
|
|
80
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
80
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
81
81
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
82
82
|
* // provider: "STRING_VALUE", // required
|
|
83
83
|
* // version: "STRING_VALUE", // required
|
|
@@ -52,7 +52,7 @@ declare const GetThirdPartyJobDetailsCommand_base: {
|
|
|
52
52
|
* // id: "STRING_VALUE",
|
|
53
53
|
* // data: { // ThirdPartyJobData
|
|
54
54
|
* // actionTypeId: { // ActionTypeId
|
|
55
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
55
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
56
56
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
57
57
|
* // provider: "STRING_VALUE", // required
|
|
58
58
|
* // version: "STRING_VALUE", // required
|
|
@@ -62,7 +62,7 @@ declare const ListActionExecutionsCommand_base: {
|
|
|
62
62
|
* // status: "InProgress" || "Abandoned" || "Succeeded" || "Failed",
|
|
63
63
|
* // input: { // ActionExecutionInput
|
|
64
64
|
* // actionTypeId: { // ActionTypeId
|
|
65
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
65
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
66
66
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
67
67
|
* // provider: "STRING_VALUE", // required
|
|
68
68
|
* // version: "STRING_VALUE", // required
|
|
@@ -46,7 +46,7 @@ declare const ListActionTypesCommand_base: {
|
|
|
46
46
|
* // actionTypes: [ // ActionTypeList // required
|
|
47
47
|
* // { // ActionType
|
|
48
48
|
* // id: { // ActionTypeId
|
|
49
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
49
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
50
50
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
51
51
|
* // provider: "STRING_VALUE", // required
|
|
52
52
|
* // version: "STRING_VALUE", // required
|
|
@@ -45,7 +45,7 @@ declare const PollForJobsCommand_base: {
|
|
|
45
45
|
* const client = new CodePipelineClient(config);
|
|
46
46
|
* const input = { // PollForJobsInput
|
|
47
47
|
* actionTypeId: { // ActionTypeId
|
|
48
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
48
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
49
49
|
* owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
50
50
|
* provider: "STRING_VALUE", // required
|
|
51
51
|
* version: "STRING_VALUE", // required
|
|
@@ -63,7 +63,7 @@ declare const PollForJobsCommand_base: {
|
|
|
63
63
|
* // id: "STRING_VALUE",
|
|
64
64
|
* // data: { // JobData
|
|
65
65
|
* // actionTypeId: { // ActionTypeId
|
|
66
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
66
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
67
67
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
68
68
|
* // provider: "STRING_VALUE", // required
|
|
69
69
|
* // version: "STRING_VALUE", // required
|
|
@@ -42,7 +42,7 @@ declare const PollForThirdPartyJobsCommand_base: {
|
|
|
42
42
|
* const client = new CodePipelineClient(config);
|
|
43
43
|
* const input = { // PollForThirdPartyJobsInput
|
|
44
44
|
* actionTypeId: { // ActionTypeId
|
|
45
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
45
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
46
46
|
* owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
47
47
|
* provider: "STRING_VALUE", // required
|
|
48
48
|
* version: "STRING_VALUE", // required
|
|
@@ -59,7 +59,7 @@ declare const UpdateActionTypeCommand_base: {
|
|
|
59
59
|
* jobTimeout: Number("int"),
|
|
60
60
|
* },
|
|
61
61
|
* id: { // ActionTypeIdentifier
|
|
62
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
62
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
63
63
|
* owner: "STRING_VALUE", // required
|
|
64
64
|
* provider: "STRING_VALUE", // required
|
|
65
65
|
* version: "STRING_VALUE", // required
|
|
@@ -72,7 +72,7 @@ declare const UpdatePipelineCommand_base: {
|
|
|
72
72
|
* { // ActionDeclaration
|
|
73
73
|
* name: "STRING_VALUE", // required
|
|
74
74
|
* actionTypeId: { // ActionTypeId
|
|
75
|
-
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
75
|
+
* category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
76
76
|
* owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
77
77
|
* provider: "STRING_VALUE", // required
|
|
78
78
|
* version: "STRING_VALUE", // required
|
|
@@ -304,7 +304,7 @@ declare const UpdatePipelineCommand_base: {
|
|
|
304
304
|
* // { // ActionDeclaration
|
|
305
305
|
* // name: "STRING_VALUE", // required
|
|
306
306
|
* // actionTypeId: { // ActionTypeId
|
|
307
|
-
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval", // required
|
|
307
|
+
* // category: "Source" || "Build" || "Deploy" || "Test" || "Invoke" || "Approval" || "Compute", // required
|
|
308
308
|
* // owner: "AWS" || "ThirdParty" || "Custom", // required
|
|
309
309
|
* // provider: "STRING_VALUE", // required
|
|
310
310
|
* // version: "STRING_VALUE", // required
|
package/dist-types/index.d.ts
CHANGED
|
@@ -107,6 +107,9 @@
|
|
|
107
107
|
* <li>
|
|
108
108
|
* <p>Invoke</p>
|
|
109
109
|
* </li>
|
|
110
|
+
* <li>
|
|
111
|
+
* <p>Compute</p>
|
|
112
|
+
* </li>
|
|
110
113
|
* </ul>
|
|
111
114
|
* <p>Pipelines also include <i>transitions</i>, which allow the transition
|
|
112
115
|
* of artifacts from one stage to the next in a pipeline after the actions in one stage
|
|
@@ -137,6 +137,7 @@ export declare class InvalidClientTokenException extends __BaseException {
|
|
|
137
137
|
export declare const ActionCategory: {
|
|
138
138
|
readonly Approval: "Approval";
|
|
139
139
|
readonly Build: "Build";
|
|
140
|
+
readonly Compute: "Compute";
|
|
140
141
|
readonly Deploy: "Deploy";
|
|
141
142
|
readonly Invoke: "Invoke";
|
|
142
143
|
readonly Source: "Source";
|
|
@@ -56,6 +56,7 @@ export declare class InvalidClientTokenException extends __BaseException {
|
|
|
56
56
|
export declare const ActionCategory: {
|
|
57
57
|
readonly Approval: "Approval";
|
|
58
58
|
readonly Build: "Build";
|
|
59
|
+
readonly Compute: "Compute";
|
|
59
60
|
readonly Deploy: "Deploy";
|
|
60
61
|
readonly Invoke: "Invoke";
|
|
61
62
|
readonly Source: "Source";
|
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.668.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,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.668.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.668.0",
|
|
25
25
|
"@aws-sdk/core": "3.667.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.668.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.667.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.667.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.667.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.668.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.667.0",
|
|
32
32
|
"@aws-sdk/types": "3.667.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.667.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.667.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.668.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.8",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|