@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,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MachineLearningClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MachineLearningClient";
|
|
13
|
+
import { UpdateMLModelInput, UpdateMLModelOutput } from "../models/models_0";
|
|
14
|
+
export interface UpdateMLModelCommandInput extends UpdateMLModelInput {}
|
|
15
|
+
export interface UpdateMLModelCommandOutput
|
|
16
|
+
extends UpdateMLModelOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class UpdateMLModelCommand extends $Command<
|
|
19
|
+
UpdateMLModelCommandInput,
|
|
20
|
+
UpdateMLModelCommandOutput,
|
|
21
|
+
MachineLearningClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdateMLModelCommandInput;
|
|
24
|
+
constructor(input: UpdateMLModelCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UpdateMLModelCommandInput, UpdateMLModelCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export * from "./AddTagsCommand";
|
|
2
|
-
export * from "./CreateBatchPredictionCommand";
|
|
3
|
-
export * from "./CreateDataSourceFromRDSCommand";
|
|
4
|
-
export * from "./CreateDataSourceFromRedshiftCommand";
|
|
5
|
-
export * from "./CreateDataSourceFromS3Command";
|
|
6
|
-
export * from "./CreateEvaluationCommand";
|
|
7
|
-
export * from "./CreateMLModelCommand";
|
|
8
|
-
export * from "./CreateRealtimeEndpointCommand";
|
|
9
|
-
export * from "./DeleteBatchPredictionCommand";
|
|
10
|
-
export * from "./DeleteDataSourceCommand";
|
|
11
|
-
export * from "./DeleteEvaluationCommand";
|
|
12
|
-
export * from "./DeleteMLModelCommand";
|
|
13
|
-
export * from "./DeleteRealtimeEndpointCommand";
|
|
14
|
-
export * from "./DeleteTagsCommand";
|
|
15
|
-
export * from "./DescribeBatchPredictionsCommand";
|
|
16
|
-
export * from "./DescribeDataSourcesCommand";
|
|
17
|
-
export * from "./DescribeEvaluationsCommand";
|
|
18
|
-
export * from "./DescribeMLModelsCommand";
|
|
19
|
-
export * from "./DescribeTagsCommand";
|
|
20
|
-
export * from "./GetBatchPredictionCommand";
|
|
21
|
-
export * from "./GetDataSourceCommand";
|
|
22
|
-
export * from "./GetEvaluationCommand";
|
|
23
|
-
export * from "./GetMLModelCommand";
|
|
24
|
-
export * from "./PredictCommand";
|
|
25
|
-
export * from "./UpdateBatchPredictionCommand";
|
|
26
|
-
export * from "./UpdateDataSourceCommand";
|
|
27
|
-
export * from "./UpdateEvaluationCommand";
|
|
28
|
-
export * from "./UpdateMLModelCommand";
|
|
1
|
+
export * from "./AddTagsCommand";
|
|
2
|
+
export * from "./CreateBatchPredictionCommand";
|
|
3
|
+
export * from "./CreateDataSourceFromRDSCommand";
|
|
4
|
+
export * from "./CreateDataSourceFromRedshiftCommand";
|
|
5
|
+
export * from "./CreateDataSourceFromS3Command";
|
|
6
|
+
export * from "./CreateEvaluationCommand";
|
|
7
|
+
export * from "./CreateMLModelCommand";
|
|
8
|
+
export * from "./CreateRealtimeEndpointCommand";
|
|
9
|
+
export * from "./DeleteBatchPredictionCommand";
|
|
10
|
+
export * from "./DeleteDataSourceCommand";
|
|
11
|
+
export * from "./DeleteEvaluationCommand";
|
|
12
|
+
export * from "./DeleteMLModelCommand";
|
|
13
|
+
export * from "./DeleteRealtimeEndpointCommand";
|
|
14
|
+
export * from "./DeleteTagsCommand";
|
|
15
|
+
export * from "./DescribeBatchPredictionsCommand";
|
|
16
|
+
export * from "./DescribeDataSourcesCommand";
|
|
17
|
+
export * from "./DescribeEvaluationsCommand";
|
|
18
|
+
export * from "./DescribeMLModelsCommand";
|
|
19
|
+
export * from "./DescribeTagsCommand";
|
|
20
|
+
export * from "./GetBatchPredictionCommand";
|
|
21
|
+
export * from "./GetDataSourceCommand";
|
|
22
|
+
export * from "./GetEvaluationCommand";
|
|
23
|
+
export * from "./GetMLModelCommand";
|
|
24
|
+
export * from "./PredictCommand";
|
|
25
|
+
export * from "./UpdateBatchPredictionCommand";
|
|
26
|
+
export * from "./UpdateDataSourceCommand";
|
|
27
|
+
export * from "./UpdateEvaluationCommand";
|
|
28
|
+
export * from "./UpdateMLModelCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from "./MachineLearning";
|
|
2
|
-
export * from "./MachineLearningClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export * from "./waiters";
|
|
7
|
-
export { MachineLearningServiceException } from "./models/MachineLearningServiceException";
|
|
1
|
+
export * from "./MachineLearning";
|
|
2
|
+
export * from "./MachineLearningClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./waiters";
|
|
7
|
+
export { MachineLearningServiceException } from "./models/MachineLearningServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class MachineLearningServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|