@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,39 @@
|
|
|
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
|
+
CreateDataSourceFromS3Input,
|
|
15
|
+
CreateDataSourceFromS3Output,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateDataSourceFromS3CommandInput
|
|
18
|
+
extends CreateDataSourceFromS3Input {}
|
|
19
|
+
export interface CreateDataSourceFromS3CommandOutput
|
|
20
|
+
extends CreateDataSourceFromS3Output,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateDataSourceFromS3Command extends $Command<
|
|
23
|
+
CreateDataSourceFromS3CommandInput,
|
|
24
|
+
CreateDataSourceFromS3CommandOutput,
|
|
25
|
+
MachineLearningClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateDataSourceFromS3CommandInput;
|
|
28
|
+
constructor(input: CreateDataSourceFromS3CommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateDataSourceFromS3CommandInput,
|
|
35
|
+
CreateDataSourceFromS3CommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
CreateEvaluationInput,
|
|
15
|
+
CreateEvaluationOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateEvaluationCommandInput extends CreateEvaluationInput {}
|
|
18
|
+
export interface CreateEvaluationCommandOutput
|
|
19
|
+
extends CreateEvaluationOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CreateEvaluationCommand extends $Command<
|
|
22
|
+
CreateEvaluationCommandInput,
|
|
23
|
+
CreateEvaluationCommandOutput,
|
|
24
|
+
MachineLearningClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CreateEvaluationCommandInput;
|
|
27
|
+
constructor(input: CreateEvaluationCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateEvaluationCommandInput, CreateEvaluationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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 { CreateMLModelInput, CreateMLModelOutput } from "../models/models_0";
|
|
14
|
+
export interface CreateMLModelCommandInput extends CreateMLModelInput {}
|
|
15
|
+
export interface CreateMLModelCommandOutput
|
|
16
|
+
extends CreateMLModelOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class CreateMLModelCommand extends $Command<
|
|
19
|
+
CreateMLModelCommandInput,
|
|
20
|
+
CreateMLModelCommandOutput,
|
|
21
|
+
MachineLearningClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: CreateMLModelCommandInput;
|
|
24
|
+
constructor(input: CreateMLModelCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<CreateMLModelCommandInput, CreateMLModelCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
CreateRealtimeEndpointInput,
|
|
15
|
+
CreateRealtimeEndpointOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateRealtimeEndpointCommandInput
|
|
18
|
+
extends CreateRealtimeEndpointInput {}
|
|
19
|
+
export interface CreateRealtimeEndpointCommandOutput
|
|
20
|
+
extends CreateRealtimeEndpointOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateRealtimeEndpointCommand extends $Command<
|
|
23
|
+
CreateRealtimeEndpointCommandInput,
|
|
24
|
+
CreateRealtimeEndpointCommandOutput,
|
|
25
|
+
MachineLearningClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateRealtimeEndpointCommandInput;
|
|
28
|
+
constructor(input: CreateRealtimeEndpointCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateRealtimeEndpointCommandInput,
|
|
35
|
+
CreateRealtimeEndpointCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DeleteBatchPredictionInput,
|
|
15
|
+
DeleteBatchPredictionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteBatchPredictionCommandInput
|
|
18
|
+
extends DeleteBatchPredictionInput {}
|
|
19
|
+
export interface DeleteBatchPredictionCommandOutput
|
|
20
|
+
extends DeleteBatchPredictionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteBatchPredictionCommand extends $Command<
|
|
23
|
+
DeleteBatchPredictionCommandInput,
|
|
24
|
+
DeleteBatchPredictionCommandOutput,
|
|
25
|
+
MachineLearningClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteBatchPredictionCommandInput;
|
|
28
|
+
constructor(input: DeleteBatchPredictionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteBatchPredictionCommandInput,
|
|
35
|
+
DeleteBatchPredictionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
DeleteDataSourceInput,
|
|
15
|
+
DeleteDataSourceOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteDataSourceCommandInput extends DeleteDataSourceInput {}
|
|
18
|
+
export interface DeleteDataSourceCommandOutput
|
|
19
|
+
extends DeleteDataSourceOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeleteDataSourceCommand extends $Command<
|
|
22
|
+
DeleteDataSourceCommandInput,
|
|
23
|
+
DeleteDataSourceCommandOutput,
|
|
24
|
+
MachineLearningClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeleteDataSourceCommandInput;
|
|
27
|
+
constructor(input: DeleteDataSourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
DeleteEvaluationInput,
|
|
15
|
+
DeleteEvaluationOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteEvaluationCommandInput extends DeleteEvaluationInput {}
|
|
18
|
+
export interface DeleteEvaluationCommandOutput
|
|
19
|
+
extends DeleteEvaluationOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeleteEvaluationCommand extends $Command<
|
|
22
|
+
DeleteEvaluationCommandInput,
|
|
23
|
+
DeleteEvaluationCommandOutput,
|
|
24
|
+
MachineLearningClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeleteEvaluationCommandInput;
|
|
27
|
+
constructor(input: DeleteEvaluationCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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 { DeleteMLModelInput, DeleteMLModelOutput } from "../models/models_0";
|
|
14
|
+
export interface DeleteMLModelCommandInput extends DeleteMLModelInput {}
|
|
15
|
+
export interface DeleteMLModelCommandOutput
|
|
16
|
+
extends DeleteMLModelOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteMLModelCommand extends $Command<
|
|
19
|
+
DeleteMLModelCommandInput,
|
|
20
|
+
DeleteMLModelCommandOutput,
|
|
21
|
+
MachineLearningClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteMLModelCommandInput;
|
|
24
|
+
constructor(input: DeleteMLModelCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteMLModelCommandInput, DeleteMLModelCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DeleteRealtimeEndpointInput,
|
|
15
|
+
DeleteRealtimeEndpointOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteRealtimeEndpointCommandInput
|
|
18
|
+
extends DeleteRealtimeEndpointInput {}
|
|
19
|
+
export interface DeleteRealtimeEndpointCommandOutput
|
|
20
|
+
extends DeleteRealtimeEndpointOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteRealtimeEndpointCommand extends $Command<
|
|
23
|
+
DeleteRealtimeEndpointCommandInput,
|
|
24
|
+
DeleteRealtimeEndpointCommandOutput,
|
|
25
|
+
MachineLearningClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteRealtimeEndpointCommandInput;
|
|
28
|
+
constructor(input: DeleteRealtimeEndpointCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteRealtimeEndpointCommandInput,
|
|
35
|
+
DeleteRealtimeEndpointCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 { DeleteTagsInput, DeleteTagsOutput } from "../models/models_0";
|
|
14
|
+
export interface DeleteTagsCommandInput extends DeleteTagsInput {}
|
|
15
|
+
export interface DeleteTagsCommandOutput
|
|
16
|
+
extends DeleteTagsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteTagsCommand extends $Command<
|
|
19
|
+
DeleteTagsCommandInput,
|
|
20
|
+
DeleteTagsCommandOutput,
|
|
21
|
+
MachineLearningClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteTagsCommandInput;
|
|
24
|
+
constructor(input: DeleteTagsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DescribeBatchPredictionsInput,
|
|
15
|
+
DescribeBatchPredictionsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBatchPredictionsCommandInput
|
|
18
|
+
extends DescribeBatchPredictionsInput {}
|
|
19
|
+
export interface DescribeBatchPredictionsCommandOutput
|
|
20
|
+
extends DescribeBatchPredictionsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeBatchPredictionsCommand extends $Command<
|
|
23
|
+
DescribeBatchPredictionsCommandInput,
|
|
24
|
+
DescribeBatchPredictionsCommandOutput,
|
|
25
|
+
MachineLearningClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeBatchPredictionsCommandInput;
|
|
28
|
+
constructor(input: DescribeBatchPredictionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeBatchPredictionsCommandInput,
|
|
35
|
+
DescribeBatchPredictionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|