@aws-sdk/client-machine-learning 3.50.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MachineLearningServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +112 -2
- package/dist-cjs/protocols/Aws_json1_1.js +233 -835
- package/dist-es/index.js +1 -0
- package/dist-es/models/MachineLearningServiceException.js +12 -0
- package/dist-es/models/models_0.js +103 -1
- package/dist-es/protocols/Aws_json1_1.js +543 -932
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MachineLearningServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -33
- package/dist-types/ts3.4/MachineLearning.d.ts +145 -0
- package/dist-types/ts3.4/MachineLearningClient.d.ts +101 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +28 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/MachineLearningServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1289 -0
- package/dist-types/ts3.4/pagination/DescribeBatchPredictionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeDataSourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeEvaluationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeMLModelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +7 -0
- package/package.json +35 -35
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from MachineLearning service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class MachineLearningServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
2
3
|
export declare enum TaggableResourceType {
|
|
3
4
|
BATCH_PREDICTION = "BatchPrediction",
|
|
4
5
|
DATASOURCE = "DataSource",
|
|
@@ -66,39 +67,54 @@ export declare namespace AddTagsOutput {
|
|
|
66
67
|
/**
|
|
67
68
|
* <p>An error on the server occurred when trying to process a request.</p>
|
|
68
69
|
*/
|
|
69
|
-
export
|
|
70
|
-
name: "InternalServerException";
|
|
71
|
-
$fault: "server";
|
|
72
|
-
message?: string;
|
|
70
|
+
export declare class InternalServerException extends __BaseException {
|
|
71
|
+
readonly name: "InternalServerException";
|
|
72
|
+
readonly $fault: "server";
|
|
73
73
|
code?: number;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
74
78
|
}
|
|
75
79
|
/**
|
|
76
80
|
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
77
81
|
*/
|
|
78
|
-
export
|
|
79
|
-
name: "InvalidInputException";
|
|
80
|
-
$fault: "client";
|
|
81
|
-
message?: string;
|
|
82
|
+
export declare class InvalidInputException extends __BaseException {
|
|
83
|
+
readonly name: "InvalidInputException";
|
|
84
|
+
readonly $fault: "client";
|
|
82
85
|
code?: number;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
83
90
|
}
|
|
84
|
-
export
|
|
85
|
-
name: "InvalidTagException";
|
|
86
|
-
$fault: "client";
|
|
87
|
-
|
|
91
|
+
export declare class InvalidTagException extends __BaseException {
|
|
92
|
+
readonly name: "InvalidTagException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
88
98
|
}
|
|
89
99
|
/**
|
|
90
100
|
* <p>A specified resource cannot be located.</p>
|
|
91
101
|
*/
|
|
92
|
-
export
|
|
93
|
-
name: "ResourceNotFoundException";
|
|
94
|
-
$fault: "client";
|
|
95
|
-
message?: string;
|
|
102
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
103
|
+
readonly name: "ResourceNotFoundException";
|
|
104
|
+
readonly $fault: "client";
|
|
96
105
|
code?: number;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
109
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
97
110
|
}
|
|
98
|
-
export
|
|
99
|
-
name: "TagLimitExceededException";
|
|
100
|
-
$fault: "client";
|
|
101
|
-
|
|
111
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
112
|
+
readonly name: "TagLimitExceededException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
117
|
+
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
102
118
|
}
|
|
103
119
|
export declare enum Algorithm {
|
|
104
120
|
SGD = "sgd"
|
|
@@ -155,11 +171,14 @@ export declare namespace CreateBatchPredictionOutput {
|
|
|
155
171
|
/**
|
|
156
172
|
* <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
|
|
157
173
|
*/
|
|
158
|
-
export
|
|
159
|
-
name: "IdempotentParameterMismatchException";
|
|
160
|
-
$fault: "client";
|
|
161
|
-
message?: string;
|
|
174
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
175
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
176
|
+
readonly $fault: "client";
|
|
162
177
|
code?: number;
|
|
178
|
+
/**
|
|
179
|
+
* @internal
|
|
180
|
+
*/
|
|
181
|
+
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
163
182
|
}
|
|
164
183
|
/**
|
|
165
184
|
* <p>The database credentials to connect to a database on an RDS DB instance.</p>
|
|
@@ -3166,11 +3185,14 @@ export declare namespace GetMLModelOutput {
|
|
|
3166
3185
|
/**
|
|
3167
3186
|
* <p>The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as <code>DataSource</code>.</p>
|
|
3168
3187
|
*/
|
|
3169
|
-
export
|
|
3170
|
-
name: "LimitExceededException";
|
|
3171
|
-
$fault: "client";
|
|
3172
|
-
message?: string;
|
|
3188
|
+
export declare class LimitExceededException extends __BaseException {
|
|
3189
|
+
readonly name: "LimitExceededException";
|
|
3190
|
+
readonly $fault: "client";
|
|
3173
3191
|
code?: number;
|
|
3192
|
+
/**
|
|
3193
|
+
* @internal
|
|
3194
|
+
*/
|
|
3195
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
3174
3196
|
}
|
|
3175
3197
|
export interface PredictInput {
|
|
3176
3198
|
/**
|
|
@@ -3194,10 +3216,13 @@ export declare namespace PredictInput {
|
|
|
3194
3216
|
/**
|
|
3195
3217
|
* <p>The exception is thrown when a predict request is made to an unmounted <code>MLModel</code>.</p>
|
|
3196
3218
|
*/
|
|
3197
|
-
export
|
|
3198
|
-
name: "PredictorNotMountedException";
|
|
3199
|
-
$fault: "client";
|
|
3200
|
-
|
|
3219
|
+
export declare class PredictorNotMountedException extends __BaseException {
|
|
3220
|
+
readonly name: "PredictorNotMountedException";
|
|
3221
|
+
readonly $fault: "client";
|
|
3222
|
+
/**
|
|
3223
|
+
* @internal
|
|
3224
|
+
*/
|
|
3225
|
+
constructor(opts: __ExceptionOptionType<PredictorNotMountedException, __BaseException>);
|
|
3201
3226
|
}
|
|
3202
3227
|
export declare enum DetailsAttributes {
|
|
3203
3228
|
ALGORITHM = "Algorithm",
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
3
|
+
import { CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput } from "./commands/CreateBatchPredictionCommand";
|
|
4
|
+
import { CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput } from "./commands/CreateDataSourceFromRDSCommand";
|
|
5
|
+
import { CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput } from "./commands/CreateDataSourceFromRedshiftCommand";
|
|
6
|
+
import { CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput } from "./commands/CreateDataSourceFromS3Command";
|
|
7
|
+
import { CreateEvaluationCommandInput, CreateEvaluationCommandOutput } from "./commands/CreateEvaluationCommand";
|
|
8
|
+
import { CreateMLModelCommandInput, CreateMLModelCommandOutput } from "./commands/CreateMLModelCommand";
|
|
9
|
+
import { CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput } from "./commands/CreateRealtimeEndpointCommand";
|
|
10
|
+
import { DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput } from "./commands/DeleteBatchPredictionCommand";
|
|
11
|
+
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
|
|
12
|
+
import { DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput } from "./commands/DeleteEvaluationCommand";
|
|
13
|
+
import { DeleteMLModelCommandInput, DeleteMLModelCommandOutput } from "./commands/DeleteMLModelCommand";
|
|
14
|
+
import { DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput } from "./commands/DeleteRealtimeEndpointCommand";
|
|
15
|
+
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
16
|
+
import { DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput } from "./commands/DescribeBatchPredictionsCommand";
|
|
17
|
+
import { DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput } from "./commands/DescribeDataSourcesCommand";
|
|
18
|
+
import { DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput } from "./commands/DescribeEvaluationsCommand";
|
|
19
|
+
import { DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput } from "./commands/DescribeMLModelsCommand";
|
|
20
|
+
import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
|
|
21
|
+
import { GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput } from "./commands/GetBatchPredictionCommand";
|
|
22
|
+
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
|
|
23
|
+
import { GetEvaluationCommandInput, GetEvaluationCommandOutput } from "./commands/GetEvaluationCommand";
|
|
24
|
+
import { GetMLModelCommandInput, GetMLModelCommandOutput } from "./commands/GetMLModelCommand";
|
|
25
|
+
import { PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand";
|
|
26
|
+
import { UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput } from "./commands/UpdateBatchPredictionCommand";
|
|
27
|
+
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
|
|
28
|
+
import { UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput } from "./commands/UpdateEvaluationCommand";
|
|
29
|
+
import { UpdateMLModelCommandInput, UpdateMLModelCommandOutput } from "./commands/UpdateMLModelCommand";
|
|
30
|
+
import { MachineLearningClient } from "./MachineLearningClient";
|
|
31
|
+
|
|
32
|
+
export declare class MachineLearning extends MachineLearningClient {
|
|
33
|
+
|
|
34
|
+
addTags(args: AddTagsCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsCommandOutput>;
|
|
35
|
+
addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
36
|
+
addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
37
|
+
|
|
38
|
+
createBatchPrediction(args: CreateBatchPredictionCommandInput, options?: __HttpHandlerOptions): Promise<CreateBatchPredictionCommandOutput>;
|
|
39
|
+
createBatchPrediction(args: CreateBatchPredictionCommandInput, cb: (err: any, data?: CreateBatchPredictionCommandOutput) => void): void;
|
|
40
|
+
createBatchPrediction(args: CreateBatchPredictionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBatchPredictionCommandOutput) => void): void;
|
|
41
|
+
|
|
42
|
+
createDataSourceFromRDS(args: CreateDataSourceFromRDSCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataSourceFromRDSCommandOutput>;
|
|
43
|
+
createDataSourceFromRDS(args: CreateDataSourceFromRDSCommandInput, cb: (err: any, data?: CreateDataSourceFromRDSCommandOutput) => void): void;
|
|
44
|
+
createDataSourceFromRDS(args: CreateDataSourceFromRDSCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataSourceFromRDSCommandOutput) => void): void;
|
|
45
|
+
|
|
46
|
+
createDataSourceFromRedshift(args: CreateDataSourceFromRedshiftCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataSourceFromRedshiftCommandOutput>;
|
|
47
|
+
createDataSourceFromRedshift(args: CreateDataSourceFromRedshiftCommandInput, cb: (err: any, data?: CreateDataSourceFromRedshiftCommandOutput) => void): void;
|
|
48
|
+
createDataSourceFromRedshift(args: CreateDataSourceFromRedshiftCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataSourceFromRedshiftCommandOutput) => void): void;
|
|
49
|
+
|
|
50
|
+
createDataSourceFromS3(args: CreateDataSourceFromS3CommandInput, options?: __HttpHandlerOptions): Promise<CreateDataSourceFromS3CommandOutput>;
|
|
51
|
+
createDataSourceFromS3(args: CreateDataSourceFromS3CommandInput, cb: (err: any, data?: CreateDataSourceFromS3CommandOutput) => void): void;
|
|
52
|
+
createDataSourceFromS3(args: CreateDataSourceFromS3CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataSourceFromS3CommandOutput) => void): void;
|
|
53
|
+
|
|
54
|
+
createEvaluation(args: CreateEvaluationCommandInput, options?: __HttpHandlerOptions): Promise<CreateEvaluationCommandOutput>;
|
|
55
|
+
createEvaluation(args: CreateEvaluationCommandInput, cb: (err: any, data?: CreateEvaluationCommandOutput) => void): void;
|
|
56
|
+
createEvaluation(args: CreateEvaluationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEvaluationCommandOutput) => void): void;
|
|
57
|
+
|
|
58
|
+
createMLModel(args: CreateMLModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateMLModelCommandOutput>;
|
|
59
|
+
createMLModel(args: CreateMLModelCommandInput, cb: (err: any, data?: CreateMLModelCommandOutput) => void): void;
|
|
60
|
+
createMLModel(args: CreateMLModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMLModelCommandOutput) => void): void;
|
|
61
|
+
|
|
62
|
+
createRealtimeEndpoint(args: CreateRealtimeEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateRealtimeEndpointCommandOutput>;
|
|
63
|
+
createRealtimeEndpoint(args: CreateRealtimeEndpointCommandInput, cb: (err: any, data?: CreateRealtimeEndpointCommandOutput) => void): void;
|
|
64
|
+
createRealtimeEndpoint(args: CreateRealtimeEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRealtimeEndpointCommandOutput) => void): void;
|
|
65
|
+
|
|
66
|
+
deleteBatchPrediction(args: DeleteBatchPredictionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBatchPredictionCommandOutput>;
|
|
67
|
+
deleteBatchPrediction(args: DeleteBatchPredictionCommandInput, cb: (err: any, data?: DeleteBatchPredictionCommandOutput) => void): void;
|
|
68
|
+
deleteBatchPrediction(args: DeleteBatchPredictionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBatchPredictionCommandOutput) => void): void;
|
|
69
|
+
|
|
70
|
+
deleteDataSource(args: DeleteDataSourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataSourceCommandOutput>;
|
|
71
|
+
deleteDataSource(args: DeleteDataSourceCommandInput, cb: (err: any, data?: DeleteDataSourceCommandOutput) => void): void;
|
|
72
|
+
deleteDataSource(args: DeleteDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataSourceCommandOutput) => void): void;
|
|
73
|
+
|
|
74
|
+
deleteEvaluation(args: DeleteEvaluationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEvaluationCommandOutput>;
|
|
75
|
+
deleteEvaluation(args: DeleteEvaluationCommandInput, cb: (err: any, data?: DeleteEvaluationCommandOutput) => void): void;
|
|
76
|
+
deleteEvaluation(args: DeleteEvaluationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEvaluationCommandOutput) => void): void;
|
|
77
|
+
|
|
78
|
+
deleteMLModel(args: DeleteMLModelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMLModelCommandOutput>;
|
|
79
|
+
deleteMLModel(args: DeleteMLModelCommandInput, cb: (err: any, data?: DeleteMLModelCommandOutput) => void): void;
|
|
80
|
+
deleteMLModel(args: DeleteMLModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMLModelCommandOutput) => void): void;
|
|
81
|
+
|
|
82
|
+
deleteRealtimeEndpoint(args: DeleteRealtimeEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRealtimeEndpointCommandOutput>;
|
|
83
|
+
deleteRealtimeEndpoint(args: DeleteRealtimeEndpointCommandInput, cb: (err: any, data?: DeleteRealtimeEndpointCommandOutput) => void): void;
|
|
84
|
+
deleteRealtimeEndpoint(args: DeleteRealtimeEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRealtimeEndpointCommandOutput) => void): void;
|
|
85
|
+
|
|
86
|
+
deleteTags(args: DeleteTagsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsCommandOutput>;
|
|
87
|
+
deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
88
|
+
deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
89
|
+
|
|
90
|
+
describeBatchPredictions(args: DescribeBatchPredictionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBatchPredictionsCommandOutput>;
|
|
91
|
+
describeBatchPredictions(args: DescribeBatchPredictionsCommandInput, cb: (err: any, data?: DescribeBatchPredictionsCommandOutput) => void): void;
|
|
92
|
+
describeBatchPredictions(args: DescribeBatchPredictionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBatchPredictionsCommandOutput) => void): void;
|
|
93
|
+
|
|
94
|
+
describeDataSources(args: DescribeDataSourcesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataSourcesCommandOutput>;
|
|
95
|
+
describeDataSources(args: DescribeDataSourcesCommandInput, cb: (err: any, data?: DescribeDataSourcesCommandOutput) => void): void;
|
|
96
|
+
describeDataSources(args: DescribeDataSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataSourcesCommandOutput) => void): void;
|
|
97
|
+
|
|
98
|
+
describeEvaluations(args: DescribeEvaluationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEvaluationsCommandOutput>;
|
|
99
|
+
describeEvaluations(args: DescribeEvaluationsCommandInput, cb: (err: any, data?: DescribeEvaluationsCommandOutput) => void): void;
|
|
100
|
+
describeEvaluations(args: DescribeEvaluationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEvaluationsCommandOutput) => void): void;
|
|
101
|
+
|
|
102
|
+
describeMLModels(args: DescribeMLModelsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMLModelsCommandOutput>;
|
|
103
|
+
describeMLModels(args: DescribeMLModelsCommandInput, cb: (err: any, data?: DescribeMLModelsCommandOutput) => void): void;
|
|
104
|
+
describeMLModels(args: DescribeMLModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMLModelsCommandOutput) => void): void;
|
|
105
|
+
|
|
106
|
+
describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
|
|
107
|
+
describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
108
|
+
describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
109
|
+
|
|
110
|
+
getBatchPrediction(args: GetBatchPredictionCommandInput, options?: __HttpHandlerOptions): Promise<GetBatchPredictionCommandOutput>;
|
|
111
|
+
getBatchPrediction(args: GetBatchPredictionCommandInput, cb: (err: any, data?: GetBatchPredictionCommandOutput) => void): void;
|
|
112
|
+
getBatchPrediction(args: GetBatchPredictionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBatchPredictionCommandOutput) => void): void;
|
|
113
|
+
|
|
114
|
+
getDataSource(args: GetDataSourceCommandInput, options?: __HttpHandlerOptions): Promise<GetDataSourceCommandOutput>;
|
|
115
|
+
getDataSource(args: GetDataSourceCommandInput, cb: (err: any, data?: GetDataSourceCommandOutput) => void): void;
|
|
116
|
+
getDataSource(args: GetDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataSourceCommandOutput) => void): void;
|
|
117
|
+
|
|
118
|
+
getEvaluation(args: GetEvaluationCommandInput, options?: __HttpHandlerOptions): Promise<GetEvaluationCommandOutput>;
|
|
119
|
+
getEvaluation(args: GetEvaluationCommandInput, cb: (err: any, data?: GetEvaluationCommandOutput) => void): void;
|
|
120
|
+
getEvaluation(args: GetEvaluationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEvaluationCommandOutput) => void): void;
|
|
121
|
+
|
|
122
|
+
getMLModel(args: GetMLModelCommandInput, options?: __HttpHandlerOptions): Promise<GetMLModelCommandOutput>;
|
|
123
|
+
getMLModel(args: GetMLModelCommandInput, cb: (err: any, data?: GetMLModelCommandOutput) => void): void;
|
|
124
|
+
getMLModel(args: GetMLModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMLModelCommandOutput) => void): void;
|
|
125
|
+
|
|
126
|
+
predict(args: PredictCommandInput, options?: __HttpHandlerOptions): Promise<PredictCommandOutput>;
|
|
127
|
+
predict(args: PredictCommandInput, cb: (err: any, data?: PredictCommandOutput) => void): void;
|
|
128
|
+
predict(args: PredictCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PredictCommandOutput) => void): void;
|
|
129
|
+
|
|
130
|
+
updateBatchPrediction(args: UpdateBatchPredictionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBatchPredictionCommandOutput>;
|
|
131
|
+
updateBatchPrediction(args: UpdateBatchPredictionCommandInput, cb: (err: any, data?: UpdateBatchPredictionCommandOutput) => void): void;
|
|
132
|
+
updateBatchPrediction(args: UpdateBatchPredictionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBatchPredictionCommandOutput) => void): void;
|
|
133
|
+
|
|
134
|
+
updateDataSource(args: UpdateDataSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataSourceCommandOutput>;
|
|
135
|
+
updateDataSource(args: UpdateDataSourceCommandInput, cb: (err: any, data?: UpdateDataSourceCommandOutput) => void): void;
|
|
136
|
+
updateDataSource(args: UpdateDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataSourceCommandOutput) => void): void;
|
|
137
|
+
|
|
138
|
+
updateEvaluation(args: UpdateEvaluationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEvaluationCommandOutput>;
|
|
139
|
+
updateEvaluation(args: UpdateEvaluationCommandInput, cb: (err: any, data?: UpdateEvaluationCommandOutput) => void): void;
|
|
140
|
+
updateEvaluation(args: UpdateEvaluationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEvaluationCommandOutput) => void): void;
|
|
141
|
+
|
|
142
|
+
updateMLModel(args: UpdateMLModelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMLModelCommandOutput>;
|
|
143
|
+
updateMLModel(args: UpdateMLModelCommandInput, cb: (err: any, data?: UpdateMLModelCommandOutput) => void): void;
|
|
144
|
+
updateMLModel(args: UpdateMLModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMLModelCommandOutput) => void): void;
|
|
145
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
10
|
+
import { CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput } from "./commands/CreateBatchPredictionCommand";
|
|
11
|
+
import { CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput } from "./commands/CreateDataSourceFromRDSCommand";
|
|
12
|
+
import { CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput } from "./commands/CreateDataSourceFromRedshiftCommand";
|
|
13
|
+
import { CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput } from "./commands/CreateDataSourceFromS3Command";
|
|
14
|
+
import { CreateEvaluationCommandInput, CreateEvaluationCommandOutput } from "./commands/CreateEvaluationCommand";
|
|
15
|
+
import { CreateMLModelCommandInput, CreateMLModelCommandOutput } from "./commands/CreateMLModelCommand";
|
|
16
|
+
import { CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput } from "./commands/CreateRealtimeEndpointCommand";
|
|
17
|
+
import { DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput } from "./commands/DeleteBatchPredictionCommand";
|
|
18
|
+
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
|
|
19
|
+
import { DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput } from "./commands/DeleteEvaluationCommand";
|
|
20
|
+
import { DeleteMLModelCommandInput, DeleteMLModelCommandOutput } from "./commands/DeleteMLModelCommand";
|
|
21
|
+
import { DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput } from "./commands/DeleteRealtimeEndpointCommand";
|
|
22
|
+
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
23
|
+
import { DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput } from "./commands/DescribeBatchPredictionsCommand";
|
|
24
|
+
import { DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput } from "./commands/DescribeDataSourcesCommand";
|
|
25
|
+
import { DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput } from "./commands/DescribeEvaluationsCommand";
|
|
26
|
+
import { DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput } from "./commands/DescribeMLModelsCommand";
|
|
27
|
+
import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
|
|
28
|
+
import { GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput } from "./commands/GetBatchPredictionCommand";
|
|
29
|
+
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
|
|
30
|
+
import { GetEvaluationCommandInput, GetEvaluationCommandOutput } from "./commands/GetEvaluationCommand";
|
|
31
|
+
import { GetMLModelCommandInput, GetMLModelCommandOutput } from "./commands/GetMLModelCommand";
|
|
32
|
+
import { PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand";
|
|
33
|
+
import { UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput } from "./commands/UpdateBatchPredictionCommand";
|
|
34
|
+
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
|
|
35
|
+
import { UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput } from "./commands/UpdateEvaluationCommand";
|
|
36
|
+
import { UpdateMLModelCommandInput, UpdateMLModelCommandOutput } from "./commands/UpdateMLModelCommand";
|
|
37
|
+
export declare type ServiceInputTypes = AddTagsCommandInput | CreateBatchPredictionCommandInput | CreateDataSourceFromRDSCommandInput | CreateDataSourceFromRedshiftCommandInput | CreateDataSourceFromS3CommandInput | CreateEvaluationCommandInput | CreateMLModelCommandInput | CreateRealtimeEndpointCommandInput | DeleteBatchPredictionCommandInput | DeleteDataSourceCommandInput | DeleteEvaluationCommandInput | DeleteMLModelCommandInput | DeleteRealtimeEndpointCommandInput | DeleteTagsCommandInput | DescribeBatchPredictionsCommandInput | DescribeDataSourcesCommandInput | DescribeEvaluationsCommandInput | DescribeMLModelsCommandInput | DescribeTagsCommandInput | GetBatchPredictionCommandInput | GetDataSourceCommandInput | GetEvaluationCommandInput | GetMLModelCommandInput | PredictCommandInput | UpdateBatchPredictionCommandInput | UpdateDataSourceCommandInput | UpdateEvaluationCommandInput | UpdateMLModelCommandInput;
|
|
38
|
+
export declare type ServiceOutputTypes = AddTagsCommandOutput | CreateBatchPredictionCommandOutput | CreateDataSourceFromRDSCommandOutput | CreateDataSourceFromRedshiftCommandOutput | CreateDataSourceFromS3CommandOutput | CreateEvaluationCommandOutput | CreateMLModelCommandOutput | CreateRealtimeEndpointCommandOutput | DeleteBatchPredictionCommandOutput | DeleteDataSourceCommandOutput | DeleteEvaluationCommandOutput | DeleteMLModelCommandOutput | DeleteRealtimeEndpointCommandOutput | DeleteTagsCommandOutput | DescribeBatchPredictionsCommandOutput | DescribeDataSourcesCommandOutput | DescribeEvaluationsCommandOutput | DescribeMLModelsCommandOutput | DescribeTagsCommandOutput | GetBatchPredictionCommandOutput | GetDataSourceCommandOutput | GetEvaluationCommandOutput | GetMLModelCommandOutput | PredictCommandOutput | UpdateBatchPredictionCommandOutput | UpdateDataSourceCommandOutput | UpdateEvaluationCommandOutput | UpdateMLModelCommandOutput;
|
|
39
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
40
|
+
|
|
41
|
+
requestHandler?: __HttpHandler;
|
|
42
|
+
|
|
43
|
+
sha256?: __HashConstructor;
|
|
44
|
+
|
|
45
|
+
urlParser?: __UrlParser;
|
|
46
|
+
|
|
47
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
48
|
+
|
|
49
|
+
streamCollector?: __StreamCollector;
|
|
50
|
+
|
|
51
|
+
base64Decoder?: __Decoder;
|
|
52
|
+
|
|
53
|
+
base64Encoder?: __Encoder;
|
|
54
|
+
|
|
55
|
+
utf8Decoder?: __Decoder;
|
|
56
|
+
|
|
57
|
+
utf8Encoder?: __Encoder;
|
|
58
|
+
|
|
59
|
+
runtime?: string;
|
|
60
|
+
|
|
61
|
+
disableHostPrefix?: boolean;
|
|
62
|
+
|
|
63
|
+
maxAttempts?: number | __Provider<number>;
|
|
64
|
+
|
|
65
|
+
retryMode?: string | __Provider<string>;
|
|
66
|
+
|
|
67
|
+
logger?: __Logger;
|
|
68
|
+
|
|
69
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
70
|
+
|
|
71
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
72
|
+
|
|
73
|
+
serviceId?: string;
|
|
74
|
+
|
|
75
|
+
region?: string | __Provider<string>;
|
|
76
|
+
|
|
77
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
78
|
+
|
|
79
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
80
|
+
|
|
81
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
82
|
+
|
|
83
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
84
|
+
}
|
|
85
|
+
declare type MachineLearningClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
86
|
+
|
|
87
|
+
export interface MachineLearningClientConfig extends MachineLearningClientConfigType {
|
|
88
|
+
}
|
|
89
|
+
declare type MachineLearningClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
90
|
+
|
|
91
|
+
export interface MachineLearningClientResolvedConfig extends MachineLearningClientResolvedConfigType {
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export declare class MachineLearningClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MachineLearningClientResolvedConfig> {
|
|
95
|
+
|
|
96
|
+
readonly config: MachineLearningClientResolvedConfig;
|
|
97
|
+
constructor(configuration: MachineLearningClientConfig);
|
|
98
|
+
|
|
99
|
+
destroy(): void;
|
|
100
|
+
}
|
|
101
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { AddTagsInput, AddTagsOutput } from "../models/models_0";
|
|
5
|
+
export interface AddTagsCommandInput extends AddTagsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: AddTagsCommandInput;
|
|
12
|
+
constructor(input: AddTagsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsCommandInput, AddTagsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { CreateBatchPredictionInput, CreateBatchPredictionOutput } from "../models/models_0";
|
|
5
|
+
export interface CreateBatchPredictionCommandInput extends CreateBatchPredictionInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateBatchPredictionCommandOutput extends CreateBatchPredictionOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateBatchPredictionCommand extends $Command<CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateBatchPredictionCommandInput;
|
|
12
|
+
constructor(input: CreateBatchPredictionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { CreateDataSourceFromRDSInput, CreateDataSourceFromRDSOutput } from "../models/models_0";
|
|
5
|
+
export interface CreateDataSourceFromRDSCommandInput extends CreateDataSourceFromRDSInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDataSourceFromRDSCommandOutput extends CreateDataSourceFromRDSOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDataSourceFromRDSCommand extends $Command<CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDataSourceFromRDSCommandInput;
|
|
12
|
+
constructor(input: CreateDataSourceFromRDSCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { CreateDataSourceFromRedshiftInput, CreateDataSourceFromRedshiftOutput } from "../models/models_0";
|
|
5
|
+
export interface CreateDataSourceFromRedshiftCommandInput extends CreateDataSourceFromRedshiftInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDataSourceFromRedshiftCommandOutput extends CreateDataSourceFromRedshiftOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDataSourceFromRedshiftCommand extends $Command<CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDataSourceFromRedshiftCommandInput;
|
|
12
|
+
constructor(input: CreateDataSourceFromRedshiftCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { CreateDataSourceFromS3Input, CreateDataSourceFromS3Output } from "../models/models_0";
|
|
5
|
+
export interface CreateDataSourceFromS3CommandInput extends CreateDataSourceFromS3Input {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDataSourceFromS3CommandOutput extends CreateDataSourceFromS3Output, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDataSourceFromS3Command extends $Command<CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDataSourceFromS3CommandInput;
|
|
12
|
+
constructor(input: CreateDataSourceFromS3CommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { CreateEvaluationInput, CreateEvaluationOutput } from "../models/models_0";
|
|
5
|
+
export interface CreateEvaluationCommandInput extends CreateEvaluationInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateEvaluationCommandOutput extends CreateEvaluationOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateEvaluationCommand extends $Command<CreateEvaluationCommandInput, CreateEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateEvaluationCommandInput;
|
|
12
|
+
constructor(input: CreateEvaluationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEvaluationCommandInput, CreateEvaluationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { CreateMLModelInput, CreateMLModelOutput } from "../models/models_0";
|
|
5
|
+
export interface CreateMLModelCommandInput extends CreateMLModelInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateMLModelCommand extends $Command<CreateMLModelCommandInput, CreateMLModelCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateMLModelCommandInput;
|
|
12
|
+
constructor(input: CreateMLModelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMLModelCommandInput, CreateMLModelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { CreateRealtimeEndpointInput, CreateRealtimeEndpointOutput } from "../models/models_0";
|
|
5
|
+
export interface CreateRealtimeEndpointCommandInput extends CreateRealtimeEndpointInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpointOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateRealtimeEndpointCommand extends $Command<CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateRealtimeEndpointCommandInput;
|
|
12
|
+
constructor(input: CreateRealtimeEndpointCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { DeleteBatchPredictionInput, DeleteBatchPredictionOutput } from "../models/models_0";
|
|
5
|
+
export interface DeleteBatchPredictionCommandInput extends DeleteBatchPredictionInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictionOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteBatchPredictionCommand extends $Command<DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteBatchPredictionCommandInput;
|
|
12
|
+
constructor(input: DeleteBatchPredictionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { DeleteDataSourceInput, DeleteDataSourceOutput } from "../models/models_0";
|
|
5
|
+
export interface DeleteDataSourceCommandInput extends DeleteDataSourceInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteDataSourceCommand extends $Command<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteDataSourceCommandInput;
|
|
12
|
+
constructor(input: DeleteDataSourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
4
|
+
import { DeleteEvaluationInput, DeleteEvaluationOutput } from "../models/models_0";
|
|
5
|
+
export interface DeleteEvaluationCommandInput extends DeleteEvaluationInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteEvaluationCommand extends $Command<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteEvaluationCommandInput;
|
|
12
|
+
constructor(input: DeleteEvaluationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|