@aws-sdk/client-machine-learning 3.53.0 → 3.55.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 +24 -0
- package/dist-cjs/MachineLearningClient.js +13 -13
- package/dist-cjs/commands/AddTagsCommand.js +3 -3
- package/dist-cjs/commands/CreateBatchPredictionCommand.js +3 -3
- package/dist-cjs/commands/CreateDataSourceFromRDSCommand.js +3 -3
- package/dist-cjs/commands/CreateDataSourceFromRedshiftCommand.js +3 -3
- package/dist-cjs/commands/CreateDataSourceFromS3Command.js +3 -3
- package/dist-cjs/commands/CreateEvaluationCommand.js +3 -3
- package/dist-cjs/commands/CreateMLModelCommand.js +3 -3
- package/dist-cjs/commands/CreateRealtimeEndpointCommand.js +3 -3
- package/dist-cjs/commands/DeleteBatchPredictionCommand.js +3 -3
- package/dist-cjs/commands/DeleteDataSourceCommand.js +3 -3
- package/dist-cjs/commands/DeleteEvaluationCommand.js +3 -3
- package/dist-cjs/commands/DeleteMLModelCommand.js +3 -3
- package/dist-cjs/commands/DeleteRealtimeEndpointCommand.js +3 -3
- package/dist-cjs/commands/DeleteTagsCommand.js +3 -3
- package/dist-cjs/commands/DescribeBatchPredictionsCommand.js +3 -3
- package/dist-cjs/commands/DescribeDataSourcesCommand.js +3 -3
- package/dist-cjs/commands/DescribeEvaluationsCommand.js +3 -3
- package/dist-cjs/commands/DescribeMLModelsCommand.js +3 -3
- package/dist-cjs/commands/DescribeTagsCommand.js +3 -3
- package/dist-cjs/commands/GetBatchPredictionCommand.js +3 -3
- package/dist-cjs/commands/GetDataSourceCommand.js +3 -3
- package/dist-cjs/commands/GetEvaluationCommand.js +3 -3
- package/dist-cjs/commands/GetMLModelCommand.js +3 -3
- package/dist-cjs/commands/PredictCommand.js +4 -4
- package/dist-cjs/commands/UpdateBatchPredictionCommand.js +3 -3
- package/dist-cjs/commands/UpdateDataSourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateEvaluationCommand.js +3 -3
- package/dist-cjs/commands/UpdateMLModelCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_json1_1.js +229 -229
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-cjs/waiters/waitForBatchPredictionAvailable.js +3 -3
- package/dist-cjs/waiters/waitForDataSourceAvailable.js +3 -3
- package/dist-cjs/waiters/waitForEvaluationAvailable.js +3 -3
- package/dist-cjs/waiters/waitForMLModelAvailable.js +3 -3
- package/dist-es/MachineLearning.js +28 -28
- package/dist-es/pagination/DescribeBatchPredictionsPaginator.js +4 -4
- package/dist-es/pagination/DescribeDataSourcesPaginator.js +4 -4
- package/dist-es/pagination/DescribeEvaluationsPaginator.js +4 -4
- package/dist-es/pagination/DescribeMLModelsPaginator.js +4 -4
- package/dist-es/waiters/waitForBatchPredictionAvailable.js +2 -2
- package/dist-es/waiters/waitForDataSourceAvailable.js +2 -2
- package/dist-es/waiters/waitForEvaluationAvailable.js +2 -2
- package/dist-es/waiters/waitForMLModelAvailable.js +2 -2
- package/dist-types/MachineLearningClient.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/MachineLearningClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +36 -36
|
@@ -11,7 +11,7 @@ class UpdateBatchPredictionCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "MachineLearningClient";
|
|
@@ -27,10 +27,10 @@ class UpdateBatchPredictionCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_1_1.serializeAws_json1_1UpdateBatchPredictionCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1UpdateBatchPredictionCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_1_1.deserializeAws_json1_1UpdateBatchPredictionCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateBatchPredictionCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UpdateBatchPredictionCommand = UpdateBatchPredictionCommand;
|
|
@@ -11,7 +11,7 @@ class UpdateDataSourceCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "MachineLearningClient";
|
|
@@ -27,10 +27,10 @@ class UpdateDataSourceCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_1_1.serializeAws_json1_1UpdateDataSourceCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1UpdateDataSourceCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_1_1.deserializeAws_json1_1UpdateDataSourceCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateDataSourceCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UpdateDataSourceCommand = UpdateDataSourceCommand;
|
|
@@ -11,7 +11,7 @@ class UpdateEvaluationCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "MachineLearningClient";
|
|
@@ -27,10 +27,10 @@ class UpdateEvaluationCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_1_1.serializeAws_json1_1UpdateEvaluationCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1UpdateEvaluationCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_1_1.deserializeAws_json1_1UpdateEvaluationCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateEvaluationCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UpdateEvaluationCommand = UpdateEvaluationCommand;
|
|
@@ -11,7 +11,7 @@ class UpdateMLModelCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "MachineLearningClient";
|
|
@@ -27,10 +27,10 @@ class UpdateMLModelCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_1_1.serializeAws_json1_1UpdateMLModelCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1UpdateMLModelCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_1_1.deserializeAws_json1_1UpdateMLModelCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateMLModelCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UpdateMLModelCommand = UpdateMLModelCommand;
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -122,7 +122,7 @@ const partitionHash = {
|
|
|
122
122
|
],
|
|
123
123
|
},
|
|
124
124
|
};
|
|
125
|
-
const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
|
|
125
|
+
const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
|
|
126
126
|
...options,
|
|
127
127
|
signingService: "machinelearning",
|
|
128
128
|
regionHash,
|