@aws-sdk/client-machine-learning 3.952.0 → 3.953.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 +373 -235
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AddTagsCommand.js +2 -2
- package/dist-es/commands/CreateBatchPredictionCommand.js +2 -2
- package/dist-es/commands/CreateDataSourceFromRDSCommand.js +2 -2
- package/dist-es/commands/CreateDataSourceFromRedshiftCommand.js +2 -2
- package/dist-es/commands/CreateDataSourceFromS3Command.js +2 -2
- package/dist-es/commands/CreateEvaluationCommand.js +2 -2
- package/dist-es/commands/CreateMLModelCommand.js +2 -2
- package/dist-es/commands/CreateRealtimeEndpointCommand.js +2 -2
- package/dist-es/commands/DeleteBatchPredictionCommand.js +2 -2
- package/dist-es/commands/DeleteDataSourceCommand.js +2 -2
- package/dist-es/commands/DeleteEvaluationCommand.js +2 -2
- package/dist-es/commands/DeleteMLModelCommand.js +2 -2
- package/dist-es/commands/DeleteRealtimeEndpointCommand.js +2 -2
- package/dist-es/commands/DeleteTagsCommand.js +2 -2
- package/dist-es/commands/DescribeBatchPredictionsCommand.js +2 -2
- package/dist-es/commands/DescribeDataSourcesCommand.js +2 -2
- package/dist-es/commands/DescribeEvaluationsCommand.js +2 -2
- package/dist-es/commands/DescribeMLModelsCommand.js +2 -2
- package/dist-es/commands/DescribeTagsCommand.js +2 -2
- package/dist-es/commands/GetBatchPredictionCommand.js +2 -2
- package/dist-es/commands/GetDataSourceCommand.js +2 -2
- package/dist-es/commands/GetEvaluationCommand.js +2 -2
- package/dist-es/commands/GetMLModelCommand.js +2 -2
- package/dist-es/commands/PredictCommand.js +2 -2
- package/dist-es/commands/UpdateBatchPredictionCommand.js +2 -2
- package/dist-es/commands/UpdateDataSourceCommand.js +2 -2
- package/dist-es/commands/UpdateEvaluationCommand.js +2 -2
- package/dist-es/commands/UpdateMLModelCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +222 -194
- package/dist-types/MachineLearningClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +111 -125
- package/dist-types/ts3.4/MachineLearningClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -126
- package/package.json +36 -36
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.machinelearning",
|
|
32
|
+
xmlNamespace: "http://machinelearning.amazonaws.com/doc/2014-12-12/",
|
|
33
|
+
version: "2014-12-12",
|
|
34
|
+
serviceTarget: "AmazonML_20141212",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "Machine Learning",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddTags } from "../schemas/schemas_0";
|
|
4
|
+
import { AddTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "AddTags", {})
|
|
13
13
|
.n("MachineLearningClient", "AddTagsCommand")
|
|
14
|
-
.sc(AddTags)
|
|
14
|
+
.sc(AddTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateBatchPrediction } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateBatchPrediction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateBatchPredictionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateBatchPredictionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "CreateBatchPrediction", {})
|
|
13
13
|
.n("MachineLearningClient", "CreateBatchPredictionCommand")
|
|
14
|
-
.sc(CreateBatchPrediction)
|
|
14
|
+
.sc(CreateBatchPrediction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDataSourceFromRDS } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataSourceFromRDS$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDataSourceFromRDSCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDataSourceFromRDSCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "CreateDataSourceFromRDS", {})
|
|
13
13
|
.n("MachineLearningClient", "CreateDataSourceFromRDSCommand")
|
|
14
|
-
.sc(CreateDataSourceFromRDS)
|
|
14
|
+
.sc(CreateDataSourceFromRDS$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDataSourceFromRedshift } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataSourceFromRedshift$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDataSourceFromRedshiftCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDataSourceFromRedshiftCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "CreateDataSourceFromRedshift", {})
|
|
13
13
|
.n("MachineLearningClient", "CreateDataSourceFromRedshiftCommand")
|
|
14
|
-
.sc(CreateDataSourceFromRedshift)
|
|
14
|
+
.sc(CreateDataSourceFromRedshift$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDataSourceFromS3 } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataSourceFromS3$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDataSourceFromS3Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDataSourceFromS3Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "CreateDataSourceFromS3", {})
|
|
13
13
|
.n("MachineLearningClient", "CreateDataSourceFromS3Command")
|
|
14
|
-
.sc(CreateDataSourceFromS3)
|
|
14
|
+
.sc(CreateDataSourceFromS3$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateEvaluation } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateEvaluation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateEvaluationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateEvaluationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "CreateEvaluation", {})
|
|
13
13
|
.n("MachineLearningClient", "CreateEvaluationCommand")
|
|
14
|
-
.sc(CreateEvaluation)
|
|
14
|
+
.sc(CreateEvaluation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateMLModel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateMLModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateMLModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateMLModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "CreateMLModel", {})
|
|
13
13
|
.n("MachineLearningClient", "CreateMLModelCommand")
|
|
14
|
-
.sc(CreateMLModel)
|
|
14
|
+
.sc(CreateMLModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRealtimeEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRealtimeEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRealtimeEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRealtimeEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "CreateRealtimeEndpoint", {})
|
|
13
13
|
.n("MachineLearningClient", "CreateRealtimeEndpointCommand")
|
|
14
|
-
.sc(CreateRealtimeEndpoint)
|
|
14
|
+
.sc(CreateRealtimeEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteBatchPrediction } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteBatchPrediction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteBatchPredictionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteBatchPredictionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DeleteBatchPrediction", {})
|
|
13
13
|
.n("MachineLearningClient", "DeleteBatchPredictionCommand")
|
|
14
|
-
.sc(DeleteBatchPrediction)
|
|
14
|
+
.sc(DeleteBatchPrediction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDataSource } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDataSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDataSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDataSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DeleteDataSource", {})
|
|
13
13
|
.n("MachineLearningClient", "DeleteDataSourceCommand")
|
|
14
|
-
.sc(DeleteDataSource)
|
|
14
|
+
.sc(DeleteDataSource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteEvaluation } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEvaluation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEvaluationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEvaluationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DeleteEvaluation", {})
|
|
13
13
|
.n("MachineLearningClient", "DeleteEvaluationCommand")
|
|
14
|
-
.sc(DeleteEvaluation)
|
|
14
|
+
.sc(DeleteEvaluation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMLModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMLModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMLModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMLModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DeleteMLModel", {})
|
|
13
13
|
.n("MachineLearningClient", "DeleteMLModelCommand")
|
|
14
|
-
.sc(DeleteMLModel)
|
|
14
|
+
.sc(DeleteMLModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRealtimeEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRealtimeEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRealtimeEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRealtimeEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DeleteRealtimeEndpoint", {})
|
|
13
13
|
.n("MachineLearningClient", "DeleteRealtimeEndpointCommand")
|
|
14
|
-
.sc(DeleteRealtimeEndpoint)
|
|
14
|
+
.sc(DeleteRealtimeEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTags } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DeleteTags", {})
|
|
13
13
|
.n("MachineLearningClient", "DeleteTagsCommand")
|
|
14
|
-
.sc(DeleteTags)
|
|
14
|
+
.sc(DeleteTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeBatchPredictions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeBatchPredictions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeBatchPredictionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeBatchPredictionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DescribeBatchPredictions", {})
|
|
13
13
|
.n("MachineLearningClient", "DescribeBatchPredictionsCommand")
|
|
14
|
-
.sc(DescribeBatchPredictions)
|
|
14
|
+
.sc(DescribeBatchPredictions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDataSources } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDataSources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDataSourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDataSourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DescribeDataSources", {})
|
|
13
13
|
.n("MachineLearningClient", "DescribeDataSourcesCommand")
|
|
14
|
-
.sc(DescribeDataSources)
|
|
14
|
+
.sc(DescribeDataSources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEvaluations } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEvaluations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEvaluationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEvaluationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DescribeEvaluations", {})
|
|
13
13
|
.n("MachineLearningClient", "DescribeEvaluationsCommand")
|
|
14
|
-
.sc(DescribeEvaluations)
|
|
14
|
+
.sc(DescribeEvaluations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeMLModels } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeMLModels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeMLModelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeMLModelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DescribeMLModels", {})
|
|
13
13
|
.n("MachineLearningClient", "DescribeMLModelsCommand")
|
|
14
|
-
.sc(DescribeMLModels)
|
|
14
|
+
.sc(DescribeMLModels$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTags } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "DescribeTags", {})
|
|
13
13
|
.n("MachineLearningClient", "DescribeTagsCommand")
|
|
14
|
-
.sc(DescribeTags)
|
|
14
|
+
.sc(DescribeTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetBatchPrediction } from "../schemas/schemas_0";
|
|
4
|
+
import { GetBatchPrediction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetBatchPredictionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetBatchPredictionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "GetBatchPrediction", {})
|
|
13
13
|
.n("MachineLearningClient", "GetBatchPredictionCommand")
|
|
14
|
-
.sc(GetBatchPrediction)
|
|
14
|
+
.sc(GetBatchPrediction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDataSource } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "GetDataSource", {})
|
|
13
13
|
.n("MachineLearningClient", "GetDataSourceCommand")
|
|
14
|
-
.sc(GetDataSource)
|
|
14
|
+
.sc(GetDataSource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetEvaluation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEvaluation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEvaluationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEvaluationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "GetEvaluation", {})
|
|
13
13
|
.n("MachineLearningClient", "GetEvaluationCommand")
|
|
14
|
-
.sc(GetEvaluation)
|
|
14
|
+
.sc(GetEvaluation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetMLModel } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMLModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMLModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMLModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "GetMLModel", {})
|
|
13
13
|
.n("MachineLearningClient", "GetMLModelCommand")
|
|
14
|
-
.sc(GetMLModel)
|
|
14
|
+
.sc(GetMLModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -2,7 +2,7 @@ import { getPredictEndpointPlugin } from "@aws-sdk/middleware-sdk-machinelearnin
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { Predict } from "../schemas/schemas_0";
|
|
5
|
+
import { Predict$ } from "../schemas/schemas_0";
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class PredictCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
@@ -12,6 +12,6 @@ export class PredictCommand extends $Command
|
|
|
12
12
|
})
|
|
13
13
|
.s("AmazonML_20141212", "Predict", {})
|
|
14
14
|
.n("MachineLearningClient", "PredictCommand")
|
|
15
|
-
.sc(Predict)
|
|
15
|
+
.sc(Predict$)
|
|
16
16
|
.build() {
|
|
17
17
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateBatchPrediction } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateBatchPrediction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateBatchPredictionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateBatchPredictionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "UpdateBatchPrediction", {})
|
|
13
13
|
.n("MachineLearningClient", "UpdateBatchPredictionCommand")
|
|
14
|
-
.sc(UpdateBatchPrediction)
|
|
14
|
+
.sc(UpdateBatchPrediction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateDataSource } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDataSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDataSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDataSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "UpdateDataSource", {})
|
|
13
13
|
.n("MachineLearningClient", "UpdateDataSourceCommand")
|
|
14
|
-
.sc(UpdateDataSource)
|
|
14
|
+
.sc(UpdateDataSource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateEvaluation } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateEvaluation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateEvaluationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateEvaluationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "UpdateEvaluation", {})
|
|
13
13
|
.n("MachineLearningClient", "UpdateEvaluationCommand")
|
|
14
|
-
.sc(UpdateEvaluation)
|
|
14
|
+
.sc(UpdateEvaluation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateMLModel } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateMLModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateMLModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateMLModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonML_20141212", "UpdateMLModel", {})
|
|
13
13
|
.n("MachineLearningClient", "UpdateMLModelCommand")
|
|
14
|
-
.sc(UpdateMLModel)
|
|
14
|
+
.sc(UpdateMLModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.machinelearning",
|
|
29
|
+
xmlNamespace: "http://machinelearning.amazonaws.com/doc/2014-12-12/",
|
|
30
|
+
version: "2014-12-12",
|
|
31
|
+
serviceTarget: "AmazonML_20141212",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "Machine Learning",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|