@aws-sdk/client-codepipeline 3.693.0 → 3.699.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-cjs/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1 -0
- package/dist-types/commands/GetPipelineStateCommand.d.ts +1 -0
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +35 -35
package/dist-cjs/index.js
CHANGED
|
@@ -2573,6 +2573,7 @@ var de_ActionExecution = /* @__PURE__ */ __name((output, context) => {
|
|
|
2573
2573
|
externalExecutionUrl: import_smithy_client.expectString,
|
|
2574
2574
|
lastStatusChange: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2575
2575
|
lastUpdatedBy: import_smithy_client.expectString,
|
|
2576
|
+
logStreamARN: import_smithy_client.expectString,
|
|
2576
2577
|
percentComplete: import_smithy_client.expectInt32,
|
|
2577
2578
|
status: import_smithy_client.expectString,
|
|
2578
2579
|
summary: import_smithy_client.expectString,
|
|
@@ -1355,6 +1355,7 @@ const de_ActionExecution = (output, context) => {
|
|
|
1355
1355
|
externalExecutionUrl: __expectString,
|
|
1356
1356
|
lastStatusChange: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1357
1357
|
lastUpdatedBy: __expectString,
|
|
1358
|
+
logStreamARN: __expectString,
|
|
1358
1359
|
percentComplete: __expectInt32,
|
|
1359
1360
|
status: __expectString,
|
|
1360
1361
|
summary: __expectString,
|
|
@@ -104,6 +104,7 @@ declare const ListActionExecutionsCommand_base: {
|
|
|
104
104
|
* // code: "STRING_VALUE",
|
|
105
105
|
* // message: "STRING_VALUE",
|
|
106
106
|
* // },
|
|
107
|
+
* // logStreamARN: "STRING_VALUE",
|
|
107
108
|
* // },
|
|
108
109
|
* // outputVariables: { // OutputVariablesMap
|
|
109
110
|
* // "<keys>": "STRING_VALUE",
|
|
@@ -536,6 +536,11 @@ export interface ActionExecution {
|
|
|
536
536
|
* @public
|
|
537
537
|
*/
|
|
538
538
|
errorDetails?: ErrorDetails | undefined;
|
|
539
|
+
/**
|
|
540
|
+
* <p>The Amazon Resource Name (ARN) of the log stream for the action compute.</p>
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
logStreamARN?: string | undefined;
|
|
539
544
|
}
|
|
540
545
|
/**
|
|
541
546
|
* <p>The Amazon S3 artifact location for an action's artifacts.</p>
|
|
@@ -640,6 +645,11 @@ export interface ActionExecutionResult {
|
|
|
640
645
|
* @public
|
|
641
646
|
*/
|
|
642
647
|
errorDetails?: ErrorDetails | undefined;
|
|
648
|
+
/**
|
|
649
|
+
* <p>The Amazon Resource Name (ARN) of the log stream for the action compute.</p>
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
logStreamARN?: string | undefined;
|
|
643
653
|
}
|
|
644
654
|
/**
|
|
645
655
|
* <p>Output details listed for an action execution, such as the action execution
|
|
@@ -4956,6 +4966,12 @@ export interface PutApprovalResultInput {
|
|
|
4956
4966
|
* <p>The system-generated token used to identify a unique approval request. The token
|
|
4957
4967
|
* for each open approval request can be obtained using the <a>GetPipelineState</a> action. It is used to validate that the approval
|
|
4958
4968
|
* request corresponding to this token is still valid.</p>
|
|
4969
|
+
* <important>
|
|
4970
|
+
* <p>For a pipeline where the execution mode is set to PARALLEL, the token required to
|
|
4971
|
+
* approve/reject approval request as detailed above is not available. Instead, use the
|
|
4972
|
+
* <code>externalExecutionId</code> from the <code>GetPipelineState</code> action
|
|
4973
|
+
* as the token in the approval request.</p>
|
|
4974
|
+
* </important>
|
|
4959
4975
|
* @public
|
|
4960
4976
|
*/
|
|
4961
4977
|
token: string | undefined;
|
|
@@ -143,6 +143,7 @@ export interface ActionExecution {
|
|
|
143
143
|
externalExecutionUrl?: string | undefined;
|
|
144
144
|
percentComplete?: number | undefined;
|
|
145
145
|
errorDetails?: ErrorDetails | undefined;
|
|
146
|
+
logStreamARN?: string | undefined;
|
|
146
147
|
}
|
|
147
148
|
export interface S3Location {
|
|
148
149
|
bucket?: string | undefined;
|
|
@@ -166,6 +167,7 @@ export interface ActionExecutionResult {
|
|
|
166
167
|
externalExecutionSummary?: string | undefined;
|
|
167
168
|
externalExecutionUrl?: string | undefined;
|
|
168
169
|
errorDetails?: ErrorDetails | undefined;
|
|
170
|
+
logStreamARN?: string | undefined;
|
|
169
171
|
}
|
|
170
172
|
export interface ActionExecutionOutput {
|
|
171
173
|
outputArtifacts?: ArtifactDetail[] | undefined;
|
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.699.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,43 +20,43 @@
|
|
|
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.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.1.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.7.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
|
+
"@aws-sdk/core": "3.696.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.696.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.696.0",
|
|
32
|
+
"@aws-sdk/types": "3.696.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.696.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.696.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.696.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.12",
|
|
37
|
+
"@smithy/core": "^2.5.3",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.1",
|
|
39
|
+
"@smithy/hash-node": "^3.0.10",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.10",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.12",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.3",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.27",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.10",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.10",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.11",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.1",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.7",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.4",
|
|
50
|
+
"@smithy/types": "^3.7.1",
|
|
51
|
+
"@smithy/url-parser": "^3.0.10",
|
|
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.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.27",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.27",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.6",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.10",
|
|
59
|
+
"@smithy/util-retry": "^3.0.10",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|