@aws-sdk/client-machine-learning 3.490.0 → 3.496.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/MachineLearning.js +1 -67
- package/dist-cjs/MachineLearningClient.js +1 -56
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -43
- package/dist-cjs/commands/AddTagsCommand.js +1 -28
- package/dist-cjs/commands/CreateBatchPredictionCommand.js +1 -28
- package/dist-cjs/commands/CreateDataSourceFromRDSCommand.js +1 -29
- package/dist-cjs/commands/CreateDataSourceFromRedshiftCommand.js +1 -29
- package/dist-cjs/commands/CreateDataSourceFromS3Command.js +1 -28
- package/dist-cjs/commands/CreateEvaluationCommand.js +1 -28
- package/dist-cjs/commands/CreateMLModelCommand.js +1 -28
- package/dist-cjs/commands/CreateRealtimeEndpointCommand.js +1 -28
- package/dist-cjs/commands/DeleteBatchPredictionCommand.js +1 -28
- package/dist-cjs/commands/DeleteDataSourceCommand.js +1 -28
- package/dist-cjs/commands/DeleteEvaluationCommand.js +1 -28
- package/dist-cjs/commands/DeleteMLModelCommand.js +1 -28
- package/dist-cjs/commands/DeleteRealtimeEndpointCommand.js +1 -28
- package/dist-cjs/commands/DeleteTagsCommand.js +1 -28
- package/dist-cjs/commands/DescribeBatchPredictionsCommand.js +1 -28
- package/dist-cjs/commands/DescribeDataSourcesCommand.js +1 -28
- package/dist-cjs/commands/DescribeEvaluationsCommand.js +1 -28
- package/dist-cjs/commands/DescribeMLModelsCommand.js +1 -28
- package/dist-cjs/commands/DescribeTagsCommand.js +1 -28
- package/dist-cjs/commands/GetBatchPredictionCommand.js +1 -28
- package/dist-cjs/commands/GetDataSourceCommand.js +1 -28
- package/dist-cjs/commands/GetEvaluationCommand.js +1 -28
- package/dist-cjs/commands/GetMLModelCommand.js +1 -28
- package/dist-cjs/commands/PredictCommand.js +1 -30
- package/dist-cjs/commands/UpdateBatchPredictionCommand.js +1 -28
- package/dist-cjs/commands/UpdateDataSourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateEvaluationCommand.js +1 -28
- package/dist-cjs/commands/UpdateMLModelCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -31
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2981 -12
- package/dist-cjs/models/MachineLearningServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -223
- package/dist-cjs/pagination/DescribeBatchPredictionsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeDataSourcesPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeEvaluationsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeMLModelsPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/index.js +1 -8
- package/dist-cjs/protocols/Aws_json1_1.js +1 -1720
- package/dist-cjs/runtimeExtensions.js +1 -25
- package/dist-cjs/waiters/index.js +1 -7
- package/dist-cjs/waiters/waitForBatchPredictionAvailable.js +1 -59
- package/dist-cjs/waiters/waitForDataSourceAvailable.js +1 -59
- package/dist-cjs/waiters/waitForEvaluationAvailable.js +1 -59
- package/dist-cjs/waiters/waitForMLModelAvailable.js +1 -59
- package/package.json +42 -42
|
@@ -1,67 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MachineLearning = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const AddTagsCommand_1 = require("./commands/AddTagsCommand");
|
|
6
|
-
const CreateBatchPredictionCommand_1 = require("./commands/CreateBatchPredictionCommand");
|
|
7
|
-
const CreateDataSourceFromRDSCommand_1 = require("./commands/CreateDataSourceFromRDSCommand");
|
|
8
|
-
const CreateDataSourceFromRedshiftCommand_1 = require("./commands/CreateDataSourceFromRedshiftCommand");
|
|
9
|
-
const CreateDataSourceFromS3Command_1 = require("./commands/CreateDataSourceFromS3Command");
|
|
10
|
-
const CreateEvaluationCommand_1 = require("./commands/CreateEvaluationCommand");
|
|
11
|
-
const CreateMLModelCommand_1 = require("./commands/CreateMLModelCommand");
|
|
12
|
-
const CreateRealtimeEndpointCommand_1 = require("./commands/CreateRealtimeEndpointCommand");
|
|
13
|
-
const DeleteBatchPredictionCommand_1 = require("./commands/DeleteBatchPredictionCommand");
|
|
14
|
-
const DeleteDataSourceCommand_1 = require("./commands/DeleteDataSourceCommand");
|
|
15
|
-
const DeleteEvaluationCommand_1 = require("./commands/DeleteEvaluationCommand");
|
|
16
|
-
const DeleteMLModelCommand_1 = require("./commands/DeleteMLModelCommand");
|
|
17
|
-
const DeleteRealtimeEndpointCommand_1 = require("./commands/DeleteRealtimeEndpointCommand");
|
|
18
|
-
const DeleteTagsCommand_1 = require("./commands/DeleteTagsCommand");
|
|
19
|
-
const DescribeBatchPredictionsCommand_1 = require("./commands/DescribeBatchPredictionsCommand");
|
|
20
|
-
const DescribeDataSourcesCommand_1 = require("./commands/DescribeDataSourcesCommand");
|
|
21
|
-
const DescribeEvaluationsCommand_1 = require("./commands/DescribeEvaluationsCommand");
|
|
22
|
-
const DescribeMLModelsCommand_1 = require("./commands/DescribeMLModelsCommand");
|
|
23
|
-
const DescribeTagsCommand_1 = require("./commands/DescribeTagsCommand");
|
|
24
|
-
const GetBatchPredictionCommand_1 = require("./commands/GetBatchPredictionCommand");
|
|
25
|
-
const GetDataSourceCommand_1 = require("./commands/GetDataSourceCommand");
|
|
26
|
-
const GetEvaluationCommand_1 = require("./commands/GetEvaluationCommand");
|
|
27
|
-
const GetMLModelCommand_1 = require("./commands/GetMLModelCommand");
|
|
28
|
-
const PredictCommand_1 = require("./commands/PredictCommand");
|
|
29
|
-
const UpdateBatchPredictionCommand_1 = require("./commands/UpdateBatchPredictionCommand");
|
|
30
|
-
const UpdateDataSourceCommand_1 = require("./commands/UpdateDataSourceCommand");
|
|
31
|
-
const UpdateEvaluationCommand_1 = require("./commands/UpdateEvaluationCommand");
|
|
32
|
-
const UpdateMLModelCommand_1 = require("./commands/UpdateMLModelCommand");
|
|
33
|
-
const MachineLearningClient_1 = require("./MachineLearningClient");
|
|
34
|
-
const commands = {
|
|
35
|
-
AddTagsCommand: AddTagsCommand_1.AddTagsCommand,
|
|
36
|
-
CreateBatchPredictionCommand: CreateBatchPredictionCommand_1.CreateBatchPredictionCommand,
|
|
37
|
-
CreateDataSourceFromRDSCommand: CreateDataSourceFromRDSCommand_1.CreateDataSourceFromRDSCommand,
|
|
38
|
-
CreateDataSourceFromRedshiftCommand: CreateDataSourceFromRedshiftCommand_1.CreateDataSourceFromRedshiftCommand,
|
|
39
|
-
CreateDataSourceFromS3Command: CreateDataSourceFromS3Command_1.CreateDataSourceFromS3Command,
|
|
40
|
-
CreateEvaluationCommand: CreateEvaluationCommand_1.CreateEvaluationCommand,
|
|
41
|
-
CreateMLModelCommand: CreateMLModelCommand_1.CreateMLModelCommand,
|
|
42
|
-
CreateRealtimeEndpointCommand: CreateRealtimeEndpointCommand_1.CreateRealtimeEndpointCommand,
|
|
43
|
-
DeleteBatchPredictionCommand: DeleteBatchPredictionCommand_1.DeleteBatchPredictionCommand,
|
|
44
|
-
DeleteDataSourceCommand: DeleteDataSourceCommand_1.DeleteDataSourceCommand,
|
|
45
|
-
DeleteEvaluationCommand: DeleteEvaluationCommand_1.DeleteEvaluationCommand,
|
|
46
|
-
DeleteMLModelCommand: DeleteMLModelCommand_1.DeleteMLModelCommand,
|
|
47
|
-
DeleteRealtimeEndpointCommand: DeleteRealtimeEndpointCommand_1.DeleteRealtimeEndpointCommand,
|
|
48
|
-
DeleteTagsCommand: DeleteTagsCommand_1.DeleteTagsCommand,
|
|
49
|
-
DescribeBatchPredictionsCommand: DescribeBatchPredictionsCommand_1.DescribeBatchPredictionsCommand,
|
|
50
|
-
DescribeDataSourcesCommand: DescribeDataSourcesCommand_1.DescribeDataSourcesCommand,
|
|
51
|
-
DescribeEvaluationsCommand: DescribeEvaluationsCommand_1.DescribeEvaluationsCommand,
|
|
52
|
-
DescribeMLModelsCommand: DescribeMLModelsCommand_1.DescribeMLModelsCommand,
|
|
53
|
-
DescribeTagsCommand: DescribeTagsCommand_1.DescribeTagsCommand,
|
|
54
|
-
GetBatchPredictionCommand: GetBatchPredictionCommand_1.GetBatchPredictionCommand,
|
|
55
|
-
GetDataSourceCommand: GetDataSourceCommand_1.GetDataSourceCommand,
|
|
56
|
-
GetEvaluationCommand: GetEvaluationCommand_1.GetEvaluationCommand,
|
|
57
|
-
GetMLModelCommand: GetMLModelCommand_1.GetMLModelCommand,
|
|
58
|
-
PredictCommand: PredictCommand_1.PredictCommand,
|
|
59
|
-
UpdateBatchPredictionCommand: UpdateBatchPredictionCommand_1.UpdateBatchPredictionCommand,
|
|
60
|
-
UpdateDataSourceCommand: UpdateDataSourceCommand_1.UpdateDataSourceCommand,
|
|
61
|
-
UpdateEvaluationCommand: UpdateEvaluationCommand_1.UpdateEvaluationCommand,
|
|
62
|
-
UpdateMLModelCommand: UpdateMLModelCommand_1.UpdateMLModelCommand,
|
|
63
|
-
};
|
|
64
|
-
class MachineLearning extends MachineLearningClient_1.MachineLearningClient {
|
|
65
|
-
}
|
|
66
|
-
exports.MachineLearning = MachineLearning;
|
|
67
|
-
(0, smithy_client_1.createAggregatedClient)(commands, MachineLearning);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,56 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MachineLearningClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
8
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
9
|
-
const core_1 = require("@smithy/core");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
16
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
17
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
18
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
19
|
-
class MachineLearningClient extends smithy_client_1.Client {
|
|
20
|
-
constructor(...[configuration]) {
|
|
21
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
22
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
23
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
24
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
25
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
26
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
27
|
-
const _config_6 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_5);
|
|
28
|
-
const _config_7 = (0, httpAuthSchemeProvider_1.resolveHttpAuthSchemeConfig)(_config_6);
|
|
29
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
30
|
-
super(_config_8);
|
|
31
|
-
this.config = _config_8;
|
|
32
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
this.middlewareStack.use((0, core_1.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
39
|
-
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
40
|
-
identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
|
|
41
|
-
}));
|
|
42
|
-
this.middlewareStack.use((0, core_1.getHttpSigningPlugin)(this.config));
|
|
43
|
-
}
|
|
44
|
-
destroy() {
|
|
45
|
-
super.destroy();
|
|
46
|
-
}
|
|
47
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
48
|
-
return httpAuthSchemeProvider_1.defaultMachineLearningHttpAuthSchemeParametersProvider;
|
|
49
|
-
}
|
|
50
|
-
getIdentityProviderConfigProvider() {
|
|
51
|
-
return async (config) => new core_1.DefaultIdentityProviderConfig({
|
|
52
|
-
"aws.auth#sigv4": config.credentials,
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
exports.MachineLearningClient = MachineLearningClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.resolveHttpAuthRuntimeConfig = exports.getHttpAuthExtensionConfiguration = void 0;
|
|
4
|
-
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
5
|
-
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
6
|
-
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
7
|
-
let _credentials = runtimeConfig.credentials;
|
|
8
|
-
return {
|
|
9
|
-
setHttpAuthScheme(httpAuthScheme) {
|
|
10
|
-
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
11
|
-
if (index === -1) {
|
|
12
|
-
_httpAuthSchemes.push(httpAuthScheme);
|
|
13
|
-
}
|
|
14
|
-
else {
|
|
15
|
-
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
httpAuthSchemes() {
|
|
19
|
-
return _httpAuthSchemes;
|
|
20
|
-
},
|
|
21
|
-
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
22
|
-
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
23
|
-
},
|
|
24
|
-
httpAuthSchemeProvider() {
|
|
25
|
-
return _httpAuthSchemeProvider;
|
|
26
|
-
},
|
|
27
|
-
setCredentials(credentials) {
|
|
28
|
-
_credentials = credentials;
|
|
29
|
-
},
|
|
30
|
-
credentials() {
|
|
31
|
-
return _credentials;
|
|
32
|
-
},
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
exports.getHttpAuthExtensionConfiguration = getHttpAuthExtensionConfiguration;
|
|
36
|
-
const resolveHttpAuthRuntimeConfig = (config) => {
|
|
37
|
-
return {
|
|
38
|
-
httpAuthSchemes: config.httpAuthSchemes(),
|
|
39
|
-
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
40
|
-
credentials: config.credentials(),
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
exports.resolveHttpAuthRuntimeConfig = resolveHttpAuthRuntimeConfig;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AddTagsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class AddTagsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "AddTags", {})
|
|
22
|
-
.n("MachineLearningClient", "AddTagsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_AddTagsCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_AddTagsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.AddTagsCommand = AddTagsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateBatchPredictionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateBatchPredictionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "CreateBatchPrediction", {})
|
|
22
|
-
.n("MachineLearningClient", "CreateBatchPredictionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateBatchPredictionCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateBatchPredictionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateBatchPredictionCommand = CreateBatchPredictionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateDataSourceFromRDSCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
11
|
-
class CreateDataSourceFromRDSCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonML_20141212", "CreateDataSourceFromRDS", {})
|
|
23
|
-
.n("MachineLearningClient", "CreateDataSourceFromRDSCommand")
|
|
24
|
-
.f(models_0_1.CreateDataSourceFromRDSInputFilterSensitiveLog, void 0)
|
|
25
|
-
.ser(Aws_json1_1_1.se_CreateDataSourceFromRDSCommand)
|
|
26
|
-
.de(Aws_json1_1_1.de_CreateDataSourceFromRDSCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateDataSourceFromRDSCommand = CreateDataSourceFromRDSCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateDataSourceFromRedshiftCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const models_0_1 = require("../models/models_0");
|
|
10
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
11
|
-
class CreateDataSourceFromRedshiftCommand extends smithy_client_1.Command
|
|
12
|
-
.classBuilder()
|
|
13
|
-
.ep({
|
|
14
|
-
...EndpointParameters_1.commonParams,
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonML_20141212", "CreateDataSourceFromRedshift", {})
|
|
23
|
-
.n("MachineLearningClient", "CreateDataSourceFromRedshiftCommand")
|
|
24
|
-
.f(models_0_1.CreateDataSourceFromRedshiftInputFilterSensitiveLog, void 0)
|
|
25
|
-
.ser(Aws_json1_1_1.se_CreateDataSourceFromRedshiftCommand)
|
|
26
|
-
.de(Aws_json1_1_1.de_CreateDataSourceFromRedshiftCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateDataSourceFromRedshiftCommand = CreateDataSourceFromRedshiftCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateDataSourceFromS3Command = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateDataSourceFromS3Command extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "CreateDataSourceFromS3", {})
|
|
22
|
-
.n("MachineLearningClient", "CreateDataSourceFromS3Command")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateDataSourceFromS3Command)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateDataSourceFromS3Command)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateDataSourceFromS3Command = CreateDataSourceFromS3Command;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateEvaluationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateEvaluationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "CreateEvaluation", {})
|
|
22
|
-
.n("MachineLearningClient", "CreateEvaluationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateEvaluationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateEvaluationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateEvaluationCommand = CreateEvaluationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateMLModelCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateMLModelCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "CreateMLModel", {})
|
|
22
|
-
.n("MachineLearningClient", "CreateMLModelCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateMLModelCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateMLModelCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateMLModelCommand = CreateMLModelCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateRealtimeEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateRealtimeEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "CreateRealtimeEndpoint", {})
|
|
22
|
-
.n("MachineLearningClient", "CreateRealtimeEndpointCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateRealtimeEndpointCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateRealtimeEndpointCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateRealtimeEndpointCommand = CreateRealtimeEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteBatchPredictionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteBatchPredictionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "DeleteBatchPrediction", {})
|
|
22
|
-
.n("MachineLearningClient", "DeleteBatchPredictionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteBatchPredictionCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteBatchPredictionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteBatchPredictionCommand = DeleteBatchPredictionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteDataSourceCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteDataSourceCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "DeleteDataSource", {})
|
|
22
|
-
.n("MachineLearningClient", "DeleteDataSourceCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteDataSourceCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteDataSourceCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteDataSourceCommand = DeleteDataSourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteEvaluationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteEvaluationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "DeleteEvaluation", {})
|
|
22
|
-
.n("MachineLearningClient", "DeleteEvaluationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteEvaluationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteEvaluationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteEvaluationCommand = DeleteEvaluationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteMLModelCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteMLModelCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "DeleteMLModel", {})
|
|
22
|
-
.n("MachineLearningClient", "DeleteMLModelCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteMLModelCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteMLModelCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteMLModelCommand = DeleteMLModelCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteRealtimeEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteRealtimeEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "DeleteRealtimeEndpoint", {})
|
|
22
|
-
.n("MachineLearningClient", "DeleteRealtimeEndpointCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteRealtimeEndpointCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteRealtimeEndpointCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteRealtimeEndpointCommand = DeleteRealtimeEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteTagsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteTagsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "DeleteTags", {})
|
|
22
|
-
.n("MachineLearningClient", "DeleteTagsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteTagsCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteTagsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteTagsCommand = DeleteTagsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeBatchPredictionsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeBatchPredictionsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonML_20141212", "DescribeBatchPredictions", {})
|
|
22
|
-
.n("MachineLearningClient", "DescribeBatchPredictionsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeBatchPredictionsCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeBatchPredictionsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeBatchPredictionsCommand = DescribeBatchPredictionsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|