@aws-sdk/client-codepipeline 3.620.1 → 3.621.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 +24 -0
- package/dist-cjs/index.js +374 -71
- package/dist-es/CodePipeline.js +6 -0
- package/dist-es/commands/ListRuleExecutionsCommand.js +24 -0
- package/dist-es/commands/ListRuleTypesCommand.js +24 -0
- package/dist-es/commands/OverrideStageConditionCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +82 -39
- package/dist-es/pagination/ListRuleExecutionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +198 -14
- package/dist-types/CodePipeline.d.ts +22 -0
- package/dist-types/CodePipelineClient.d.ts +5 -2
- package/dist-types/commands/CreatePipelineCommand.d.ts +172 -2
- package/dist-types/commands/GetPipelineCommand.d.ts +86 -1
- package/dist-types/commands/GetPipelineStateCommand.d.ts +123 -0
- package/dist-types/commands/ListRuleExecutionsCommand.d.ts +132 -0
- package/dist-types/commands/ListRuleTypesCommand.d.ts +98 -0
- package/dist-types/commands/OverrideStageConditionCommand.d.ts +85 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +3 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +3 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +172 -2
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +1019 -222
- package/dist-types/pagination/ListRuleExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/CodePipeline.d.ts +52 -0
- package/dist-types/ts3.4/CodePipelineClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/ListRuleExecutionsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListRuleTypesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/OverrideStageConditionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +228 -29
- package/dist-types/ts3.4/pagination/ListRuleExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +11 -11
|
@@ -83,6 +83,14 @@ import {
|
|
|
83
83
|
ListPipelinesCommandInput,
|
|
84
84
|
ListPipelinesCommandOutput,
|
|
85
85
|
} from "../commands/ListPipelinesCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListRuleExecutionsCommandInput,
|
|
88
|
+
ListRuleExecutionsCommandOutput,
|
|
89
|
+
} from "../commands/ListRuleExecutionsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListRuleTypesCommandInput,
|
|
92
|
+
ListRuleTypesCommandOutput,
|
|
93
|
+
} from "../commands/ListRuleTypesCommand";
|
|
86
94
|
import {
|
|
87
95
|
ListTagsForResourceCommandInput,
|
|
88
96
|
ListTagsForResourceCommandOutput,
|
|
@@ -91,6 +99,10 @@ import {
|
|
|
91
99
|
ListWebhooksCommandInput,
|
|
92
100
|
ListWebhooksCommandOutput,
|
|
93
101
|
} from "../commands/ListWebhooksCommand";
|
|
102
|
+
import {
|
|
103
|
+
OverrideStageConditionCommandInput,
|
|
104
|
+
OverrideStageConditionCommandOutput,
|
|
105
|
+
} from "../commands/OverrideStageConditionCommand";
|
|
94
106
|
import {
|
|
95
107
|
PollForJobsCommandInput,
|
|
96
108
|
PollForJobsCommandOutput,
|
|
@@ -243,6 +255,14 @@ export declare const se_ListPipelinesCommand: (
|
|
|
243
255
|
input: ListPipelinesCommandInput,
|
|
244
256
|
context: __SerdeContext
|
|
245
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_ListRuleExecutionsCommand: (
|
|
259
|
+
input: ListRuleExecutionsCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const se_ListRuleTypesCommand: (
|
|
263
|
+
input: ListRuleTypesCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
246
266
|
export declare const se_ListTagsForResourceCommand: (
|
|
247
267
|
input: ListTagsForResourceCommandInput,
|
|
248
268
|
context: __SerdeContext
|
|
@@ -251,6 +271,10 @@ export declare const se_ListWebhooksCommand: (
|
|
|
251
271
|
input: ListWebhooksCommandInput,
|
|
252
272
|
context: __SerdeContext
|
|
253
273
|
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_OverrideStageConditionCommand: (
|
|
275
|
+
input: OverrideStageConditionCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
254
278
|
export declare const se_PollForJobsCommand: (
|
|
255
279
|
input: PollForJobsCommandInput,
|
|
256
280
|
context: __SerdeContext
|
|
@@ -403,6 +427,14 @@ export declare const de_ListPipelinesCommand: (
|
|
|
403
427
|
output: __HttpResponse,
|
|
404
428
|
context: __SerdeContext
|
|
405
429
|
) => Promise<ListPipelinesCommandOutput>;
|
|
430
|
+
export declare const de_ListRuleExecutionsCommand: (
|
|
431
|
+
output: __HttpResponse,
|
|
432
|
+
context: __SerdeContext
|
|
433
|
+
) => Promise<ListRuleExecutionsCommandOutput>;
|
|
434
|
+
export declare const de_ListRuleTypesCommand: (
|
|
435
|
+
output: __HttpResponse,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<ListRuleTypesCommandOutput>;
|
|
406
438
|
export declare const de_ListTagsForResourceCommand: (
|
|
407
439
|
output: __HttpResponse,
|
|
408
440
|
context: __SerdeContext
|
|
@@ -411,6 +443,10 @@ export declare const de_ListWebhooksCommand: (
|
|
|
411
443
|
output: __HttpResponse,
|
|
412
444
|
context: __SerdeContext
|
|
413
445
|
) => Promise<ListWebhooksCommandOutput>;
|
|
446
|
+
export declare const de_OverrideStageConditionCommand: (
|
|
447
|
+
output: __HttpResponse,
|
|
448
|
+
context: __SerdeContext
|
|
449
|
+
) => Promise<OverrideStageConditionCommandOutput>;
|
|
414
450
|
export declare const de_PollForJobsCommand: (
|
|
415
451
|
output: __HttpResponse,
|
|
416
452
|
context: __SerdeContext
|
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.621.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codepipeline",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "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.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.621.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.621.0",
|
|
25
|
+
"@aws-sdk/core": "3.621.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.621.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|
|
37
|
-
"@smithy/core": "^2.3.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
37
|
+
"@smithy/core": "^2.3.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.4",
|
|
39
39
|
"@smithy/hash-node": "^3.0.3",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.13",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.3",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.4",
|
|
47
47
|
"@smithy/node-http-handler": "^3.1.4",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.0",
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
49
|
+
"@smithy/smithy-client": "^3.1.11",
|
|
50
50
|
"@smithy/types": "^3.3.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.3",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.13",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.13",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.5",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.3",
|
|
59
59
|
"@smithy/util-retry": "^3.0.3",
|