@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,17 +1,37 @@
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 { UpdateEvaluationInput, UpdateEvaluationOutput } from "../models/models_0";
5
- export interface UpdateEvaluationCommandInput extends UpdateEvaluationInput {
6
- }
7
- export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateEvaluationCommand extends $Command<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
11
- readonly input: UpdateEvaluationCommandInput;
12
- constructor(input: UpdateEvaluationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 {
14
+ UpdateEvaluationInput,
15
+ UpdateEvaluationOutput,
16
+ } from "../models/models_0";
17
+ export interface UpdateEvaluationCommandInput extends UpdateEvaluationInput {}
18
+ export interface UpdateEvaluationCommandOutput
19
+ extends UpdateEvaluationOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateEvaluationCommand extends $Command<
23
+ UpdateEvaluationCommandInput,
24
+ UpdateEvaluationCommandOutput,
25
+ MachineLearningClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateEvaluationCommandInput;
28
+ constructor(input: UpdateEvaluationCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MachineLearningClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
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 { UpdateMLModelInput, UpdateMLModelOutput } from "../models/models_0";
5
- export interface UpdateMLModelCommandInput extends UpdateMLModelInput {
6
- }
7
- export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateMLModelCommand extends $Command<UpdateMLModelCommandInput, UpdateMLModelCommandOutput, MachineLearningClientResolvedConfig> {
11
- readonly input: UpdateMLModelCommandInput;
12
- constructor(input: UpdateMLModelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMLModelCommandInput, UpdateMLModelCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
19
+ export declare class UpdateMLModelCommand extends $Command<
20
+ UpdateMLModelCommandInput,
21
+ UpdateMLModelCommandOutput,
22
+ MachineLearningClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateMLModelCommandInput;
25
+ constructor(input: UpdateMLModelCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MachineLearningClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdateMLModelCommandInput, UpdateMLModelCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class MachineLearningServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class MachineLearningServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";