@aws-sdk/client-sagemaker 3.128.0 → 3.132.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 +35 -0
- package/dist-cjs/SageMaker.js +135 -0
- package/dist-cjs/commands/CreateEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/CreateEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/CreateHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DeleteEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DeleteEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/DescribeEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DescribeHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageVersionCommand.js +3 -3
- package/dist-cjs/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-cjs/commands/ListEdgeDeploymentPlansCommand.js +36 -0
- package/dist-cjs/commands/ListPipelineExecutionStepsCommand.js +3 -3
- package/dist-cjs/commands/ListPipelineParametersForExecutionCommand.js +3 -3
- package/dist-cjs/commands/ListPipelinesCommand.js +3 -3
- package/dist-cjs/commands/ListProcessingJobsCommand.js +3 -3
- package/dist-cjs/commands/ListStageDevicesCommand.js +36 -0
- package/dist-cjs/commands/StartEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/StopEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +72 -54
- package/dist-cjs/models/models_1.js +106 -112
- package/dist-cjs/models/models_2.js +152 -140
- package/dist-cjs/models/models_3.js +162 -3
- package/dist-cjs/pagination/ListEdgeDeploymentPlansPaginator.js +36 -0
- package/dist-cjs/pagination/ListStageDevicesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +720 -18
- package/dist-es/SageMaker.js +135 -0
- package/dist-es/commands/CreateEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/CreateEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/CreateHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DeleteEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DeleteEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/DescribeEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DescribeHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DescribeImageCommand.js +1 -1
- package/dist-es/commands/DescribeImageVersionCommand.js +1 -1
- package/dist-es/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-es/commands/ListEdgeDeploymentPlansCommand.js +39 -0
- package/dist-es/commands/ListPipelineExecutionStepsCommand.js +1 -1
- package/dist-es/commands/ListPipelineParametersForExecutionCommand.js +1 -1
- package/dist-es/commands/ListPipelinesCommand.js +1 -1
- package/dist-es/commands/ListProcessingJobsCommand.js +1 -1
- package/dist-es/commands/ListStageDevicesCommand.js +39 -0
- package/dist-es/commands/StartEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/StopEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +57 -37
- package/dist-es/models/models_1.js +72 -82
- package/dist-es/models/models_2.js +114 -94
- package/dist-es/models/models_3.js +110 -0
- package/dist-es/pagination/ListEdgeDeploymentPlansPaginator.js +75 -0
- package/dist-es/pagination/ListStageDevicesPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +801 -12
- package/dist-types/SageMaker.d.ts +63 -0
- package/dist-types/SageMakerClient.d.ts +11 -2
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +35 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +35 -0
- package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/StopEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +173 -454
- package/dist-types/models/models_1.d.ts +645 -504
- package/dist-types/models/models_2.d.ts +5430 -5423
- package/dist-types/models/models_3.d.ts +730 -3
- package/dist-types/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/SageMaker.d.ts +45 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +11 -2
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +109 -132
- package/dist-types/ts3.4/models/models_1.d.ts +235 -238
- package/dist-types/ts3.4/models/models_2.d.ts +341 -324
- package/dist-types/ts3.4/models/models_3.d.ts +371 -3
- package/dist-types/ts3.4/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +27 -0
- package/package.json +7 -7
|
@@ -0,0 +1,17 @@
|
|
|
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 { DescribeEdgeDeploymentPlanRequest, DescribeEdgeDeploymentPlanResponse } from "../models/models_1";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface DescribeEdgeDeploymentPlanCommandInput extends DescribeEdgeDeploymentPlanRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeEdgeDeploymentPlanCommandOutput extends DescribeEdgeDeploymentPlanResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeEdgeDeploymentPlanCommand extends $Command<DescribeEdgeDeploymentPlanCommandInput, DescribeEdgeDeploymentPlanCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeEdgeDeploymentPlanCommandInput;
|
|
12
|
+
constructor(input: DescribeEdgeDeploymentPlanCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEdgeDeploymentPlanCommandInput, DescribeEdgeDeploymentPlanCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeHyperParameterTuningJobRequest, DescribeHyperParameterTuningJobResponse } from "../models/
|
|
3
|
+
import { DescribeHyperParameterTuningJobRequest, DescribeHyperParameterTuningJobResponse } from "../models/models_2";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface DescribeHyperParameterTuningJobCommandInput extends DescribeHyperParameterTuningJobRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeImageRequest, DescribeImageResponse } from "../models/
|
|
3
|
+
import { DescribeImageRequest, DescribeImageResponse } from "../models/models_2";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface DescribeImageCommandInput extends DescribeImageRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeImageVersionRequest, DescribeImageVersionResponse } from "../models/
|
|
3
|
+
import { DescribeImageVersionRequest, DescribeImageVersionResponse } from "../models/models_2";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface DescribeImageVersionCommandInput extends DescribeImageVersionRequest {
|
|
6
6
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeInferenceRecommendationsJobRequest } from "../models/
|
|
4
|
-
import { DescribeInferenceRecommendationsJobResponse } from "../models/models_2";
|
|
3
|
+
import { DescribeInferenceRecommendationsJobRequest, DescribeInferenceRecommendationsJobResponse } from "../models/models_2";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
export interface DescribeInferenceRecommendationsJobCommandInput extends DescribeInferenceRecommendationsJobRequest {
|
|
7
6
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { ListEdgeDeploymentPlansRequest, ListEdgeDeploymentPlansResponse } from "../models/models_2";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface ListEdgeDeploymentPlansCommandInput extends ListEdgeDeploymentPlansRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListEdgeDeploymentPlansCommandOutput extends ListEdgeDeploymentPlansResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListEdgeDeploymentPlansCommand extends $Command<ListEdgeDeploymentPlansCommandInput, ListEdgeDeploymentPlansCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListEdgeDeploymentPlansCommandInput;
|
|
12
|
+
constructor(input: ListEdgeDeploymentPlansCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEdgeDeploymentPlansCommandInput, ListEdgeDeploymentPlansCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListPipelineExecutionStepsRequest, ListPipelineExecutionStepsResponse } from "../models/
|
|
3
|
+
import { ListPipelineExecutionStepsRequest, ListPipelineExecutionStepsResponse } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface ListPipelineExecutionStepsCommandInput extends ListPipelineExecutionStepsRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListPipelineParametersForExecutionRequest, ListPipelineParametersForExecutionResponse } from "../models/
|
|
3
|
+
import { ListPipelineParametersForExecutionRequest, ListPipelineParametersForExecutionResponse } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface ListPipelineParametersForExecutionCommandInput extends ListPipelineParametersForExecutionRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListPipelinesRequest, ListPipelinesResponse } from "../models/
|
|
3
|
+
import { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface ListPipelinesCommandInput extends ListPipelinesRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListProcessingJobsRequest, ListProcessingJobsResponse } from "../models/
|
|
3
|
+
import { ListProcessingJobsRequest, ListProcessingJobsResponse } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface ListProcessingJobsCommandInput extends ListProcessingJobsRequest {
|
|
6
6
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { ListStageDevicesRequest, ListStageDevicesResponse } from "../models/models_3";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface ListStageDevicesCommandInput extends ListStageDevicesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListStageDevicesCommandOutput extends ListStageDevicesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListStageDevicesCommand extends $Command<ListStageDevicesCommandInput, ListStageDevicesCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListStageDevicesCommandInput;
|
|
12
|
+
constructor(input: ListStageDevicesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStageDevicesCommandInput, ListStageDevicesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { StartEdgeDeploymentStageRequest } from "../models/models_3";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface StartEdgeDeploymentStageCommandInput extends StartEdgeDeploymentStageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StartEdgeDeploymentStageCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class StartEdgeDeploymentStageCommand extends $Command<StartEdgeDeploymentStageCommandInput, StartEdgeDeploymentStageCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: StartEdgeDeploymentStageCommandInput;
|
|
12
|
+
constructor(input: StartEdgeDeploymentStageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartEdgeDeploymentStageCommandInput, StartEdgeDeploymentStageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { StopEdgeDeploymentStageRequest } from "../models/models_3";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface StopEdgeDeploymentStageCommandInput extends StopEdgeDeploymentStageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StopEdgeDeploymentStageCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class StopEdgeDeploymentStageCommand extends $Command<StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: StopEdgeDeploymentStageCommandInput;
|
|
12
|
+
constructor(input: StopEdgeDeploymentStageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -14,6 +14,8 @@ export * from "./CreateContextCommand";
|
|
|
14
14
|
export * from "./CreateDataQualityJobDefinitionCommand";
|
|
15
15
|
export * from "./CreateDeviceFleetCommand";
|
|
16
16
|
export * from "./CreateDomainCommand";
|
|
17
|
+
export * from "./CreateEdgeDeploymentPlanCommand";
|
|
18
|
+
export * from "./CreateEdgeDeploymentStageCommand";
|
|
17
19
|
export * from "./CreateEdgePackagingJobCommand";
|
|
18
20
|
export * from "./CreateEndpointCommand";
|
|
19
21
|
export * from "./CreateEndpointConfigCommand";
|
|
@@ -59,6 +61,8 @@ export * from "./DeleteContextCommand";
|
|
|
59
61
|
export * from "./DeleteDataQualityJobDefinitionCommand";
|
|
60
62
|
export * from "./DeleteDeviceFleetCommand";
|
|
61
63
|
export * from "./DeleteDomainCommand";
|
|
64
|
+
export * from "./DeleteEdgeDeploymentPlanCommand";
|
|
65
|
+
export * from "./DeleteEdgeDeploymentStageCommand";
|
|
62
66
|
export * from "./DeleteEndpointCommand";
|
|
63
67
|
export * from "./DeleteEndpointConfigCommand";
|
|
64
68
|
export * from "./DeleteExperimentCommand";
|
|
@@ -100,6 +104,7 @@ export * from "./DescribeDataQualityJobDefinitionCommand";
|
|
|
100
104
|
export * from "./DescribeDeviceCommand";
|
|
101
105
|
export * from "./DescribeDeviceFleetCommand";
|
|
102
106
|
export * from "./DescribeDomainCommand";
|
|
107
|
+
export * from "./DescribeEdgeDeploymentPlanCommand";
|
|
103
108
|
export * from "./DescribeEdgePackagingJobCommand";
|
|
104
109
|
export * from "./DescribeEndpointCommand";
|
|
105
110
|
export * from "./DescribeEndpointConfigCommand";
|
|
@@ -160,6 +165,7 @@ export * from "./ListDataQualityJobDefinitionsCommand";
|
|
|
160
165
|
export * from "./ListDeviceFleetsCommand";
|
|
161
166
|
export * from "./ListDevicesCommand";
|
|
162
167
|
export * from "./ListDomainsCommand";
|
|
168
|
+
export * from "./ListEdgeDeploymentPlansCommand";
|
|
163
169
|
export * from "./ListEdgePackagingJobsCommand";
|
|
164
170
|
export * from "./ListEndpointConfigsCommand";
|
|
165
171
|
export * from "./ListEndpointsCommand";
|
|
@@ -191,6 +197,7 @@ export * from "./ListPipelineParametersForExecutionCommand";
|
|
|
191
197
|
export * from "./ListPipelinesCommand";
|
|
192
198
|
export * from "./ListProcessingJobsCommand";
|
|
193
199
|
export * from "./ListProjectsCommand";
|
|
200
|
+
export * from "./ListStageDevicesCommand";
|
|
194
201
|
export * from "./ListStudioLifecycleConfigsCommand";
|
|
195
202
|
export * from "./ListSubscribedWorkteamsCommand";
|
|
196
203
|
export * from "./ListTagsCommand";
|
|
@@ -210,11 +217,13 @@ export * from "./RetryPipelineExecutionCommand";
|
|
|
210
217
|
export * from "./SearchCommand";
|
|
211
218
|
export * from "./SendPipelineExecutionStepFailureCommand";
|
|
212
219
|
export * from "./SendPipelineExecutionStepSuccessCommand";
|
|
220
|
+
export * from "./StartEdgeDeploymentStageCommand";
|
|
213
221
|
export * from "./StartMonitoringScheduleCommand";
|
|
214
222
|
export * from "./StartNotebookInstanceCommand";
|
|
215
223
|
export * from "./StartPipelineExecutionCommand";
|
|
216
224
|
export * from "./StopAutoMLJobCommand";
|
|
217
225
|
export * from "./StopCompilationJobCommand";
|
|
226
|
+
export * from "./StopEdgeDeploymentStageCommand";
|
|
218
227
|
export * from "./StopEdgePackagingJobCommand";
|
|
219
228
|
export * from "./StopHyperParameterTuningJobCommand";
|
|
220
229
|
export * from "./StopInferenceRecommendationsJobCommand";
|
|
@@ -140,12 +140,29 @@ export declare enum ProductionVariantInstanceType {
|
|
|
140
140
|
ML_C5_9XLARGE = "ml.c5.9xlarge",
|
|
141
141
|
ML_C5_LARGE = "ml.c5.large",
|
|
142
142
|
ML_C5_XLARGE = "ml.c5.xlarge",
|
|
143
|
+
ML_C6I_12XLARGE = "ml.c6i.12xlarge",
|
|
144
|
+
ML_C6I_16XLARGE = "ml.c6i.16xlarge",
|
|
145
|
+
ML_C6I_24XLARGE = "ml.c6i.24xlarge",
|
|
146
|
+
ML_C6I_2XLARGE = "ml.c6i.2xlarge",
|
|
147
|
+
ML_C6I_32XLARGE = "ml.c6i.32xlarge",
|
|
148
|
+
ML_C6I_4XLARGE = "ml.c6i.4xlarge",
|
|
149
|
+
ML_C6I_8XLARGE = "ml.c6i.8xlarge",
|
|
150
|
+
ML_C6I_LARGE = "ml.c6i.large",
|
|
151
|
+
ML_C6I_XLARGE = "ml.c6i.xlarge",
|
|
143
152
|
ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
|
|
144
153
|
ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
|
|
145
154
|
ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
|
|
146
155
|
ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
|
|
147
156
|
ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
|
|
148
157
|
ML_G4DN_XLARGE = "ml.g4dn.xlarge",
|
|
158
|
+
ML_G5_12XLARGE = "ml.g5.12xlarge",
|
|
159
|
+
ML_G5_16XLARGE = "ml.g5.16xlarge",
|
|
160
|
+
ML_G5_24XLARGE = "ml.g5.24xlarge",
|
|
161
|
+
ML_G5_2XLARGE = "ml.g5.2xlarge",
|
|
162
|
+
ML_G5_48XLARGE = "ml.g5.48xlarge",
|
|
163
|
+
ML_G5_4XLARGE = "ml.g5.4xlarge",
|
|
164
|
+
ML_G5_8XLARGE = "ml.g5.8xlarge",
|
|
165
|
+
ML_G5_XLARGE = "ml.g5.xlarge",
|
|
149
166
|
ML_INF1_24XLARGE = "ml.inf1.24xlarge",
|
|
150
167
|
ML_INF1_2XLARGE = "ml.inf1.2xlarge",
|
|
151
168
|
ML_INF1_6XLARGE = "ml.inf1.6xlarge",
|
|
@@ -173,6 +190,7 @@ export declare enum ProductionVariantInstanceType {
|
|
|
173
190
|
ML_P3_16XLARGE = "ml.p3.16xlarge",
|
|
174
191
|
ML_P3_2XLARGE = "ml.p3.2xlarge",
|
|
175
192
|
ML_P3_8XLARGE = "ml.p3.8xlarge",
|
|
193
|
+
ML_P4D_24XLARGE = "ml.p4d.24xlarge",
|
|
176
194
|
ML_R5D_12XLARGE = "ml.r5d.12xlarge",
|
|
177
195
|
ML_R5D_24XLARGE = "ml.r5d.24xlarge",
|
|
178
196
|
ML_R5D_2XLARGE = "ml.r5d.2xlarge",
|
|
@@ -3026,6 +3044,97 @@ export declare namespace CreateDomainResponse {
|
|
|
3026
3044
|
|
|
3027
3045
|
const filterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
3028
3046
|
}
|
|
3047
|
+
|
|
3048
|
+
export interface EdgeDeploymentModelConfig {
|
|
3049
|
+
|
|
3050
|
+
ModelHandle: string | undefined;
|
|
3051
|
+
|
|
3052
|
+
EdgePackagingJobName: string | undefined;
|
|
3053
|
+
}
|
|
3054
|
+
export declare namespace EdgeDeploymentModelConfig {
|
|
3055
|
+
|
|
3056
|
+
const filterSensitiveLog: (obj: EdgeDeploymentModelConfig) => any;
|
|
3057
|
+
}
|
|
3058
|
+
export declare enum FailureHandlingPolicy {
|
|
3059
|
+
DoNothing = "DO_NOTHING",
|
|
3060
|
+
RollbackOnFailure = "ROLLBACK_ON_FAILURE"
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
export interface EdgeDeploymentConfig {
|
|
3064
|
+
|
|
3065
|
+
FailureHandlingPolicy: FailureHandlingPolicy | string | undefined;
|
|
3066
|
+
}
|
|
3067
|
+
export declare namespace EdgeDeploymentConfig {
|
|
3068
|
+
|
|
3069
|
+
const filterSensitiveLog: (obj: EdgeDeploymentConfig) => any;
|
|
3070
|
+
}
|
|
3071
|
+
export declare enum DeviceSubsetType {
|
|
3072
|
+
NameContains = "NAMECONTAINS",
|
|
3073
|
+
Percentage = "PERCENTAGE",
|
|
3074
|
+
Selection = "SELECTION"
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
export interface DeviceSelectionConfig {
|
|
3078
|
+
|
|
3079
|
+
DeviceSubsetType: DeviceSubsetType | string | undefined;
|
|
3080
|
+
|
|
3081
|
+
Percentage?: number;
|
|
3082
|
+
|
|
3083
|
+
DeviceNames?: string[];
|
|
3084
|
+
|
|
3085
|
+
DeviceNameContains?: string;
|
|
3086
|
+
}
|
|
3087
|
+
export declare namespace DeviceSelectionConfig {
|
|
3088
|
+
|
|
3089
|
+
const filterSensitiveLog: (obj: DeviceSelectionConfig) => any;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
export interface DeploymentStage {
|
|
3093
|
+
|
|
3094
|
+
StageName: string | undefined;
|
|
3095
|
+
|
|
3096
|
+
DeviceSelectionConfig: DeviceSelectionConfig | undefined;
|
|
3097
|
+
|
|
3098
|
+
DeploymentConfig?: EdgeDeploymentConfig;
|
|
3099
|
+
}
|
|
3100
|
+
export declare namespace DeploymentStage {
|
|
3101
|
+
|
|
3102
|
+
const filterSensitiveLog: (obj: DeploymentStage) => any;
|
|
3103
|
+
}
|
|
3104
|
+
export interface CreateEdgeDeploymentPlanRequest {
|
|
3105
|
+
|
|
3106
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
3107
|
+
|
|
3108
|
+
ModelConfigs: EdgeDeploymentModelConfig[] | undefined;
|
|
3109
|
+
|
|
3110
|
+
DeviceFleetName: string | undefined;
|
|
3111
|
+
|
|
3112
|
+
Stages?: DeploymentStage[];
|
|
3113
|
+
|
|
3114
|
+
Tags?: Tag[];
|
|
3115
|
+
}
|
|
3116
|
+
export declare namespace CreateEdgeDeploymentPlanRequest {
|
|
3117
|
+
|
|
3118
|
+
const filterSensitiveLog: (obj: CreateEdgeDeploymentPlanRequest) => any;
|
|
3119
|
+
}
|
|
3120
|
+
export interface CreateEdgeDeploymentPlanResponse {
|
|
3121
|
+
|
|
3122
|
+
EdgeDeploymentPlanArn: string | undefined;
|
|
3123
|
+
}
|
|
3124
|
+
export declare namespace CreateEdgeDeploymentPlanResponse {
|
|
3125
|
+
|
|
3126
|
+
const filterSensitiveLog: (obj: CreateEdgeDeploymentPlanResponse) => any;
|
|
3127
|
+
}
|
|
3128
|
+
export interface CreateEdgeDeploymentStageRequest {
|
|
3129
|
+
|
|
3130
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
3131
|
+
|
|
3132
|
+
Stages: DeploymentStage[] | undefined;
|
|
3133
|
+
}
|
|
3134
|
+
export declare namespace CreateEdgeDeploymentStageRequest {
|
|
3135
|
+
|
|
3136
|
+
const filterSensitiveLog: (obj: CreateEdgeDeploymentStageRequest) => any;
|
|
3137
|
+
}
|
|
3029
3138
|
export interface CreateEdgePackagingJobRequest {
|
|
3030
3139
|
|
|
3031
3140
|
EdgePackagingJobName: string | undefined;
|
|
@@ -3506,135 +3615,3 @@ export declare namespace TuningJobCompletionCriteria {
|
|
|
3506
3615
|
|
|
3507
3616
|
const filterSensitiveLog: (obj: TuningJobCompletionCriteria) => any;
|
|
3508
3617
|
}
|
|
3509
|
-
|
|
3510
|
-
export interface HyperParameterTuningJobConfig {
|
|
3511
|
-
|
|
3512
|
-
Strategy: HyperParameterTuningJobStrategyType | string | undefined;
|
|
3513
|
-
|
|
3514
|
-
HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
|
|
3515
|
-
|
|
3516
|
-
ResourceLimits: ResourceLimits | undefined;
|
|
3517
|
-
|
|
3518
|
-
ParameterRanges?: ParameterRanges;
|
|
3519
|
-
|
|
3520
|
-
TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType | string;
|
|
3521
|
-
|
|
3522
|
-
TuningJobCompletionCriteria?: TuningJobCompletionCriteria;
|
|
3523
|
-
}
|
|
3524
|
-
export declare namespace HyperParameterTuningJobConfig {
|
|
3525
|
-
|
|
3526
|
-
const filterSensitiveLog: (obj: HyperParameterTuningJobConfig) => any;
|
|
3527
|
-
}
|
|
3528
|
-
|
|
3529
|
-
export interface HyperParameterAlgorithmSpecification {
|
|
3530
|
-
|
|
3531
|
-
TrainingImage?: string;
|
|
3532
|
-
|
|
3533
|
-
TrainingInputMode: TrainingInputMode | string | undefined;
|
|
3534
|
-
|
|
3535
|
-
AlgorithmName?: string;
|
|
3536
|
-
|
|
3537
|
-
MetricDefinitions?: MetricDefinition[];
|
|
3538
|
-
}
|
|
3539
|
-
export declare namespace HyperParameterAlgorithmSpecification {
|
|
3540
|
-
|
|
3541
|
-
const filterSensitiveLog: (obj: HyperParameterAlgorithmSpecification) => any;
|
|
3542
|
-
}
|
|
3543
|
-
|
|
3544
|
-
export interface RetryStrategy {
|
|
3545
|
-
|
|
3546
|
-
MaximumRetryAttempts: number | undefined;
|
|
3547
|
-
}
|
|
3548
|
-
export declare namespace RetryStrategy {
|
|
3549
|
-
|
|
3550
|
-
const filterSensitiveLog: (obj: RetryStrategy) => any;
|
|
3551
|
-
}
|
|
3552
|
-
|
|
3553
|
-
export interface HyperParameterTrainingJobDefinition {
|
|
3554
|
-
|
|
3555
|
-
DefinitionName?: string;
|
|
3556
|
-
|
|
3557
|
-
TuningObjective?: HyperParameterTuningJobObjective;
|
|
3558
|
-
|
|
3559
|
-
HyperParameterRanges?: ParameterRanges;
|
|
3560
|
-
|
|
3561
|
-
StaticHyperParameters?: Record<string, string>;
|
|
3562
|
-
|
|
3563
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecification | undefined;
|
|
3564
|
-
|
|
3565
|
-
RoleArn: string | undefined;
|
|
3566
|
-
|
|
3567
|
-
InputDataConfig?: Channel[];
|
|
3568
|
-
|
|
3569
|
-
VpcConfig?: VpcConfig;
|
|
3570
|
-
|
|
3571
|
-
OutputDataConfig: OutputDataConfig | undefined;
|
|
3572
|
-
|
|
3573
|
-
ResourceConfig: ResourceConfig | undefined;
|
|
3574
|
-
|
|
3575
|
-
StoppingCondition: StoppingCondition | undefined;
|
|
3576
|
-
|
|
3577
|
-
EnableNetworkIsolation?: boolean;
|
|
3578
|
-
|
|
3579
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
3580
|
-
|
|
3581
|
-
EnableManagedSpotTraining?: boolean;
|
|
3582
|
-
|
|
3583
|
-
CheckpointConfig?: CheckpointConfig;
|
|
3584
|
-
|
|
3585
|
-
RetryStrategy?: RetryStrategy;
|
|
3586
|
-
}
|
|
3587
|
-
export declare namespace HyperParameterTrainingJobDefinition {
|
|
3588
|
-
|
|
3589
|
-
const filterSensitiveLog: (obj: HyperParameterTrainingJobDefinition) => any;
|
|
3590
|
-
}
|
|
3591
|
-
|
|
3592
|
-
export interface ParentHyperParameterTuningJob {
|
|
3593
|
-
|
|
3594
|
-
HyperParameterTuningJobName?: string;
|
|
3595
|
-
}
|
|
3596
|
-
export declare namespace ParentHyperParameterTuningJob {
|
|
3597
|
-
|
|
3598
|
-
const filterSensitiveLog: (obj: ParentHyperParameterTuningJob) => any;
|
|
3599
|
-
}
|
|
3600
|
-
export declare enum HyperParameterTuningJobWarmStartType {
|
|
3601
|
-
IDENTICAL_DATA_AND_ALGORITHM = "IdenticalDataAndAlgorithm",
|
|
3602
|
-
TRANSFER_LEARNING = "TransferLearning"
|
|
3603
|
-
}
|
|
3604
|
-
|
|
3605
|
-
export interface HyperParameterTuningJobWarmStartConfig {
|
|
3606
|
-
|
|
3607
|
-
ParentHyperParameterTuningJobs: ParentHyperParameterTuningJob[] | undefined;
|
|
3608
|
-
|
|
3609
|
-
WarmStartType: HyperParameterTuningJobWarmStartType | string | undefined;
|
|
3610
|
-
}
|
|
3611
|
-
export declare namespace HyperParameterTuningJobWarmStartConfig {
|
|
3612
|
-
|
|
3613
|
-
const filterSensitiveLog: (obj: HyperParameterTuningJobWarmStartConfig) => any;
|
|
3614
|
-
}
|
|
3615
|
-
export interface CreateHyperParameterTuningJobRequest {
|
|
3616
|
-
|
|
3617
|
-
HyperParameterTuningJobName: string | undefined;
|
|
3618
|
-
|
|
3619
|
-
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
|
|
3620
|
-
|
|
3621
|
-
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
3622
|
-
|
|
3623
|
-
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
3624
|
-
|
|
3625
|
-
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
3626
|
-
|
|
3627
|
-
Tags?: Tag[];
|
|
3628
|
-
}
|
|
3629
|
-
export declare namespace CreateHyperParameterTuningJobRequest {
|
|
3630
|
-
|
|
3631
|
-
const filterSensitiveLog: (obj: CreateHyperParameterTuningJobRequest) => any;
|
|
3632
|
-
}
|
|
3633
|
-
export interface CreateHyperParameterTuningJobResponse {
|
|
3634
|
-
|
|
3635
|
-
HyperParameterTuningJobArn: string | undefined;
|
|
3636
|
-
}
|
|
3637
|
-
export declare namespace CreateHyperParameterTuningJobResponse {
|
|
3638
|
-
|
|
3639
|
-
const filterSensitiveLog: (obj: CreateHyperParameterTuningJobResponse) => any;
|
|
3640
|
-
}
|