@aws-sdk/client-sagemaker 3.44.0 → 3.45.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/CHANGELOG.md +11 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +4 -2
- package/dist-types/models/models_0.d.ts +7 -0
- package/dist-types/models/models_2.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.44.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.43.0...v3.44.0) (2021-12-02)
|
|
7
18
|
|
|
8
19
|
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -1117,6 +1117,7 @@ var CompilationJobStatus;
|
|
|
1117
1117
|
var TargetDevice;
|
|
1118
1118
|
(function (TargetDevice) {
|
|
1119
1119
|
TargetDevice["AISAGE"] = "aisage";
|
|
1120
|
+
TargetDevice["AMBA_CV2"] = "amba_cv2";
|
|
1120
1121
|
TargetDevice["AMBA_CV22"] = "amba_cv22";
|
|
1121
1122
|
TargetDevice["AMBA_CV25"] = "amba_cv25";
|
|
1122
1123
|
TargetDevice["COREML"] = "coreml";
|
|
@@ -14232,6 +14232,7 @@ const serializeAws_json1_1AutoMLChannel = (input, context) => {
|
|
|
14232
14232
|
return {
|
|
14233
14233
|
...(input.CompressionType !== undefined &&
|
|
14234
14234
|
input.CompressionType !== null && { CompressionType: input.CompressionType }),
|
|
14235
|
+
...(input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType }),
|
|
14235
14236
|
...(input.DataSource !== undefined &&
|
|
14236
14237
|
input.DataSource !== null && { DataSource: serializeAws_json1_1AutoMLDataSource(input.DataSource, context) }),
|
|
14237
14238
|
...(input.TargetAttributeName !== undefined &&
|
|
@@ -21099,6 +21100,7 @@ const deserializeAws_json1_1AutoMLCandidateStep = (output, context) => {
|
|
|
21099
21100
|
const deserializeAws_json1_1AutoMLChannel = (output, context) => {
|
|
21100
21101
|
return {
|
|
21101
21102
|
CompressionType: smithy_client_1.expectString(output.CompressionType),
|
|
21103
|
+
ContentType: smithy_client_1.expectString(output.ContentType),
|
|
21102
21104
|
DataSource: output.DataSource !== undefined && output.DataSource !== null
|
|
21103
21105
|
? deserializeAws_json1_1AutoMLDataSource(output.DataSource, context)
|
|
21104
21106
|
: undefined,
|
|
@@ -26743,6 +26745,7 @@ const deserializeAws_json1_1PipelineExecution = (output, context) => {
|
|
|
26743
26745
|
};
|
|
26744
26746
|
const deserializeAws_json1_1PipelineExecutionStep = (output, context) => {
|
|
26745
26747
|
return {
|
|
26748
|
+
AttemptCount: smithy_client_1.expectInt32(output.AttemptCount),
|
|
26746
26749
|
CacheHitResult: output.CacheHitResult !== undefined && output.CacheHitResult !== null
|
|
26747
26750
|
? deserializeAws_json1_1CacheHitResult(output.CacheHitResult, context)
|
|
26748
26751
|
: undefined,
|
package/dist-es/endpoints.js
CHANGED
|
@@ -908,6 +908,7 @@ export var CompilationJobStatus;
|
|
|
908
908
|
export var TargetDevice;
|
|
909
909
|
(function (TargetDevice) {
|
|
910
910
|
TargetDevice["AISAGE"] = "aisage";
|
|
911
|
+
TargetDevice["AMBA_CV2"] = "amba_cv2";
|
|
911
912
|
TargetDevice["AMBA_CV22"] = "amba_cv22";
|
|
912
913
|
TargetDevice["AMBA_CV25"] = "amba_cv25";
|
|
913
914
|
TargetDevice["COREML"] = "coreml";
|
|
@@ -16423,8 +16423,8 @@ var serializeAws_json1_1AttributeNames = function (input, context) {
|
|
|
16423
16423
|
});
|
|
16424
16424
|
};
|
|
16425
16425
|
var serializeAws_json1_1AutoMLChannel = function (input, context) {
|
|
16426
|
-
return __assign(__assign(__assign({}, (input.CompressionType !== undefined &&
|
|
16427
|
-
input.CompressionType !== null && { CompressionType: input.CompressionType })), (input.DataSource !== undefined &&
|
|
16426
|
+
return __assign(__assign(__assign(__assign({}, (input.CompressionType !== undefined &&
|
|
16427
|
+
input.CompressionType !== null && { CompressionType: input.CompressionType })), (input.ContentType !== undefined && input.ContentType !== null && { ContentType: input.ContentType })), (input.DataSource !== undefined &&
|
|
16428
16428
|
input.DataSource !== null && { DataSource: serializeAws_json1_1AutoMLDataSource(input.DataSource, context) })), (input.TargetAttributeName !== undefined &&
|
|
16429
16429
|
input.TargetAttributeName !== null && { TargetAttributeName: input.TargetAttributeName }));
|
|
16430
16430
|
};
|
|
@@ -21118,6 +21118,7 @@ var deserializeAws_json1_1AutoMLCandidateStep = function (output, context) {
|
|
|
21118
21118
|
var deserializeAws_json1_1AutoMLChannel = function (output, context) {
|
|
21119
21119
|
return {
|
|
21120
21120
|
CompressionType: __expectString(output.CompressionType),
|
|
21121
|
+
ContentType: __expectString(output.ContentType),
|
|
21121
21122
|
DataSource: output.DataSource !== undefined && output.DataSource !== null
|
|
21122
21123
|
? deserializeAws_json1_1AutoMLDataSource(output.DataSource, context)
|
|
21123
21124
|
: undefined,
|
|
@@ -26753,6 +26754,7 @@ var deserializeAws_json1_1PipelineExecution = function (output, context) {
|
|
|
26753
26754
|
};
|
|
26754
26755
|
var deserializeAws_json1_1PipelineExecutionStep = function (output, context) {
|
|
26755
26756
|
return {
|
|
26757
|
+
AttemptCount: __expectInt32(output.AttemptCount),
|
|
26756
26758
|
CacheHitResult: output.CacheHitResult !== undefined && output.CacheHitResult !== null
|
|
26757
26759
|
? deserializeAws_json1_1CacheHitResult(output.CacheHitResult, context)
|
|
26758
26760
|
: undefined,
|
|
@@ -4069,6 +4069,12 @@ export interface AutoMLChannel {
|
|
|
4069
4069
|
* 'y'.</p>
|
|
4070
4070
|
*/
|
|
4071
4071
|
TargetAttributeName: string | undefined;
|
|
4072
|
+
/**
|
|
4073
|
+
* <p>The content type of the data from the input source. You can use
|
|
4074
|
+
* <code>text/csv;header=present</code> or <code>x-application/vnd.amazon+parquet</code>.
|
|
4075
|
+
* The default value is <code>text/csv;header=present</code>.</p>
|
|
4076
|
+
*/
|
|
4077
|
+
ContentType?: string;
|
|
4072
4078
|
}
|
|
4073
4079
|
export declare namespace AutoMLChannel {
|
|
4074
4080
|
/**
|
|
@@ -5164,6 +5170,7 @@ export declare enum CompilationJobStatus {
|
|
|
5164
5170
|
}
|
|
5165
5171
|
export declare enum TargetDevice {
|
|
5166
5172
|
AISAGE = "aisage",
|
|
5173
|
+
AMBA_CV2 = "amba_cv2",
|
|
5167
5174
|
AMBA_CV22 = "amba_cv22",
|
|
5168
5175
|
AMBA_CV25 = "amba_cv25",
|
|
5169
5176
|
COREML = "coreml",
|
|
@@ -7862,6 +7862,7 @@ export interface PipelineExecutionStep {
|
|
|
7862
7862
|
* <p>If this pipeline execution step was cached, details on the cache hit.</p>
|
|
7863
7863
|
*/
|
|
7864
7864
|
CacheHitResult?: CacheHitResult;
|
|
7865
|
+
AttemptCount?: number;
|
|
7865
7866
|
/**
|
|
7866
7867
|
* <p>The reason why the step failed execution. This is only returned if the step failed its execution.</p>
|
|
7867
7868
|
*/
|
|
@@ -1240,6 +1240,8 @@ export interface AutoMLChannel {
|
|
|
1240
1240
|
CompressionType?: CompressionType | string;
|
|
1241
1241
|
|
|
1242
1242
|
TargetAttributeName: string | undefined;
|
|
1243
|
+
|
|
1244
|
+
ContentType?: string;
|
|
1243
1245
|
}
|
|
1244
1246
|
export declare namespace AutoMLChannel {
|
|
1245
1247
|
|
|
@@ -1803,6 +1805,7 @@ export declare enum CompilationJobStatus {
|
|
|
1803
1805
|
}
|
|
1804
1806
|
export declare enum TargetDevice {
|
|
1805
1807
|
AISAGE = "aisage",
|
|
1808
|
+
AMBA_CV2 = "amba_cv2",
|
|
1806
1809
|
AMBA_CV22 = "amba_cv22",
|
|
1807
1810
|
AMBA_CV25 = "amba_cv25",
|
|
1808
1811
|
COREML = "coreml",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.45.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.45.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.45.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.45.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
33
|
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.45.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.40.0",
|