@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.
Files changed (54) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MachineLearning.d.ts +480 -145
  3. package/dist-types/ts3.4/MachineLearningClient.d.ts +273 -101
  4. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/PredictCommand.d.ts +30 -17
  28. package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +35 -17
  30. package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +32 -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 +7 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +814 -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 +67 -38
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  49. package/dist-types/ts3.4/waiters/index.d.ts +4 -4
  50. package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +11 -7
  51. package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +11 -7
  52. package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +11 -7
  53. package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +11 -7
  54. package/package.json +36 -36
@@ -1,17 +1,32 @@
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
+ 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 { 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
+ export declare class MachineLearningServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";