@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/MachineLearning.d.ts +508 -145
- package/dist-types/ts3.4/MachineLearningClient.d.ts +298 -101
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +34 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1200 -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 +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +4 -4
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +13 -7
- package/package.json +36 -36
|
@@ -1,17 +1,38 @@
|
|
|
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 {
|
|
14
|
+
DescribeDataSourcesInput,
|
|
15
|
+
DescribeDataSourcesOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeDataSourcesCommandInput
|
|
18
|
+
extends DescribeDataSourcesInput {}
|
|
19
|
+
export interface DescribeDataSourcesCommandOutput
|
|
20
|
+
extends DescribeDataSourcesOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeDataSourcesCommand extends $Command<
|
|
24
|
+
DescribeDataSourcesCommandInput,
|
|
25
|
+
DescribeDataSourcesCommandOutput,
|
|
26
|
+
MachineLearningClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeDataSourcesCommandInput;
|
|
29
|
+
constructor(input: DescribeDataSourcesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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 {
|
|
14
|
+
DescribeEvaluationsInput,
|
|
15
|
+
DescribeEvaluationsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEvaluationsCommandInput
|
|
18
|
+
extends DescribeEvaluationsInput {}
|
|
19
|
+
export interface DescribeEvaluationsCommandOutput
|
|
20
|
+
extends DescribeEvaluationsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeEvaluationsCommand extends $Command<
|
|
24
|
+
DescribeEvaluationsCommandInput,
|
|
25
|
+
DescribeEvaluationsCommandOutput,
|
|
26
|
+
MachineLearningClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeEvaluationsCommandInput;
|
|
29
|
+
constructor(input: DescribeEvaluationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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 {
|
|
14
|
+
DescribeMLModelsInput,
|
|
15
|
+
DescribeMLModelsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeMLModelsCommandInput extends DescribeMLModelsInput {}
|
|
18
|
+
export interface DescribeMLModelsCommandOutput
|
|
19
|
+
extends DescribeMLModelsOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeMLModelsCommand extends $Command<
|
|
23
|
+
DescribeMLModelsCommandInput,
|
|
24
|
+
DescribeMLModelsCommandOutput,
|
|
25
|
+
MachineLearningClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeMLModelsCommandInput;
|
|
28
|
+
constructor(input: DescribeMLModelsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0";
|
|
14
|
+
export interface DescribeTagsCommandInput extends DescribeTagsInput {}
|
|
15
|
+
export interface DescribeTagsCommandOutput
|
|
16
|
+
extends DescribeTagsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DescribeTagsCommand extends $Command<
|
|
20
|
+
DescribeTagsCommandInput,
|
|
21
|
+
DescribeTagsCommandOutput,
|
|
22
|
+
MachineLearningClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeTagsCommandInput;
|
|
25
|
+
constructor(input: DescribeTagsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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 {
|
|
14
|
+
GetBatchPredictionInput,
|
|
15
|
+
GetBatchPredictionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetBatchPredictionCommandInput
|
|
18
|
+
extends GetBatchPredictionInput {}
|
|
19
|
+
export interface GetBatchPredictionCommandOutput
|
|
20
|
+
extends GetBatchPredictionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetBatchPredictionCommand extends $Command<
|
|
24
|
+
GetBatchPredictionCommandInput,
|
|
25
|
+
GetBatchPredictionCommandOutput,
|
|
26
|
+
MachineLearningClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetBatchPredictionCommandInput;
|
|
29
|
+
constructor(input: GetBatchPredictionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { GetDataSourceInput, GetDataSourceOutput } from "../models/models_0";
|
|
14
|
+
export interface GetDataSourceCommandInput extends GetDataSourceInput {}
|
|
15
|
+
export interface GetDataSourceCommandOutput
|
|
16
|
+
extends GetDataSourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetDataSourceCommand extends $Command<
|
|
20
|
+
GetDataSourceCommandInput,
|
|
21
|
+
GetDataSourceCommandOutput,
|
|
22
|
+
MachineLearningClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetDataSourceCommandInput;
|
|
25
|
+
constructor(input: GetDataSourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetDataSourceCommandInput, GetDataSourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { GetEvaluationInput, GetEvaluationOutput } from "../models/models_0";
|
|
14
|
+
export interface GetEvaluationCommandInput extends GetEvaluationInput {}
|
|
15
|
+
export interface GetEvaluationCommandOutput
|
|
16
|
+
extends GetEvaluationOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetEvaluationCommand extends $Command<
|
|
20
|
+
GetEvaluationCommandInput,
|
|
21
|
+
GetEvaluationCommandOutput,
|
|
22
|
+
MachineLearningClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetEvaluationCommandInput;
|
|
25
|
+
constructor(input: GetEvaluationCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetEvaluationCommandInput, GetEvaluationCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { GetMLModelInput, GetMLModelOutput } from "../models/models_0";
|
|
14
|
+
export interface GetMLModelCommandInput extends GetMLModelInput {}
|
|
15
|
+
export interface GetMLModelCommandOutput
|
|
16
|
+
extends GetMLModelOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetMLModelCommand extends $Command<
|
|
20
|
+
GetMLModelCommandInput,
|
|
21
|
+
GetMLModelCommandOutput,
|
|
22
|
+
MachineLearningClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetMLModelCommandInput;
|
|
25
|
+
constructor(input: GetMLModelCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetMLModelCommandInput, GetMLModelCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -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 { PredictInput, PredictOutput } from "../models/models_0";
|
|
14
|
+
export interface PredictCommandInput extends PredictInput {}
|
|
15
|
+
export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class PredictCommand extends $Command<
|
|
18
|
+
PredictCommandInput,
|
|
19
|
+
PredictCommandOutput,
|
|
20
|
+
MachineLearningClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: PredictCommandInput;
|
|
23
|
+
constructor(input: PredictCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PredictCommandInput, PredictCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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 {
|
|
14
|
+
UpdateBatchPredictionInput,
|
|
15
|
+
UpdateBatchPredictionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateBatchPredictionCommandInput
|
|
18
|
+
extends UpdateBatchPredictionInput {}
|
|
19
|
+
export interface UpdateBatchPredictionCommandOutput
|
|
20
|
+
extends UpdateBatchPredictionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateBatchPredictionCommand extends $Command<
|
|
24
|
+
UpdateBatchPredictionCommandInput,
|
|
25
|
+
UpdateBatchPredictionCommandOutput,
|
|
26
|
+
MachineLearningClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateBatchPredictionCommandInput;
|
|
29
|
+
constructor(input: UpdateBatchPredictionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateBatchPredictionCommandInput,
|
|
37
|
+
UpdateBatchPredictionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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 {
|
|
14
|
+
UpdateDataSourceInput,
|
|
15
|
+
UpdateDataSourceOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateDataSourceCommandInput extends UpdateDataSourceInput {}
|
|
18
|
+
export interface UpdateDataSourceCommandOutput
|
|
19
|
+
extends UpdateDataSourceOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateDataSourceCommand extends $Command<
|
|
23
|
+
UpdateDataSourceCommandInput,
|
|
24
|
+
UpdateDataSourceCommandOutput,
|
|
25
|
+
MachineLearningClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateDataSourceCommandInput;
|
|
28
|
+
constructor(input: UpdateDataSourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|