@aws-sdk/client-machine-learning 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/MachineLearning.d.ts +480 -145
- package/dist-types/ts3.4/MachineLearningClient.d.ts +273 -101
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +28 -28
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/MachineLearningServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +814 -1129
- package/dist-types/ts3.4/pagination/DescribeBatchPredictionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeDataSourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEvaluationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeMLModelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +341 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/dist-types/ts3.4/waiters/index.d.ts +4 -4
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +11 -7
- package/package.json +36 -36
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeBatchPredictionsCommandInput,
|
|
4
|
+
DescribeBatchPredictionsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeBatchPredictionsCommand";
|
|
6
|
+
import { MachineLearningPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeBatchPredictions(
|
|
8
|
+
config: MachineLearningPaginationConfiguration,
|
|
9
|
+
input: DescribeBatchPredictionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeBatchPredictionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeDataSourcesCommandInput,
|
|
4
|
+
DescribeDataSourcesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDataSourcesCommand";
|
|
6
|
+
import { MachineLearningPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeDataSources(
|
|
8
|
+
config: MachineLearningPaginationConfiguration,
|
|
9
|
+
input: DescribeDataSourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeDataSourcesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeEvaluationsCommandInput,
|
|
4
|
+
DescribeEvaluationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeEvaluationsCommand";
|
|
6
|
+
import { MachineLearningPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeEvaluations(
|
|
8
|
+
config: MachineLearningPaginationConfiguration,
|
|
9
|
+
input: DescribeEvaluationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeEvaluationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeMLModelsCommandInput,
|
|
4
|
+
DescribeMLModelsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeMLModelsCommand";
|
|
6
|
+
import { MachineLearningPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeMLModels(
|
|
8
|
+
config: MachineLearningPaginationConfiguration,
|
|
9
|
+
input: DescribeMLModelsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeMLModelsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { MachineLearning } from "../MachineLearning";
|
|
3
|
-
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
-
export interface MachineLearningPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { MachineLearning } from "../MachineLearning";
|
|
3
|
+
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
export interface MachineLearningPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: MachineLearning | MachineLearningClient;
|
|
7
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./DescribeBatchPredictionsPaginator";
|
|
2
|
-
export * from "./DescribeDataSourcesPaginator";
|
|
3
|
-
export * from "./DescribeEvaluationsPaginator";
|
|
4
|
-
export * from "./DescribeMLModelsPaginator";
|
|
5
|
-
export * from "./Interfaces";
|
|
1
|
+
export * from "./DescribeBatchPredictionsPaginator";
|
|
2
|
+
export * from "./DescribeDataSourcesPaginator";
|
|
3
|
+
export * from "./DescribeEvaluationsPaginator";
|
|
4
|
+
export * from "./DescribeMLModelsPaginator";
|
|
5
|
+
export * from "./Interfaces";
|
|
@@ -1,86 +1,341 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AddTagsCommandInput,
|
|
8
|
+
AddTagsCommandOutput,
|
|
9
|
+
} from "../commands/AddTagsCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateBatchPredictionCommandInput,
|
|
12
|
+
CreateBatchPredictionCommandOutput,
|
|
13
|
+
} from "../commands/CreateBatchPredictionCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateDataSourceFromRDSCommandInput,
|
|
16
|
+
CreateDataSourceFromRDSCommandOutput,
|
|
17
|
+
} from "../commands/CreateDataSourceFromRDSCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateDataSourceFromRedshiftCommandInput,
|
|
20
|
+
CreateDataSourceFromRedshiftCommandOutput,
|
|
21
|
+
} from "../commands/CreateDataSourceFromRedshiftCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateDataSourceFromS3CommandInput,
|
|
24
|
+
CreateDataSourceFromS3CommandOutput,
|
|
25
|
+
} from "../commands/CreateDataSourceFromS3Command";
|
|
26
|
+
import {
|
|
27
|
+
CreateEvaluationCommandInput,
|
|
28
|
+
CreateEvaluationCommandOutput,
|
|
29
|
+
} from "../commands/CreateEvaluationCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateMLModelCommandInput,
|
|
32
|
+
CreateMLModelCommandOutput,
|
|
33
|
+
} from "../commands/CreateMLModelCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateRealtimeEndpointCommandInput,
|
|
36
|
+
CreateRealtimeEndpointCommandOutput,
|
|
37
|
+
} from "../commands/CreateRealtimeEndpointCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteBatchPredictionCommandInput,
|
|
40
|
+
DeleteBatchPredictionCommandOutput,
|
|
41
|
+
} from "../commands/DeleteBatchPredictionCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteDataSourceCommandInput,
|
|
44
|
+
DeleteDataSourceCommandOutput,
|
|
45
|
+
} from "../commands/DeleteDataSourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteEvaluationCommandInput,
|
|
48
|
+
DeleteEvaluationCommandOutput,
|
|
49
|
+
} from "../commands/DeleteEvaluationCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteMLModelCommandInput,
|
|
52
|
+
DeleteMLModelCommandOutput,
|
|
53
|
+
} from "../commands/DeleteMLModelCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteRealtimeEndpointCommandInput,
|
|
56
|
+
DeleteRealtimeEndpointCommandOutput,
|
|
57
|
+
} from "../commands/DeleteRealtimeEndpointCommand";
|
|
58
|
+
import {
|
|
59
|
+
DeleteTagsCommandInput,
|
|
60
|
+
DeleteTagsCommandOutput,
|
|
61
|
+
} from "../commands/DeleteTagsCommand";
|
|
62
|
+
import {
|
|
63
|
+
DescribeBatchPredictionsCommandInput,
|
|
64
|
+
DescribeBatchPredictionsCommandOutput,
|
|
65
|
+
} from "../commands/DescribeBatchPredictionsCommand";
|
|
66
|
+
import {
|
|
67
|
+
DescribeDataSourcesCommandInput,
|
|
68
|
+
DescribeDataSourcesCommandOutput,
|
|
69
|
+
} from "../commands/DescribeDataSourcesCommand";
|
|
70
|
+
import {
|
|
71
|
+
DescribeEvaluationsCommandInput,
|
|
72
|
+
DescribeEvaluationsCommandOutput,
|
|
73
|
+
} from "../commands/DescribeEvaluationsCommand";
|
|
74
|
+
import {
|
|
75
|
+
DescribeMLModelsCommandInput,
|
|
76
|
+
DescribeMLModelsCommandOutput,
|
|
77
|
+
} from "../commands/DescribeMLModelsCommand";
|
|
78
|
+
import {
|
|
79
|
+
DescribeTagsCommandInput,
|
|
80
|
+
DescribeTagsCommandOutput,
|
|
81
|
+
} from "../commands/DescribeTagsCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetBatchPredictionCommandInput,
|
|
84
|
+
GetBatchPredictionCommandOutput,
|
|
85
|
+
} from "../commands/GetBatchPredictionCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetDataSourceCommandInput,
|
|
88
|
+
GetDataSourceCommandOutput,
|
|
89
|
+
} from "../commands/GetDataSourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
GetEvaluationCommandInput,
|
|
92
|
+
GetEvaluationCommandOutput,
|
|
93
|
+
} from "../commands/GetEvaluationCommand";
|
|
94
|
+
import {
|
|
95
|
+
GetMLModelCommandInput,
|
|
96
|
+
GetMLModelCommandOutput,
|
|
97
|
+
} from "../commands/GetMLModelCommand";
|
|
98
|
+
import {
|
|
99
|
+
PredictCommandInput,
|
|
100
|
+
PredictCommandOutput,
|
|
101
|
+
} from "../commands/PredictCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateBatchPredictionCommandInput,
|
|
104
|
+
UpdateBatchPredictionCommandOutput,
|
|
105
|
+
} from "../commands/UpdateBatchPredictionCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateDataSourceCommandInput,
|
|
108
|
+
UpdateDataSourceCommandOutput,
|
|
109
|
+
} from "../commands/UpdateDataSourceCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateEvaluationCommandInput,
|
|
112
|
+
UpdateEvaluationCommandOutput,
|
|
113
|
+
} from "../commands/UpdateEvaluationCommand";
|
|
114
|
+
import {
|
|
115
|
+
UpdateMLModelCommandInput,
|
|
116
|
+
UpdateMLModelCommandOutput,
|
|
117
|
+
} from "../commands/UpdateMLModelCommand";
|
|
118
|
+
export declare const serializeAws_json1_1AddTagsCommand: (
|
|
119
|
+
input: AddTagsCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1CreateBatchPredictionCommand: (
|
|
123
|
+
input: CreateBatchPredictionCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_1CreateDataSourceFromRDSCommand: (
|
|
127
|
+
input: CreateDataSourceFromRDSCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1CreateDataSourceFromRedshiftCommand: (
|
|
131
|
+
input: CreateDataSourceFromRedshiftCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_1CreateDataSourceFromS3Command: (
|
|
135
|
+
input: CreateDataSourceFromS3CommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_1CreateEvaluationCommand: (
|
|
139
|
+
input: CreateEvaluationCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_1CreateMLModelCommand: (
|
|
143
|
+
input: CreateMLModelCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_1CreateRealtimeEndpointCommand: (
|
|
147
|
+
input: CreateRealtimeEndpointCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_1DeleteBatchPredictionCommand: (
|
|
151
|
+
input: DeleteBatchPredictionCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_1DeleteDataSourceCommand: (
|
|
155
|
+
input: DeleteDataSourceCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_1DeleteEvaluationCommand: (
|
|
159
|
+
input: DeleteEvaluationCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_1DeleteMLModelCommand: (
|
|
163
|
+
input: DeleteMLModelCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_1DeleteRealtimeEndpointCommand: (
|
|
167
|
+
input: DeleteRealtimeEndpointCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_1DeleteTagsCommand: (
|
|
171
|
+
input: DeleteTagsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_1DescribeBatchPredictionsCommand: (
|
|
175
|
+
input: DescribeBatchPredictionsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_1DescribeDataSourcesCommand: (
|
|
179
|
+
input: DescribeDataSourcesCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_1DescribeEvaluationsCommand: (
|
|
183
|
+
input: DescribeEvaluationsCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_1DescribeMLModelsCommand: (
|
|
187
|
+
input: DescribeMLModelsCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_1DescribeTagsCommand: (
|
|
191
|
+
input: DescribeTagsCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_1GetBatchPredictionCommand: (
|
|
195
|
+
input: GetBatchPredictionCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_json1_1GetDataSourceCommand: (
|
|
199
|
+
input: GetDataSourceCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_json1_1GetEvaluationCommand: (
|
|
203
|
+
input: GetEvaluationCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_json1_1GetMLModelCommand: (
|
|
207
|
+
input: GetMLModelCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_json1_1PredictCommand: (
|
|
211
|
+
input: PredictCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_json1_1UpdateBatchPredictionCommand: (
|
|
215
|
+
input: UpdateBatchPredictionCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_json1_1UpdateDataSourceCommand: (
|
|
219
|
+
input: UpdateDataSourceCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_json1_1UpdateEvaluationCommand: (
|
|
223
|
+
input: UpdateEvaluationCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_json1_1UpdateMLModelCommand: (
|
|
227
|
+
input: UpdateMLModelCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const deserializeAws_json1_1AddTagsCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<AddTagsCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_json1_1CreateBatchPredictionCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<CreateBatchPredictionCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_json1_1CreateDataSourceFromRDSCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<CreateDataSourceFromRDSCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_json1_1CreateDataSourceFromRedshiftCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<CreateDataSourceFromRedshiftCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_json1_1CreateDataSourceFromS3Command: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<CreateDataSourceFromS3CommandOutput>;
|
|
250
|
+
export declare const deserializeAws_json1_1CreateEvaluationCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<CreateEvaluationCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_json1_1CreateMLModelCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<CreateMLModelCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_1CreateRealtimeEndpointCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<CreateRealtimeEndpointCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_1DeleteBatchPredictionCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<DeleteBatchPredictionCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_1DeleteDataSourceCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<DeleteDataSourceCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_1DeleteEvaluationCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<DeleteEvaluationCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_1DeleteMLModelCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DeleteMLModelCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_1DeleteRealtimeEndpointCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<DeleteRealtimeEndpointCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_json1_1DeleteTagsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<DeleteTagsCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_json1_1DescribeBatchPredictionsCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<DescribeBatchPredictionsCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_json1_1DescribeDataSourcesCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<DescribeDataSourcesCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_json1_1DescribeEvaluationsCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<DescribeEvaluationsCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_json1_1DescribeMLModelsCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<DescribeMLModelsCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_json1_1DescribeTagsCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<DescribeTagsCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_json1_1GetBatchPredictionCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<GetBatchPredictionCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_json1_1GetDataSourceCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<GetDataSourceCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_json1_1GetEvaluationCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<GetEvaluationCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_json1_1GetMLModelCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<GetMLModelCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_json1_1PredictCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<PredictCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_json1_1UpdateBatchPredictionCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<UpdateBatchPredictionCommandOutput>;
|
|
330
|
+
export declare const deserializeAws_json1_1UpdateDataSourceCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<UpdateDataSourceCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_json1_1UpdateEvaluationCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<UpdateEvaluationCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_json1_1UpdateMLModelCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<UpdateMLModelCommandOutput>;
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: MachineLearningClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|