@aws-sdk/client-machine-learning 3.168.0 → 3.170.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MachineLearning.d.ts +508 -145
  3. package/dist-types/ts3.4/MachineLearningClient.d.ts +298 -101
  4. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/PredictCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +7 -7
  35. package/dist-types/ts3.4/models/MachineLearningServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +1200 -1129
  38. package/dist-types/ts3.4/pagination/DescribeBatchPredictionsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/DescribeDataSourcesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/DescribeEvaluationsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/DescribeMLModelsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  43. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  44. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +341 -86
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  49. package/dist-types/ts3.4/waiters/index.d.ts +4 -4
  50. package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +13 -7
  51. package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +13 -7
  52. package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +13 -7
  53. package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +13 -7
  54. package/package.json +36 -36
@@ -1,145 +1,508 @@
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
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ AddTagsCommandInput,
4
+ AddTagsCommandOutput,
5
+ } from "./commands/AddTagsCommand";
6
+ import {
7
+ CreateBatchPredictionCommandInput,
8
+ CreateBatchPredictionCommandOutput,
9
+ } from "./commands/CreateBatchPredictionCommand";
10
+ import {
11
+ CreateDataSourceFromRDSCommandInput,
12
+ CreateDataSourceFromRDSCommandOutput,
13
+ } from "./commands/CreateDataSourceFromRDSCommand";
14
+ import {
15
+ CreateDataSourceFromRedshiftCommandInput,
16
+ CreateDataSourceFromRedshiftCommandOutput,
17
+ } from "./commands/CreateDataSourceFromRedshiftCommand";
18
+ import {
19
+ CreateDataSourceFromS3CommandInput,
20
+ CreateDataSourceFromS3CommandOutput,
21
+ } from "./commands/CreateDataSourceFromS3Command";
22
+ import {
23
+ CreateEvaluationCommandInput,
24
+ CreateEvaluationCommandOutput,
25
+ } from "./commands/CreateEvaluationCommand";
26
+ import {
27
+ CreateMLModelCommandInput,
28
+ CreateMLModelCommandOutput,
29
+ } from "./commands/CreateMLModelCommand";
30
+ import {
31
+ CreateRealtimeEndpointCommandInput,
32
+ CreateRealtimeEndpointCommandOutput,
33
+ } from "./commands/CreateRealtimeEndpointCommand";
34
+ import {
35
+ DeleteBatchPredictionCommandInput,
36
+ DeleteBatchPredictionCommandOutput,
37
+ } from "./commands/DeleteBatchPredictionCommand";
38
+ import {
39
+ DeleteDataSourceCommandInput,
40
+ DeleteDataSourceCommandOutput,
41
+ } from "./commands/DeleteDataSourceCommand";
42
+ import {
43
+ DeleteEvaluationCommandInput,
44
+ DeleteEvaluationCommandOutput,
45
+ } from "./commands/DeleteEvaluationCommand";
46
+ import {
47
+ DeleteMLModelCommandInput,
48
+ DeleteMLModelCommandOutput,
49
+ } from "./commands/DeleteMLModelCommand";
50
+ import {
51
+ DeleteRealtimeEndpointCommandInput,
52
+ DeleteRealtimeEndpointCommandOutput,
53
+ } from "./commands/DeleteRealtimeEndpointCommand";
54
+ import {
55
+ DeleteTagsCommandInput,
56
+ DeleteTagsCommandOutput,
57
+ } from "./commands/DeleteTagsCommand";
58
+ import {
59
+ DescribeBatchPredictionsCommandInput,
60
+ DescribeBatchPredictionsCommandOutput,
61
+ } from "./commands/DescribeBatchPredictionsCommand";
62
+ import {
63
+ DescribeDataSourcesCommandInput,
64
+ DescribeDataSourcesCommandOutput,
65
+ } from "./commands/DescribeDataSourcesCommand";
66
+ import {
67
+ DescribeEvaluationsCommandInput,
68
+ DescribeEvaluationsCommandOutput,
69
+ } from "./commands/DescribeEvaluationsCommand";
70
+ import {
71
+ DescribeMLModelsCommandInput,
72
+ DescribeMLModelsCommandOutput,
73
+ } from "./commands/DescribeMLModelsCommand";
74
+ import {
75
+ DescribeTagsCommandInput,
76
+ DescribeTagsCommandOutput,
77
+ } from "./commands/DescribeTagsCommand";
78
+ import {
79
+ GetBatchPredictionCommandInput,
80
+ GetBatchPredictionCommandOutput,
81
+ } from "./commands/GetBatchPredictionCommand";
82
+ import {
83
+ GetDataSourceCommandInput,
84
+ GetDataSourceCommandOutput,
85
+ } from "./commands/GetDataSourceCommand";
86
+ import {
87
+ GetEvaluationCommandInput,
88
+ GetEvaluationCommandOutput,
89
+ } from "./commands/GetEvaluationCommand";
90
+ import {
91
+ GetMLModelCommandInput,
92
+ GetMLModelCommandOutput,
93
+ } from "./commands/GetMLModelCommand";
94
+ import {
95
+ PredictCommandInput,
96
+ PredictCommandOutput,
97
+ } from "./commands/PredictCommand";
98
+ import {
99
+ UpdateBatchPredictionCommandInput,
100
+ UpdateBatchPredictionCommandOutput,
101
+ } from "./commands/UpdateBatchPredictionCommand";
102
+ import {
103
+ UpdateDataSourceCommandInput,
104
+ UpdateDataSourceCommandOutput,
105
+ } from "./commands/UpdateDataSourceCommand";
106
+ import {
107
+ UpdateEvaluationCommandInput,
108
+ UpdateEvaluationCommandOutput,
109
+ } from "./commands/UpdateEvaluationCommand";
110
+ import {
111
+ UpdateMLModelCommandInput,
112
+ UpdateMLModelCommandOutput,
113
+ } from "./commands/UpdateMLModelCommand";
114
+ import { MachineLearningClient } from "./MachineLearningClient";
115
+
116
+ export declare class MachineLearning extends MachineLearningClient {
117
+ addTags(
118
+ args: AddTagsCommandInput,
119
+ options?: __HttpHandlerOptions
120
+ ): Promise<AddTagsCommandOutput>;
121
+ addTags(
122
+ args: AddTagsCommandInput,
123
+ cb: (err: any, data?: AddTagsCommandOutput) => void
124
+ ): void;
125
+ addTags(
126
+ args: AddTagsCommandInput,
127
+ options: __HttpHandlerOptions,
128
+ cb: (err: any, data?: AddTagsCommandOutput) => void
129
+ ): void;
130
+
131
+ createBatchPrediction(
132
+ args: CreateBatchPredictionCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<CreateBatchPredictionCommandOutput>;
135
+ createBatchPrediction(
136
+ args: CreateBatchPredictionCommandInput,
137
+ cb: (err: any, data?: CreateBatchPredictionCommandOutput) => void
138
+ ): void;
139
+ createBatchPrediction(
140
+ args: CreateBatchPredictionCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: CreateBatchPredictionCommandOutput) => void
143
+ ): void;
144
+
145
+ createDataSourceFromRDS(
146
+ args: CreateDataSourceFromRDSCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<CreateDataSourceFromRDSCommandOutput>;
149
+ createDataSourceFromRDS(
150
+ args: CreateDataSourceFromRDSCommandInput,
151
+ cb: (err: any, data?: CreateDataSourceFromRDSCommandOutput) => void
152
+ ): void;
153
+ createDataSourceFromRDS(
154
+ args: CreateDataSourceFromRDSCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: CreateDataSourceFromRDSCommandOutput) => void
157
+ ): void;
158
+
159
+ createDataSourceFromRedshift(
160
+ args: CreateDataSourceFromRedshiftCommandInput,
161
+ options?: __HttpHandlerOptions
162
+ ): Promise<CreateDataSourceFromRedshiftCommandOutput>;
163
+ createDataSourceFromRedshift(
164
+ args: CreateDataSourceFromRedshiftCommandInput,
165
+ cb: (err: any, data?: CreateDataSourceFromRedshiftCommandOutput) => void
166
+ ): void;
167
+ createDataSourceFromRedshift(
168
+ args: CreateDataSourceFromRedshiftCommandInput,
169
+ options: __HttpHandlerOptions,
170
+ cb: (err: any, data?: CreateDataSourceFromRedshiftCommandOutput) => void
171
+ ): void;
172
+
173
+ createDataSourceFromS3(
174
+ args: CreateDataSourceFromS3CommandInput,
175
+ options?: __HttpHandlerOptions
176
+ ): Promise<CreateDataSourceFromS3CommandOutput>;
177
+ createDataSourceFromS3(
178
+ args: CreateDataSourceFromS3CommandInput,
179
+ cb: (err: any, data?: CreateDataSourceFromS3CommandOutput) => void
180
+ ): void;
181
+ createDataSourceFromS3(
182
+ args: CreateDataSourceFromS3CommandInput,
183
+ options: __HttpHandlerOptions,
184
+ cb: (err: any, data?: CreateDataSourceFromS3CommandOutput) => void
185
+ ): void;
186
+
187
+ createEvaluation(
188
+ args: CreateEvaluationCommandInput,
189
+ options?: __HttpHandlerOptions
190
+ ): Promise<CreateEvaluationCommandOutput>;
191
+ createEvaluation(
192
+ args: CreateEvaluationCommandInput,
193
+ cb: (err: any, data?: CreateEvaluationCommandOutput) => void
194
+ ): void;
195
+ createEvaluation(
196
+ args: CreateEvaluationCommandInput,
197
+ options: __HttpHandlerOptions,
198
+ cb: (err: any, data?: CreateEvaluationCommandOutput) => void
199
+ ): void;
200
+
201
+ createMLModel(
202
+ args: CreateMLModelCommandInput,
203
+ options?: __HttpHandlerOptions
204
+ ): Promise<CreateMLModelCommandOutput>;
205
+ createMLModel(
206
+ args: CreateMLModelCommandInput,
207
+ cb: (err: any, data?: CreateMLModelCommandOutput) => void
208
+ ): void;
209
+ createMLModel(
210
+ args: CreateMLModelCommandInput,
211
+ options: __HttpHandlerOptions,
212
+ cb: (err: any, data?: CreateMLModelCommandOutput) => void
213
+ ): void;
214
+
215
+ createRealtimeEndpoint(
216
+ args: CreateRealtimeEndpointCommandInput,
217
+ options?: __HttpHandlerOptions
218
+ ): Promise<CreateRealtimeEndpointCommandOutput>;
219
+ createRealtimeEndpoint(
220
+ args: CreateRealtimeEndpointCommandInput,
221
+ cb: (err: any, data?: CreateRealtimeEndpointCommandOutput) => void
222
+ ): void;
223
+ createRealtimeEndpoint(
224
+ args: CreateRealtimeEndpointCommandInput,
225
+ options: __HttpHandlerOptions,
226
+ cb: (err: any, data?: CreateRealtimeEndpointCommandOutput) => void
227
+ ): void;
228
+
229
+ deleteBatchPrediction(
230
+ args: DeleteBatchPredictionCommandInput,
231
+ options?: __HttpHandlerOptions
232
+ ): Promise<DeleteBatchPredictionCommandOutput>;
233
+ deleteBatchPrediction(
234
+ args: DeleteBatchPredictionCommandInput,
235
+ cb: (err: any, data?: DeleteBatchPredictionCommandOutput) => void
236
+ ): void;
237
+ deleteBatchPrediction(
238
+ args: DeleteBatchPredictionCommandInput,
239
+ options: __HttpHandlerOptions,
240
+ cb: (err: any, data?: DeleteBatchPredictionCommandOutput) => void
241
+ ): void;
242
+
243
+ deleteDataSource(
244
+ args: DeleteDataSourceCommandInput,
245
+ options?: __HttpHandlerOptions
246
+ ): Promise<DeleteDataSourceCommandOutput>;
247
+ deleteDataSource(
248
+ args: DeleteDataSourceCommandInput,
249
+ cb: (err: any, data?: DeleteDataSourceCommandOutput) => void
250
+ ): void;
251
+ deleteDataSource(
252
+ args: DeleteDataSourceCommandInput,
253
+ options: __HttpHandlerOptions,
254
+ cb: (err: any, data?: DeleteDataSourceCommandOutput) => void
255
+ ): void;
256
+
257
+ deleteEvaluation(
258
+ args: DeleteEvaluationCommandInput,
259
+ options?: __HttpHandlerOptions
260
+ ): Promise<DeleteEvaluationCommandOutput>;
261
+ deleteEvaluation(
262
+ args: DeleteEvaluationCommandInput,
263
+ cb: (err: any, data?: DeleteEvaluationCommandOutput) => void
264
+ ): void;
265
+ deleteEvaluation(
266
+ args: DeleteEvaluationCommandInput,
267
+ options: __HttpHandlerOptions,
268
+ cb: (err: any, data?: DeleteEvaluationCommandOutput) => void
269
+ ): void;
270
+
271
+ deleteMLModel(
272
+ args: DeleteMLModelCommandInput,
273
+ options?: __HttpHandlerOptions
274
+ ): Promise<DeleteMLModelCommandOutput>;
275
+ deleteMLModel(
276
+ args: DeleteMLModelCommandInput,
277
+ cb: (err: any, data?: DeleteMLModelCommandOutput) => void
278
+ ): void;
279
+ deleteMLModel(
280
+ args: DeleteMLModelCommandInput,
281
+ options: __HttpHandlerOptions,
282
+ cb: (err: any, data?: DeleteMLModelCommandOutput) => void
283
+ ): void;
284
+
285
+ deleteRealtimeEndpoint(
286
+ args: DeleteRealtimeEndpointCommandInput,
287
+ options?: __HttpHandlerOptions
288
+ ): Promise<DeleteRealtimeEndpointCommandOutput>;
289
+ deleteRealtimeEndpoint(
290
+ args: DeleteRealtimeEndpointCommandInput,
291
+ cb: (err: any, data?: DeleteRealtimeEndpointCommandOutput) => void
292
+ ): void;
293
+ deleteRealtimeEndpoint(
294
+ args: DeleteRealtimeEndpointCommandInput,
295
+ options: __HttpHandlerOptions,
296
+ cb: (err: any, data?: DeleteRealtimeEndpointCommandOutput) => void
297
+ ): void;
298
+
299
+ deleteTags(
300
+ args: DeleteTagsCommandInput,
301
+ options?: __HttpHandlerOptions
302
+ ): Promise<DeleteTagsCommandOutput>;
303
+ deleteTags(
304
+ args: DeleteTagsCommandInput,
305
+ cb: (err: any, data?: DeleteTagsCommandOutput) => void
306
+ ): void;
307
+ deleteTags(
308
+ args: DeleteTagsCommandInput,
309
+ options: __HttpHandlerOptions,
310
+ cb: (err: any, data?: DeleteTagsCommandOutput) => void
311
+ ): void;
312
+
313
+ describeBatchPredictions(
314
+ args: DescribeBatchPredictionsCommandInput,
315
+ options?: __HttpHandlerOptions
316
+ ): Promise<DescribeBatchPredictionsCommandOutput>;
317
+ describeBatchPredictions(
318
+ args: DescribeBatchPredictionsCommandInput,
319
+ cb: (err: any, data?: DescribeBatchPredictionsCommandOutput) => void
320
+ ): void;
321
+ describeBatchPredictions(
322
+ args: DescribeBatchPredictionsCommandInput,
323
+ options: __HttpHandlerOptions,
324
+ cb: (err: any, data?: DescribeBatchPredictionsCommandOutput) => void
325
+ ): void;
326
+
327
+ describeDataSources(
328
+ args: DescribeDataSourcesCommandInput,
329
+ options?: __HttpHandlerOptions
330
+ ): Promise<DescribeDataSourcesCommandOutput>;
331
+ describeDataSources(
332
+ args: DescribeDataSourcesCommandInput,
333
+ cb: (err: any, data?: DescribeDataSourcesCommandOutput) => void
334
+ ): void;
335
+ describeDataSources(
336
+ args: DescribeDataSourcesCommandInput,
337
+ options: __HttpHandlerOptions,
338
+ cb: (err: any, data?: DescribeDataSourcesCommandOutput) => void
339
+ ): void;
340
+
341
+ describeEvaluations(
342
+ args: DescribeEvaluationsCommandInput,
343
+ options?: __HttpHandlerOptions
344
+ ): Promise<DescribeEvaluationsCommandOutput>;
345
+ describeEvaluations(
346
+ args: DescribeEvaluationsCommandInput,
347
+ cb: (err: any, data?: DescribeEvaluationsCommandOutput) => void
348
+ ): void;
349
+ describeEvaluations(
350
+ args: DescribeEvaluationsCommandInput,
351
+ options: __HttpHandlerOptions,
352
+ cb: (err: any, data?: DescribeEvaluationsCommandOutput) => void
353
+ ): void;
354
+
355
+ describeMLModels(
356
+ args: DescribeMLModelsCommandInput,
357
+ options?: __HttpHandlerOptions
358
+ ): Promise<DescribeMLModelsCommandOutput>;
359
+ describeMLModels(
360
+ args: DescribeMLModelsCommandInput,
361
+ cb: (err: any, data?: DescribeMLModelsCommandOutput) => void
362
+ ): void;
363
+ describeMLModels(
364
+ args: DescribeMLModelsCommandInput,
365
+ options: __HttpHandlerOptions,
366
+ cb: (err: any, data?: DescribeMLModelsCommandOutput) => void
367
+ ): void;
368
+
369
+ describeTags(
370
+ args: DescribeTagsCommandInput,
371
+ options?: __HttpHandlerOptions
372
+ ): Promise<DescribeTagsCommandOutput>;
373
+ describeTags(
374
+ args: DescribeTagsCommandInput,
375
+ cb: (err: any, data?: DescribeTagsCommandOutput) => void
376
+ ): void;
377
+ describeTags(
378
+ args: DescribeTagsCommandInput,
379
+ options: __HttpHandlerOptions,
380
+ cb: (err: any, data?: DescribeTagsCommandOutput) => void
381
+ ): void;
382
+
383
+ getBatchPrediction(
384
+ args: GetBatchPredictionCommandInput,
385
+ options?: __HttpHandlerOptions
386
+ ): Promise<GetBatchPredictionCommandOutput>;
387
+ getBatchPrediction(
388
+ args: GetBatchPredictionCommandInput,
389
+ cb: (err: any, data?: GetBatchPredictionCommandOutput) => void
390
+ ): void;
391
+ getBatchPrediction(
392
+ args: GetBatchPredictionCommandInput,
393
+ options: __HttpHandlerOptions,
394
+ cb: (err: any, data?: GetBatchPredictionCommandOutput) => void
395
+ ): void;
396
+
397
+ getDataSource(
398
+ args: GetDataSourceCommandInput,
399
+ options?: __HttpHandlerOptions
400
+ ): Promise<GetDataSourceCommandOutput>;
401
+ getDataSource(
402
+ args: GetDataSourceCommandInput,
403
+ cb: (err: any, data?: GetDataSourceCommandOutput) => void
404
+ ): void;
405
+ getDataSource(
406
+ args: GetDataSourceCommandInput,
407
+ options: __HttpHandlerOptions,
408
+ cb: (err: any, data?: GetDataSourceCommandOutput) => void
409
+ ): void;
410
+
411
+ getEvaluation(
412
+ args: GetEvaluationCommandInput,
413
+ options?: __HttpHandlerOptions
414
+ ): Promise<GetEvaluationCommandOutput>;
415
+ getEvaluation(
416
+ args: GetEvaluationCommandInput,
417
+ cb: (err: any, data?: GetEvaluationCommandOutput) => void
418
+ ): void;
419
+ getEvaluation(
420
+ args: GetEvaluationCommandInput,
421
+ options: __HttpHandlerOptions,
422
+ cb: (err: any, data?: GetEvaluationCommandOutput) => void
423
+ ): void;
424
+
425
+ getMLModel(
426
+ args: GetMLModelCommandInput,
427
+ options?: __HttpHandlerOptions
428
+ ): Promise<GetMLModelCommandOutput>;
429
+ getMLModel(
430
+ args: GetMLModelCommandInput,
431
+ cb: (err: any, data?: GetMLModelCommandOutput) => void
432
+ ): void;
433
+ getMLModel(
434
+ args: GetMLModelCommandInput,
435
+ options: __HttpHandlerOptions,
436
+ cb: (err: any, data?: GetMLModelCommandOutput) => void
437
+ ): void;
438
+
439
+ predict(
440
+ args: PredictCommandInput,
441
+ options?: __HttpHandlerOptions
442
+ ): Promise<PredictCommandOutput>;
443
+ predict(
444
+ args: PredictCommandInput,
445
+ cb: (err: any, data?: PredictCommandOutput) => void
446
+ ): void;
447
+ predict(
448
+ args: PredictCommandInput,
449
+ options: __HttpHandlerOptions,
450
+ cb: (err: any, data?: PredictCommandOutput) => void
451
+ ): void;
452
+
453
+ updateBatchPrediction(
454
+ args: UpdateBatchPredictionCommandInput,
455
+ options?: __HttpHandlerOptions
456
+ ): Promise<UpdateBatchPredictionCommandOutput>;
457
+ updateBatchPrediction(
458
+ args: UpdateBatchPredictionCommandInput,
459
+ cb: (err: any, data?: UpdateBatchPredictionCommandOutput) => void
460
+ ): void;
461
+ updateBatchPrediction(
462
+ args: UpdateBatchPredictionCommandInput,
463
+ options: __HttpHandlerOptions,
464
+ cb: (err: any, data?: UpdateBatchPredictionCommandOutput) => void
465
+ ): void;
466
+
467
+ updateDataSource(
468
+ args: UpdateDataSourceCommandInput,
469
+ options?: __HttpHandlerOptions
470
+ ): Promise<UpdateDataSourceCommandOutput>;
471
+ updateDataSource(
472
+ args: UpdateDataSourceCommandInput,
473
+ cb: (err: any, data?: UpdateDataSourceCommandOutput) => void
474
+ ): void;
475
+ updateDataSource(
476
+ args: UpdateDataSourceCommandInput,
477
+ options: __HttpHandlerOptions,
478
+ cb: (err: any, data?: UpdateDataSourceCommandOutput) => void
479
+ ): void;
480
+
481
+ updateEvaluation(
482
+ args: UpdateEvaluationCommandInput,
483
+ options?: __HttpHandlerOptions
484
+ ): Promise<UpdateEvaluationCommandOutput>;
485
+ updateEvaluation(
486
+ args: UpdateEvaluationCommandInput,
487
+ cb: (err: any, data?: UpdateEvaluationCommandOutput) => void
488
+ ): void;
489
+ updateEvaluation(
490
+ args: UpdateEvaluationCommandInput,
491
+ options: __HttpHandlerOptions,
492
+ cb: (err: any, data?: UpdateEvaluationCommandOutput) => void
493
+ ): void;
494
+
495
+ updateMLModel(
496
+ args: UpdateMLModelCommandInput,
497
+ options?: __HttpHandlerOptions
498
+ ): Promise<UpdateMLModelCommandOutput>;
499
+ updateMLModel(
500
+ args: UpdateMLModelCommandInput,
501
+ cb: (err: any, data?: UpdateMLModelCommandOutput) => void
502
+ ): void;
503
+ updateMLModel(
504
+ args: UpdateMLModelCommandInput,
505
+ options: __HttpHandlerOptions,
506
+ cb: (err: any, data?: UpdateMLModelCommandOutput) => void
507
+ ): void;
508
+ }