@aws-sdk/client-sagemaker 3.391.0 → 3.392.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-types/commands/CreateEndpointCommand.d.ts +0 -3
- package/dist-types/commands/CreateInferenceRecommendationsJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +3 -0
- package/dist-types/models/models_1.d.ts +9 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +1 -1
|
@@ -27,9 +27,6 @@ export interface CreateEndpointCommandOutput extends CreateEndpointOutput, __Met
|
|
|
27
27
|
* uses the endpoint to provision resources and deploy models. You create the endpoint
|
|
28
28
|
* configuration with the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html">CreateEndpointConfig</a> API. </p>
|
|
29
29
|
* <p> Use this API to deploy models using SageMaker hosting services. </p>
|
|
30
|
-
* <p>For an example that calls this method when deploying a model to SageMaker hosting services,
|
|
31
|
-
* see the <a href="https://github.com/aws/amazon-sagemaker-examples/blob/master/sagemaker-fundamentals/create-endpoint/create_endpoint.ipynb">Create Endpoint example notebook.</a>
|
|
32
|
-
* </p>
|
|
33
30
|
* <note>
|
|
34
31
|
* <p> You must not delete an <code>EndpointConfig</code> that is in use by an endpoint
|
|
35
32
|
* that is live or while the <code>UpdateEndpoint</code> or <code>CreateEndpoint</code>
|
|
@@ -96,6 +96,9 @@ export interface CreateInferenceRecommendationsJobCommandOutput extends CreateIn
|
|
|
96
96
|
* ],
|
|
97
97
|
* DataInputConfig: "STRING_VALUE",
|
|
98
98
|
* SupportedEndpointType: "RealTime" || "Serverless",
|
|
99
|
+
* SupportedResponseMIMETypes: [ // RecommendationJobSupportedResponseMIMETypes
|
|
100
|
+
* "STRING_VALUE",
|
|
101
|
+
* ],
|
|
99
102
|
* },
|
|
100
103
|
* Endpoints: [ // Endpoints
|
|
101
104
|
* { // EndpointInfo
|
|
@@ -108,6 +108,9 @@ export interface DescribeInferenceRecommendationsJobCommandOutput extends Descri
|
|
|
108
108
|
* // ],
|
|
109
109
|
* // DataInputConfig: "STRING_VALUE",
|
|
110
110
|
* // SupportedEndpointType: "RealTime" || "Serverless",
|
|
111
|
+
* // SupportedResponseMIMETypes: [ // RecommendationJobSupportedResponseMIMETypes
|
|
112
|
+
* // "STRING_VALUE",
|
|
113
|
+
* // ],
|
|
111
114
|
* // },
|
|
112
115
|
* // Endpoints: [ // Endpoints
|
|
113
116
|
* // { // EndpointInfo
|
|
@@ -3965,6 +3965,11 @@ export interface RecommendationJobContainerConfig {
|
|
|
3965
3965
|
* By specifying a value for this field, you can receive a longer list of benchmarks for the desired endpoint type.</p>
|
|
3966
3966
|
*/
|
|
3967
3967
|
SupportedEndpointType?: RecommendationJobSupportedEndpointType | string;
|
|
3968
|
+
/**
|
|
3969
|
+
* @public
|
|
3970
|
+
* <p>The supported MIME types for the output data.</p>
|
|
3971
|
+
*/
|
|
3972
|
+
SupportedResponseMIMETypes?: string[];
|
|
3968
3973
|
}
|
|
3969
3974
|
/**
|
|
3970
3975
|
* @public
|
|
@@ -7366,6 +7371,10 @@ export interface CreateModelPackageInput {
|
|
|
7366
7371
|
* @public
|
|
7367
7372
|
* <p>A list of key value pairs associated with the model. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
|
|
7368
7373
|
* resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
|
|
7374
|
+
* <p>If you supply <code>ModelPackageGroupName</code>, your model package belongs to the model group
|
|
7375
|
+
* you specify and uses the tags associated with the model group. In this case, you cannot
|
|
7376
|
+
* supply a <code>tag</code> argument.
|
|
7377
|
+
* </p>
|
|
7369
7378
|
*/
|
|
7370
7379
|
Tags?: Tag[];
|
|
7371
7380
|
/**
|
|
@@ -751,6 +751,7 @@ export interface RecommendationJobContainerConfig {
|
|
|
751
751
|
SupportedInstanceTypes?: string[];
|
|
752
752
|
DataInputConfig?: string;
|
|
753
753
|
SupportedEndpointType?: RecommendationJobSupportedEndpointType | string;
|
|
754
|
+
SupportedResponseMIMETypes?: string[];
|
|
754
755
|
}
|
|
755
756
|
export interface EnvironmentParameterRanges {
|
|
756
757
|
CategoricalParameterRanges?: CategoricalParameter[];
|
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.392.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|