@aws-sdk/client-machine-learning 3.533.0 → 3.535.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/MachineLearning.d.ts +5 -1
- package/dist-types/MachineLearningClient.d.ts +1 -1
- package/dist-types/commands/AddTagsCommand.d.ts +2 -1
- package/dist-types/commands/CreateBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +2 -1
- package/dist-types/commands/CreateEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/CreateMLModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/DeleteEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteMLModelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataSourcesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEvaluationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMLModelsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTagsCommand.d.ts +2 -1
- package/dist-types/commands/GetBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/GetDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/GetEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/GetMLModelCommand.d.ts +2 -1
- package/dist-types/commands/PredictCommand.d.ts +2 -1
- package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateMLModelCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +377 -377
- package/dist-types/ts3.4/MachineLearning.d.ts +4 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +9 -0
- package/package.json +42 -42
|
@@ -295,6 +295,7 @@ export interface MachineLearning {
|
|
|
295
295
|
options: __HttpHandlerOptions,
|
|
296
296
|
cb: (err: any, data?: DeleteTagsCommandOutput) => void
|
|
297
297
|
): void;
|
|
298
|
+
describeBatchPredictions(): Promise<DescribeBatchPredictionsCommandOutput>;
|
|
298
299
|
describeBatchPredictions(
|
|
299
300
|
args: DescribeBatchPredictionsCommandInput,
|
|
300
301
|
options?: __HttpHandlerOptions
|
|
@@ -308,6 +309,7 @@ export interface MachineLearning {
|
|
|
308
309
|
options: __HttpHandlerOptions,
|
|
309
310
|
cb: (err: any, data?: DescribeBatchPredictionsCommandOutput) => void
|
|
310
311
|
): void;
|
|
312
|
+
describeDataSources(): Promise<DescribeDataSourcesCommandOutput>;
|
|
311
313
|
describeDataSources(
|
|
312
314
|
args: DescribeDataSourcesCommandInput,
|
|
313
315
|
options?: __HttpHandlerOptions
|
|
@@ -321,6 +323,7 @@ export interface MachineLearning {
|
|
|
321
323
|
options: __HttpHandlerOptions,
|
|
322
324
|
cb: (err: any, data?: DescribeDataSourcesCommandOutput) => void
|
|
323
325
|
): void;
|
|
326
|
+
describeEvaluations(): Promise<DescribeEvaluationsCommandOutput>;
|
|
324
327
|
describeEvaluations(
|
|
325
328
|
args: DescribeEvaluationsCommandInput,
|
|
326
329
|
options?: __HttpHandlerOptions
|
|
@@ -334,6 +337,7 @@ export interface MachineLearning {
|
|
|
334
337
|
options: __HttpHandlerOptions,
|
|
335
338
|
cb: (err: any, data?: DescribeEvaluationsCommandOutput) => void
|
|
336
339
|
): void;
|
|
340
|
+
describeMLModels(): Promise<DescribeMLModelsCommandOutput>;
|
|
337
341
|
describeMLModels(
|
|
338
342
|
args: DescribeMLModelsCommandInput,
|
|
339
343
|
options?: __HttpHandlerOptions
|
|
@@ -17,6 +17,13 @@ declare const AddTagsCommand_base: {
|
|
|
17
17
|
ServiceInputTypes,
|
|
18
18
|
ServiceOutputTypes
|
|
19
19
|
>;
|
|
20
|
+
new (__0_0: AddTagsCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
AddTagsCommandInput,
|
|
22
|
+
AddTagsCommandOutput,
|
|
23
|
+
MachineLearningClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
20
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
21
28
|
};
|
|
22
29
|
export declare class AddTagsCommand extends AddTagsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateBatchPredictionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateBatchPredictionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateBatchPredictionCommandInput,
|
|
32
|
+
CreateBatchPredictionCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateBatchPredictionCommand extends CreateBatchPredictionCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateDataSourceFromRDSCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateDataSourceFromRDSCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateDataSourceFromRDSCommandInput,
|
|
32
|
+
CreateDataSourceFromRDSCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateDataSourceFromRDSCommand extends CreateDataSourceFromRDSCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateDataSourceFromRedshiftCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateDataSourceFromRedshiftCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateDataSourceFromRedshiftCommandInput,
|
|
32
|
+
CreateDataSourceFromRedshiftCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateDataSourceFromRedshiftCommand extends CreateDataSourceFromRedshiftCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateDataSourceFromS3Command_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateDataSourceFromS3CommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateDataSourceFromS3CommandInput,
|
|
32
|
+
CreateDataSourceFromS3CommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateDataSourceFromS3Command extends CreateDataSourceFromS3Command_base {}
|
|
@@ -24,6 +24,15 @@ declare const CreateEvaluationCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreateEvaluationCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateEvaluationCommandInput,
|
|
31
|
+
CreateEvaluationCommandOutput,
|
|
32
|
+
MachineLearningClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CreateEvaluationCommand extends CreateEvaluationCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateMLModelCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateMLModelCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateMLModelCommandInput,
|
|
28
|
+
CreateMLModelCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateMLModelCommand extends CreateMLModelCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateRealtimeEndpointCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateRealtimeEndpointCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateRealtimeEndpointCommandInput,
|
|
32
|
+
CreateRealtimeEndpointCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateRealtimeEndpointCommand extends CreateRealtimeEndpointCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeleteBatchPredictionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteBatchPredictionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteBatchPredictionCommandInput,
|
|
32
|
+
DeleteBatchPredictionCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeleteBatchPredictionCommand extends DeleteBatchPredictionCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DeleteDataSourceCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteDataSourceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteDataSourceCommandInput,
|
|
31
|
+
DeleteDataSourceCommandOutput,
|
|
32
|
+
MachineLearningClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DeleteDataSourceCommand extends DeleteDataSourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DeleteEvaluationCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteEvaluationCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteEvaluationCommandInput,
|
|
31
|
+
DeleteEvaluationCommandOutput,
|
|
32
|
+
MachineLearningClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DeleteEvaluationCommand extends DeleteEvaluationCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeleteMLModelCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteMLModelCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteMLModelCommandInput,
|
|
28
|
+
DeleteMLModelCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeleteMLModelCommand extends DeleteMLModelCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeleteRealtimeEndpointCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteRealtimeEndpointCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteRealtimeEndpointCommandInput,
|
|
32
|
+
DeleteRealtimeEndpointCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeleteRealtimeEndpointCommand extends DeleteRealtimeEndpointCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeleteTagsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteTagsCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteTagsCommandInput,
|
|
28
|
+
DeleteTagsCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeleteTagsCommand extends DeleteTagsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeBatchPredictionsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeBatchPredictionsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeBatchPredictionsCommandInput,
|
|
32
|
+
DescribeBatchPredictionsCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeBatchPredictionsCommand extends DescribeBatchPredictionsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeDataSourcesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeDataSourcesCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeDataSourcesCommandInput,
|
|
32
|
+
DescribeDataSourcesCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeDataSourcesCommand extends DescribeDataSourcesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeEvaluationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeEvaluationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeEvaluationsCommandInput,
|
|
32
|
+
DescribeEvaluationsCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeEvaluationsCommand extends DescribeEvaluationsCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DescribeMLModelsCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [DescribeMLModelsCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DescribeMLModelsCommandInput,
|
|
31
|
+
DescribeMLModelsCommandOutput,
|
|
32
|
+
MachineLearningClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DescribeMLModelsCommand extends DescribeMLModelsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DescribeTagsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DescribeTagsCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DescribeTagsCommandInput,
|
|
28
|
+
DescribeTagsCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DescribeTagsCommand extends DescribeTagsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetBatchPredictionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetBatchPredictionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetBatchPredictionCommandInput,
|
|
32
|
+
GetBatchPredictionCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetBatchPredictionCommand extends GetBatchPredictionCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetDataSourceCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetDataSourceCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetDataSourceCommandInput,
|
|
28
|
+
GetDataSourceCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetDataSourceCommand extends GetDataSourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetEvaluationCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetEvaluationCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetEvaluationCommandInput,
|
|
28
|
+
GetEvaluationCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetEvaluationCommand extends GetEvaluationCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetMLModelCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetMLModelCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetMLModelCommandInput,
|
|
28
|
+
GetMLModelCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetMLModelCommand extends GetMLModelCommand_base {}
|
|
@@ -17,6 +17,13 @@ declare const PredictCommand_base: {
|
|
|
17
17
|
ServiceInputTypes,
|
|
18
18
|
ServiceOutputTypes
|
|
19
19
|
>;
|
|
20
|
+
new (__0_0: PredictCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
PredictCommandInput,
|
|
22
|
+
PredictCommandOutput,
|
|
23
|
+
MachineLearningClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
20
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
21
28
|
};
|
|
22
29
|
export declare class PredictCommand extends PredictCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateBatchPredictionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateBatchPredictionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateBatchPredictionCommandInput,
|
|
32
|
+
UpdateBatchPredictionCommandOutput,
|
|
33
|
+
MachineLearningClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateBatchPredictionCommand extends UpdateBatchPredictionCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdateDataSourceCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateDataSourceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateDataSourceCommandInput,
|
|
31
|
+
UpdateDataSourceCommandOutput,
|
|
32
|
+
MachineLearningClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdateDataSourceCommand extends UpdateDataSourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdateEvaluationCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateEvaluationCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateEvaluationCommandInput,
|
|
31
|
+
UpdateEvaluationCommandOutput,
|
|
32
|
+
MachineLearningClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdateEvaluationCommand extends UpdateEvaluationCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UpdateMLModelCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdateMLModelCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateMLModelCommandInput,
|
|
28
|
+
UpdateMLModelCommandOutput,
|
|
29
|
+
MachineLearningClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UpdateMLModelCommand extends UpdateMLModelCommand_base {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-machine-learning",
|
|
3
3
|
"description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.535.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-machine-learning",
|
|
@@ -20,49 +20,49 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-sdk-machinelearning": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.
|
|
37
|
-
"@smithy/core": "^1.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.
|
|
39
|
-
"@smithy/hash-node": "^2.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.
|
|
43
|
-
"@smithy/middleware-retry": "^2.
|
|
44
|
-
"@smithy/middleware-serde": "^2.
|
|
45
|
-
"@smithy/middleware-stack": "^2.
|
|
46
|
-
"@smithy/node-config-provider": "^2.
|
|
47
|
-
"@smithy/node-http-handler": "^2.
|
|
48
|
-
"@smithy/protocol-http": "^3.
|
|
49
|
-
"@smithy/smithy-client": "^2.
|
|
50
|
-
"@smithy/types": "^2.
|
|
51
|
-
"@smithy/url-parser": "^2.
|
|
52
|
-
"@smithy/util-base64": "^2.
|
|
53
|
-
"@smithy/util-body-length-browser": "^2.
|
|
54
|
-
"@smithy/util-body-length-node": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
57
|
-
"@smithy/util-endpoints": "^1.
|
|
58
|
-
"@smithy/util-middleware": "^2.
|
|
59
|
-
"@smithy/util-retry": "^2.
|
|
60
|
-
"@smithy/util-utf8": "^2.
|
|
61
|
-
"@smithy/util-waiter": "^2.
|
|
62
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.535.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-sdk-machinelearning": "3.535.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.535.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
32
|
+
"@aws-sdk/types": "3.535.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
37
|
+
"@smithy/core": "^1.4.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
39
|
+
"@smithy/hash-node": "^2.2.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
43
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
44
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
45
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
46
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
47
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
48
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
49
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
50
|
+
"@smithy/types": "^2.12.0",
|
|
51
|
+
"@smithy/url-parser": "^2.2.0",
|
|
52
|
+
"@smithy/util-base64": "^2.3.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
57
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
58
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
59
|
+
"@smithy/util-retry": "^2.2.0",
|
|
60
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
61
|
+
"@smithy/util-waiter": "^2.2.0",
|
|
62
|
+
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
65
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
66
66
|
"@tsconfig/node14": "1.0.3",
|
|
67
67
|
"@types/node": "^14.14.31",
|
|
68
68
|
"concurrently": "7.0.0",
|