@aws-sdk/client-machine-learning 3.289.0 → 3.290.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 (29) hide show
  1. package/dist-types/commands/AddTagsCommand.d.ts +14 -0
  2. package/dist-types/commands/CreateBatchPredictionCommand.d.ts +10 -0
  3. package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +10 -0
  4. package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +10 -0
  5. package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +10 -0
  6. package/dist-types/commands/CreateEvaluationCommand.d.ts +10 -0
  7. package/dist-types/commands/CreateMLModelCommand.d.ts +10 -0
  8. package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +10 -0
  9. package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +10 -0
  10. package/dist-types/commands/DeleteDataSourceCommand.d.ts +10 -0
  11. package/dist-types/commands/DeleteEvaluationCommand.d.ts +10 -0
  12. package/dist-types/commands/DeleteMLModelCommand.d.ts +10 -0
  13. package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +10 -0
  14. package/dist-types/commands/DeleteTagsCommand.d.ts +12 -0
  15. package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +7 -0
  16. package/dist-types/commands/DescribeDataSourcesCommand.d.ts +7 -0
  17. package/dist-types/commands/DescribeEvaluationsCommand.d.ts +7 -0
  18. package/dist-types/commands/DescribeMLModelsCommand.d.ts +7 -0
  19. package/dist-types/commands/DescribeTagsCommand.d.ts +10 -0
  20. package/dist-types/commands/GetBatchPredictionCommand.d.ts +10 -0
  21. package/dist-types/commands/GetDataSourceCommand.d.ts +10 -0
  22. package/dist-types/commands/GetEvaluationCommand.d.ts +10 -0
  23. package/dist-types/commands/GetMLModelCommand.d.ts +10 -0
  24. package/dist-types/commands/PredictCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +10 -0
  26. package/dist-types/commands/UpdateDataSourceCommand.d.ts +10 -0
  27. package/dist-types/commands/UpdateEvaluationCommand.d.ts +10 -0
  28. package/dist-types/commands/UpdateMLModelCommand.d.ts +10 -0
  29. package/package.json +31 -31
@@ -31,6 +31,20 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
31
31
  * @see {@link AddTagsCommandOutput} for command's `response` shape.
32
32
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServerException} (server fault)
35
+ * <p>An error on the server occurred when trying to process a request.</p>
36
+ *
37
+ * @throws {@link InvalidInputException} (client fault)
38
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
39
+ *
40
+ * @throws {@link InvalidTagException} (client fault)
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A specified resource cannot be located.</p>
44
+ *
45
+ * @throws {@link TagLimitExceededException} (client fault)
46
+ *
47
+ *
34
48
  */
35
49
  export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, MachineLearningClientResolvedConfig> {
36
50
  readonly input: AddTagsCommandInput;
@@ -40,6 +40,16 @@ export interface CreateBatchPredictionCommandOutput extends CreateBatchPredictio
40
40
  * @see {@link CreateBatchPredictionCommandOutput} for command's `response` shape.
41
41
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
42
42
  *
43
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
44
+ * <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
45
+ *
46
+ * @throws {@link InternalServerException} (server fault)
47
+ * <p>An error on the server occurred when trying to process a request.</p>
48
+ *
49
+ * @throws {@link InvalidInputException} (client fault)
50
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
51
+ *
52
+ *
43
53
  */
44
54
  export declare class CreateBatchPredictionCommand extends $Command<CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
45
55
  readonly input: CreateBatchPredictionCommandInput;
@@ -40,6 +40,16 @@ export interface CreateDataSourceFromRDSCommandOutput extends CreateDataSourceFr
40
40
  * @see {@link CreateDataSourceFromRDSCommandOutput} for command's `response` shape.
41
41
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
42
42
  *
43
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
44
+ * <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
45
+ *
46
+ * @throws {@link InternalServerException} (server fault)
47
+ * <p>An error on the server occurred when trying to process a request.</p>
48
+ *
49
+ * @throws {@link InvalidInputException} (client fault)
50
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
51
+ *
52
+ *
43
53
  */
44
54
  export declare class CreateDataSourceFromRDSCommand extends $Command<CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput, MachineLearningClientResolvedConfig> {
45
55
  readonly input: CreateDataSourceFromRDSCommandInput;
@@ -61,6 +61,16 @@ export interface CreateDataSourceFromRedshiftCommandOutput extends CreateDataSou
61
61
  * @see {@link CreateDataSourceFromRedshiftCommandOutput} for command's `response` shape.
62
62
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
63
63
  *
64
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
65
+ * <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>An error on the server occurred when trying to process a request.</p>
69
+ *
70
+ * @throws {@link InvalidInputException} (client fault)
71
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
72
+ *
73
+ *
64
74
  */
65
75
  export declare class CreateDataSourceFromRedshiftCommand extends $Command<CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput, MachineLearningClientResolvedConfig> {
66
76
  readonly input: CreateDataSourceFromRedshiftCommandInput;
@@ -59,6 +59,16 @@ export interface CreateDataSourceFromS3CommandOutput extends CreateDataSourceFro
59
59
  * @see {@link CreateDataSourceFromS3CommandOutput} for command's `response` shape.
60
60
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
61
61
  *
62
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
63
+ * <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
64
+ *
65
+ * @throws {@link InternalServerException} (server fault)
66
+ * <p>An error on the server occurred when trying to process a request.</p>
67
+ *
68
+ * @throws {@link InvalidInputException} (client fault)
69
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
70
+ *
71
+ *
62
72
  */
63
73
  export declare class CreateDataSourceFromS3Command extends $Command<CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput, MachineLearningClientResolvedConfig> {
64
74
  readonly input: CreateDataSourceFromS3CommandInput;
@@ -40,6 +40,16 @@ export interface CreateEvaluationCommandOutput extends CreateEvaluationOutput, _
40
40
  * @see {@link CreateEvaluationCommandOutput} for command's `response` shape.
41
41
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
42
42
  *
43
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
44
+ * <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
45
+ *
46
+ * @throws {@link InternalServerException} (server fault)
47
+ * <p>An error on the server occurred when trying to process a request.</p>
48
+ *
49
+ * @throws {@link InvalidInputException} (client fault)
50
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
51
+ *
52
+ *
43
53
  */
44
54
  export declare class CreateEvaluationCommand extends $Command<CreateEvaluationCommandInput, CreateEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
45
55
  readonly input: CreateEvaluationCommandInput;
@@ -48,6 +48,16 @@ export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __Metad
48
48
  * @see {@link CreateMLModelCommandOutput} for command's `response` shape.
49
49
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
50
50
  *
51
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
52
+ * <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
53
+ *
54
+ * @throws {@link InternalServerException} (server fault)
55
+ * <p>An error on the server occurred when trying to process a request.</p>
56
+ *
57
+ * @throws {@link InvalidInputException} (client fault)
58
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
59
+ *
60
+ *
51
61
  */
52
62
  export declare class CreateMLModelCommand extends $Command<CreateMLModelCommandInput, CreateMLModelCommandOutput, MachineLearningClientResolvedConfig> {
53
63
  readonly input: CreateMLModelCommandInput;
@@ -29,6 +29,16 @@ export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpo
29
29
  * @see {@link CreateRealtimeEndpointCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>A specified resource cannot be located.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class CreateRealtimeEndpointCommand extends $Command<CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig> {
34
44
  readonly input: CreateRealtimeEndpointCommandInput;
@@ -34,6 +34,16 @@ export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictio
34
34
  * @see {@link DeleteBatchPredictionCommandOutput} for command's `response` shape.
35
35
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
36
36
  *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p>An error on the server occurred when trying to process a request.</p>
39
+ *
40
+ * @throws {@link InvalidInputException} (client fault)
41
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
42
+ *
43
+ * @throws {@link ResourceNotFoundException} (client fault)
44
+ * <p>A specified resource cannot be located.</p>
45
+ *
46
+ *
37
47
  */
38
48
  export declare class DeleteBatchPredictionCommand extends $Command<DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
39
49
  readonly input: DeleteBatchPredictionCommandInput;
@@ -32,6 +32,16 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, _
32
32
  * @see {@link DeleteDataSourceCommandOutput} for command's `response` shape.
33
33
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
34
34
  *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>An error on the server occurred when trying to process a request.</p>
37
+ *
38
+ * @throws {@link InvalidInputException} (client fault)
39
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A specified resource cannot be located.</p>
43
+ *
44
+ *
35
45
  */
36
46
  export declare class DeleteDataSourceCommand extends $Command<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput, MachineLearningClientResolvedConfig> {
37
47
  readonly input: DeleteDataSourceCommandInput;
@@ -34,6 +34,16 @@ export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, _
34
34
  * @see {@link DeleteEvaluationCommandOutput} for command's `response` shape.
35
35
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
36
36
  *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p>An error on the server occurred when trying to process a request.</p>
39
+ *
40
+ * @throws {@link InvalidInputException} (client fault)
41
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
42
+ *
43
+ * @throws {@link ResourceNotFoundException} (client fault)
44
+ * <p>A specified resource cannot be located.</p>
45
+ *
46
+ *
37
47
  */
38
48
  export declare class DeleteEvaluationCommand extends $Command<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
39
49
  readonly input: DeleteEvaluationCommandInput;
@@ -34,6 +34,16 @@ export interface DeleteMLModelCommandOutput extends DeleteMLModelOutput, __Metad
34
34
  * @see {@link DeleteMLModelCommandOutput} for command's `response` shape.
35
35
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
36
36
  *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p>An error on the server occurred when trying to process a request.</p>
39
+ *
40
+ * @throws {@link InvalidInputException} (client fault)
41
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
42
+ *
43
+ * @throws {@link ResourceNotFoundException} (client fault)
44
+ * <p>A specified resource cannot be located.</p>
45
+ *
46
+ *
37
47
  */
38
48
  export declare class DeleteMLModelCommand extends $Command<DeleteMLModelCommandInput, DeleteMLModelCommandOutput, MachineLearningClientResolvedConfig> {
39
49
  readonly input: DeleteMLModelCommandInput;
@@ -29,6 +29,16 @@ export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpo
29
29
  * @see {@link DeleteRealtimeEndpointCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>A specified resource cannot be located.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DeleteRealtimeEndpointCommand extends $Command<DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig> {
34
44
  readonly input: DeleteRealtimeEndpointCommandInput;
@@ -30,6 +30,18 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea
30
30
  * @see {@link DeleteTagsCommandOutput} for command's `response` shape.
31
31
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>An error on the server occurred when trying to process a request.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
38
+ *
39
+ * @throws {@link InvalidTagException} (client fault)
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A specified resource cannot be located.</p>
43
+ *
44
+ *
33
45
  */
34
46
  export declare class DeleteTagsCommand extends $Command<DeleteTagsCommandInput, DeleteTagsCommandOutput, MachineLearningClientResolvedConfig> {
35
47
  readonly input: DeleteTagsCommandInput;
@@ -29,6 +29,13 @@ export interface DescribeBatchPredictionsCommandOutput extends DescribeBatchPred
29
29
  * @see {@link DescribeBatchPredictionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class DescribeBatchPredictionsCommand extends $Command<DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput, MachineLearningClientResolvedConfig> {
34
41
  readonly input: DescribeBatchPredictionsCommandInput;
@@ -29,6 +29,13 @@ export interface DescribeDataSourcesCommandOutput extends DescribeDataSourcesOut
29
29
  * @see {@link DescribeDataSourcesCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class DescribeDataSourcesCommand extends $Command<DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput, MachineLearningClientResolvedConfig> {
34
41
  readonly input: DescribeDataSourcesCommandInput;
@@ -29,6 +29,13 @@ export interface DescribeEvaluationsCommandOutput extends DescribeEvaluationsOut
29
29
  * @see {@link DescribeEvaluationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class DescribeEvaluationsCommand extends $Command<DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput, MachineLearningClientResolvedConfig> {
34
41
  readonly input: DescribeEvaluationsCommandInput;
@@ -29,6 +29,13 @@ export interface DescribeMLModelsCommandOutput extends DescribeMLModelsOutput, _
29
29
  * @see {@link DescribeMLModelsCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class DescribeMLModelsCommand extends $Command<DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput, MachineLearningClientResolvedConfig> {
34
41
  readonly input: DescribeMLModelsCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
29
29
  * @see {@link DescribeTagsCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>A specified resource cannot be located.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, MachineLearningClientResolvedConfig> {
34
44
  readonly input: DescribeTagsCommandInput;
@@ -30,6 +30,16 @@ export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutpu
30
30
  * @see {@link GetBatchPredictionCommandOutput} for command's `response` shape.
31
31
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>An error on the server occurred when trying to process a request.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A specified resource cannot be located.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class GetBatchPredictionCommand extends $Command<GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
35
45
  readonly input: GetBatchPredictionCommandInput;
@@ -32,6 +32,16 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad
32
32
  * @see {@link GetDataSourceCommandOutput} for command's `response` shape.
33
33
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
34
34
  *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>An error on the server occurred when trying to process a request.</p>
37
+ *
38
+ * @throws {@link InvalidInputException} (client fault)
39
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A specified resource cannot be located.</p>
43
+ *
44
+ *
35
45
  */
36
46
  export declare class GetDataSourceCommand extends $Command<GetDataSourceCommandInput, GetDataSourceCommandOutput, MachineLearningClientResolvedConfig> {
37
47
  readonly input: GetDataSourceCommandInput;
@@ -29,6 +29,16 @@ export interface GetEvaluationCommandOutput extends GetEvaluationOutput, __Metad
29
29
  * @see {@link GetEvaluationCommandOutput} for command's `response` shape.
30
30
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServerException} (server fault)
33
+ * <p>An error on the server occurred when trying to process a request.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>A specified resource cannot be located.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class GetEvaluationCommand extends $Command<GetEvaluationCommandInput, GetEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
34
44
  readonly input: GetEvaluationCommandInput;
@@ -31,6 +31,16 @@ export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBea
31
31
  * @see {@link GetMLModelCommandOutput} for command's `response` shape.
32
32
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServerException} (server fault)
35
+ * <p>An error on the server occurred when trying to process a request.</p>
36
+ *
37
+ * @throws {@link InvalidInputException} (client fault)
38
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>A specified resource cannot be located.</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class GetMLModelCommand extends $Command<GetMLModelCommandInput, GetMLModelCommandOutput, MachineLearningClientResolvedConfig> {
36
46
  readonly input: GetMLModelCommandInput;
@@ -32,6 +32,22 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {
32
32
  * @see {@link PredictCommandOutput} for command's `response` shape.
33
33
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
34
34
  *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>An error on the server occurred when trying to process a request.</p>
37
+ *
38
+ * @throws {@link InvalidInputException} (client fault)
39
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p>The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as <code>DataSource</code>.</p>
43
+ *
44
+ * @throws {@link PredictorNotMountedException} (client fault)
45
+ * <p>The exception is thrown when a predict request is made to an unmounted <code>MLModel</code>.</p>
46
+ *
47
+ * @throws {@link ResourceNotFoundException} (client fault)
48
+ * <p>A specified resource cannot be located.</p>
49
+ *
50
+ *
35
51
  */
36
52
  export declare class PredictCommand extends $Command<PredictCommandInput, PredictCommandOutput, MachineLearningClientResolvedConfig> {
37
53
  readonly input: PredictCommandInput;
@@ -30,6 +30,16 @@ export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictio
30
30
  * @see {@link UpdateBatchPredictionCommandOutput} for command's `response` shape.
31
31
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>An error on the server occurred when trying to process a request.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A specified resource cannot be located.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class UpdateBatchPredictionCommand extends $Command<UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
35
45
  readonly input: UpdateBatchPredictionCommandInput;
@@ -30,6 +30,16 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _
30
30
  * @see {@link UpdateDataSourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>An error on the server occurred when trying to process a request.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A specified resource cannot be located.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class UpdateDataSourceCommand extends $Command<UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput, MachineLearningClientResolvedConfig> {
35
45
  readonly input: UpdateDataSourceCommandInput;
@@ -30,6 +30,16 @@ export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, _
30
30
  * @see {@link UpdateEvaluationCommandOutput} for command's `response` shape.
31
31
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>An error on the server occurred when trying to process a request.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A specified resource cannot be located.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class UpdateEvaluationCommand extends $Command<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
35
45
  readonly input: UpdateEvaluationCommandInput;
@@ -30,6 +30,16 @@ export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __Metad
30
30
  * @see {@link UpdateMLModelCommandOutput} for command's `response` shape.
31
31
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServerException} (server fault)
34
+ * <p>An error on the server occurred when trying to process a request.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A specified resource cannot be located.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class UpdateMLModelCommand extends $Command<UpdateMLModelCommandInput, UpdateMLModelCommandOutput, MachineLearningClientResolvedConfig> {
35
45
  readonly input: UpdateMLModelCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-machine-learning",
3
3
  "description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,40 +20,40 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-sdk-machinelearning": "3.289.0",
36
- "@aws-sdk/middleware-serde": "3.289.0",
37
- "@aws-sdk/middleware-signing": "3.289.0",
38
- "@aws-sdk/middleware-stack": "3.289.0",
39
- "@aws-sdk/middleware-user-agent": "3.289.0",
40
- "@aws-sdk/node-config-provider": "3.289.0",
41
- "@aws-sdk/node-http-handler": "3.289.0",
42
- "@aws-sdk/protocol-http": "3.289.0",
43
- "@aws-sdk/smithy-client": "3.289.0",
44
- "@aws-sdk/types": "3.289.0",
45
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-sdk-machinelearning": "3.290.0",
36
+ "@aws-sdk/middleware-serde": "3.290.0",
37
+ "@aws-sdk/middleware-signing": "3.290.0",
38
+ "@aws-sdk/middleware-stack": "3.290.0",
39
+ "@aws-sdk/middleware-user-agent": "3.290.0",
40
+ "@aws-sdk/node-config-provider": "3.290.0",
41
+ "@aws-sdk/node-http-handler": "3.290.0",
42
+ "@aws-sdk/protocol-http": "3.290.0",
43
+ "@aws-sdk/smithy-client": "3.290.0",
44
+ "@aws-sdk/types": "3.290.0",
45
+ "@aws-sdk/url-parser": "3.290.0",
46
46
  "@aws-sdk/util-base64": "3.208.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.188.0",
48
48
  "@aws-sdk/util-body-length-node": "3.208.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
51
- "@aws-sdk/util-endpoints": "3.289.0",
52
- "@aws-sdk/util-retry": "3.289.0",
53
- "@aws-sdk/util-user-agent-browser": "3.289.0",
54
- "@aws-sdk/util-user-agent-node": "3.289.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
51
+ "@aws-sdk/util-endpoints": "3.290.0",
52
+ "@aws-sdk/util-retry": "3.290.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
54
+ "@aws-sdk/util-user-agent-node": "3.290.0",
55
55
  "@aws-sdk/util-utf8": "3.254.0",
56
- "@aws-sdk/util-waiter": "3.289.0",
56
+ "@aws-sdk/util-waiter": "3.290.0",
57
57
  "tslib": "^2.3.1"
58
58
  },
59
59
  "devDependencies": {