@aws-sdk/client-sagemaker 3.125.0 → 3.130.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 +32 -0
- package/dist-cjs/models/models_0.js +18 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2772 -4288
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/protocols/Aws_json1_1.js +1888 -3404
- package/dist-types/models/models_0.d.ts +27 -7
- package/dist-types/ts3.4/models/models_0.d.ts +18 -0
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
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.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **codegen:** fix error code parsing when it's a number ([#3371](https://github.com/aws/aws-sdk-js-v3/issues/3371)) ([c2d8522](https://github.com/aws/aws-sdk-js-v3/commit/c2d852279a3d23958521a6ceb4f4c642b0cb1848))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **client-sagemaker:** This release adds support for G5, P4d, and C6i instance types in Amazon SageMaker Inference and increases the number of hyperparameters that can be searched from 20 to 30 in Amazon SageMaker Automatic Model Tuning ([4d43eac](https://github.com/aws/aws-sdk-js-v3/commit/4d43eac453ff4e4b772ad4cc978e321eb64d38ee))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/client-sagemaker
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @aws-sdk/client-sagemaker
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
# [3.125.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.124.0...v3.125.0) (2022-07-07)
|
|
7
39
|
|
|
8
40
|
|
|
@@ -106,12 +106,29 @@ var ProductionVariantInstanceType;
|
|
|
106
106
|
ProductionVariantInstanceType["ML_C5_9XLARGE"] = "ml.c5.9xlarge";
|
|
107
107
|
ProductionVariantInstanceType["ML_C5_LARGE"] = "ml.c5.large";
|
|
108
108
|
ProductionVariantInstanceType["ML_C5_XLARGE"] = "ml.c5.xlarge";
|
|
109
|
+
ProductionVariantInstanceType["ML_C6I_12XLARGE"] = "ml.c6i.12xlarge";
|
|
110
|
+
ProductionVariantInstanceType["ML_C6I_16XLARGE"] = "ml.c6i.16xlarge";
|
|
111
|
+
ProductionVariantInstanceType["ML_C6I_24XLARGE"] = "ml.c6i.24xlarge";
|
|
112
|
+
ProductionVariantInstanceType["ML_C6I_2XLARGE"] = "ml.c6i.2xlarge";
|
|
113
|
+
ProductionVariantInstanceType["ML_C6I_32XLARGE"] = "ml.c6i.32xlarge";
|
|
114
|
+
ProductionVariantInstanceType["ML_C6I_4XLARGE"] = "ml.c6i.4xlarge";
|
|
115
|
+
ProductionVariantInstanceType["ML_C6I_8XLARGE"] = "ml.c6i.8xlarge";
|
|
116
|
+
ProductionVariantInstanceType["ML_C6I_LARGE"] = "ml.c6i.large";
|
|
117
|
+
ProductionVariantInstanceType["ML_C6I_XLARGE"] = "ml.c6i.xlarge";
|
|
109
118
|
ProductionVariantInstanceType["ML_G4DN_12XLARGE"] = "ml.g4dn.12xlarge";
|
|
110
119
|
ProductionVariantInstanceType["ML_G4DN_16XLARGE"] = "ml.g4dn.16xlarge";
|
|
111
120
|
ProductionVariantInstanceType["ML_G4DN_2XLARGE"] = "ml.g4dn.2xlarge";
|
|
112
121
|
ProductionVariantInstanceType["ML_G4DN_4XLARGE"] = "ml.g4dn.4xlarge";
|
|
113
122
|
ProductionVariantInstanceType["ML_G4DN_8XLARGE"] = "ml.g4dn.8xlarge";
|
|
114
123
|
ProductionVariantInstanceType["ML_G4DN_XLARGE"] = "ml.g4dn.xlarge";
|
|
124
|
+
ProductionVariantInstanceType["ML_G5_12XLARGE"] = "ml.g5.12xlarge";
|
|
125
|
+
ProductionVariantInstanceType["ML_G5_16XLARGE"] = "ml.g5.16xlarge";
|
|
126
|
+
ProductionVariantInstanceType["ML_G5_24XLARGE"] = "ml.g5.24xlarge";
|
|
127
|
+
ProductionVariantInstanceType["ML_G5_2XLARGE"] = "ml.g5.2xlarge";
|
|
128
|
+
ProductionVariantInstanceType["ML_G5_48XLARGE"] = "ml.g5.48xlarge";
|
|
129
|
+
ProductionVariantInstanceType["ML_G5_4XLARGE"] = "ml.g5.4xlarge";
|
|
130
|
+
ProductionVariantInstanceType["ML_G5_8XLARGE"] = "ml.g5.8xlarge";
|
|
131
|
+
ProductionVariantInstanceType["ML_G5_XLARGE"] = "ml.g5.xlarge";
|
|
115
132
|
ProductionVariantInstanceType["ML_INF1_24XLARGE"] = "ml.inf1.24xlarge";
|
|
116
133
|
ProductionVariantInstanceType["ML_INF1_2XLARGE"] = "ml.inf1.2xlarge";
|
|
117
134
|
ProductionVariantInstanceType["ML_INF1_6XLARGE"] = "ml.inf1.6xlarge";
|
|
@@ -139,6 +156,7 @@ var ProductionVariantInstanceType;
|
|
|
139
156
|
ProductionVariantInstanceType["ML_P3_16XLARGE"] = "ml.p3.16xlarge";
|
|
140
157
|
ProductionVariantInstanceType["ML_P3_2XLARGE"] = "ml.p3.2xlarge";
|
|
141
158
|
ProductionVariantInstanceType["ML_P3_8XLARGE"] = "ml.p3.8xlarge";
|
|
159
|
+
ProductionVariantInstanceType["ML_P4D_24XLARGE"] = "ml.p4d.24xlarge";
|
|
142
160
|
ProductionVariantInstanceType["ML_R5D_12XLARGE"] = "ml.r5d.12xlarge";
|
|
143
161
|
ProductionVariantInstanceType["ML_R5D_24XLARGE"] = "ml.r5d.24xlarge";
|
|
144
162
|
ProductionVariantInstanceType["ML_R5D_2XLARGE"] = "ml.r5d.2xlarge";
|