@aws-sdk/client-sagemaker 3.131.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 +11 -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 +54 -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 +710 -11
- 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 +39 -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 +798 -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 +150 -451
- 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 +91 -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 +1 -1
|
@@ -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";
|
|
@@ -3044,6 +3044,97 @@ export declare namespace CreateDomainResponse {
|
|
|
3044
3044
|
|
|
3045
3045
|
const filterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
3046
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
|
+
}
|
|
3047
3138
|
export interface CreateEdgePackagingJobRequest {
|
|
3048
3139
|
|
|
3049
3140
|
EdgePackagingJobName: string | undefined;
|
|
@@ -3524,135 +3615,3 @@ export declare namespace TuningJobCompletionCriteria {
|
|
|
3524
3615
|
|
|
3525
3616
|
const filterSensitiveLog: (obj: TuningJobCompletionCriteria) => any;
|
|
3526
3617
|
}
|
|
3527
|
-
|
|
3528
|
-
export interface HyperParameterTuningJobConfig {
|
|
3529
|
-
|
|
3530
|
-
Strategy: HyperParameterTuningJobStrategyType | string | undefined;
|
|
3531
|
-
|
|
3532
|
-
HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
|
|
3533
|
-
|
|
3534
|
-
ResourceLimits: ResourceLimits | undefined;
|
|
3535
|
-
|
|
3536
|
-
ParameterRanges?: ParameterRanges;
|
|
3537
|
-
|
|
3538
|
-
TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType | string;
|
|
3539
|
-
|
|
3540
|
-
TuningJobCompletionCriteria?: TuningJobCompletionCriteria;
|
|
3541
|
-
}
|
|
3542
|
-
export declare namespace HyperParameterTuningJobConfig {
|
|
3543
|
-
|
|
3544
|
-
const filterSensitiveLog: (obj: HyperParameterTuningJobConfig) => any;
|
|
3545
|
-
}
|
|
3546
|
-
|
|
3547
|
-
export interface HyperParameterAlgorithmSpecification {
|
|
3548
|
-
|
|
3549
|
-
TrainingImage?: string;
|
|
3550
|
-
|
|
3551
|
-
TrainingInputMode: TrainingInputMode | string | undefined;
|
|
3552
|
-
|
|
3553
|
-
AlgorithmName?: string;
|
|
3554
|
-
|
|
3555
|
-
MetricDefinitions?: MetricDefinition[];
|
|
3556
|
-
}
|
|
3557
|
-
export declare namespace HyperParameterAlgorithmSpecification {
|
|
3558
|
-
|
|
3559
|
-
const filterSensitiveLog: (obj: HyperParameterAlgorithmSpecification) => any;
|
|
3560
|
-
}
|
|
3561
|
-
|
|
3562
|
-
export interface RetryStrategy {
|
|
3563
|
-
|
|
3564
|
-
MaximumRetryAttempts: number | undefined;
|
|
3565
|
-
}
|
|
3566
|
-
export declare namespace RetryStrategy {
|
|
3567
|
-
|
|
3568
|
-
const filterSensitiveLog: (obj: RetryStrategy) => any;
|
|
3569
|
-
}
|
|
3570
|
-
|
|
3571
|
-
export interface HyperParameterTrainingJobDefinition {
|
|
3572
|
-
|
|
3573
|
-
DefinitionName?: string;
|
|
3574
|
-
|
|
3575
|
-
TuningObjective?: HyperParameterTuningJobObjective;
|
|
3576
|
-
|
|
3577
|
-
HyperParameterRanges?: ParameterRanges;
|
|
3578
|
-
|
|
3579
|
-
StaticHyperParameters?: Record<string, string>;
|
|
3580
|
-
|
|
3581
|
-
AlgorithmSpecification: HyperParameterAlgorithmSpecification | undefined;
|
|
3582
|
-
|
|
3583
|
-
RoleArn: string | undefined;
|
|
3584
|
-
|
|
3585
|
-
InputDataConfig?: Channel[];
|
|
3586
|
-
|
|
3587
|
-
VpcConfig?: VpcConfig;
|
|
3588
|
-
|
|
3589
|
-
OutputDataConfig: OutputDataConfig | undefined;
|
|
3590
|
-
|
|
3591
|
-
ResourceConfig: ResourceConfig | undefined;
|
|
3592
|
-
|
|
3593
|
-
StoppingCondition: StoppingCondition | undefined;
|
|
3594
|
-
|
|
3595
|
-
EnableNetworkIsolation?: boolean;
|
|
3596
|
-
|
|
3597
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
3598
|
-
|
|
3599
|
-
EnableManagedSpotTraining?: boolean;
|
|
3600
|
-
|
|
3601
|
-
CheckpointConfig?: CheckpointConfig;
|
|
3602
|
-
|
|
3603
|
-
RetryStrategy?: RetryStrategy;
|
|
3604
|
-
}
|
|
3605
|
-
export declare namespace HyperParameterTrainingJobDefinition {
|
|
3606
|
-
|
|
3607
|
-
const filterSensitiveLog: (obj: HyperParameterTrainingJobDefinition) => any;
|
|
3608
|
-
}
|
|
3609
|
-
|
|
3610
|
-
export interface ParentHyperParameterTuningJob {
|
|
3611
|
-
|
|
3612
|
-
HyperParameterTuningJobName?: string;
|
|
3613
|
-
}
|
|
3614
|
-
export declare namespace ParentHyperParameterTuningJob {
|
|
3615
|
-
|
|
3616
|
-
const filterSensitiveLog: (obj: ParentHyperParameterTuningJob) => any;
|
|
3617
|
-
}
|
|
3618
|
-
export declare enum HyperParameterTuningJobWarmStartType {
|
|
3619
|
-
IDENTICAL_DATA_AND_ALGORITHM = "IdenticalDataAndAlgorithm",
|
|
3620
|
-
TRANSFER_LEARNING = "TransferLearning"
|
|
3621
|
-
}
|
|
3622
|
-
|
|
3623
|
-
export interface HyperParameterTuningJobWarmStartConfig {
|
|
3624
|
-
|
|
3625
|
-
ParentHyperParameterTuningJobs: ParentHyperParameterTuningJob[] | undefined;
|
|
3626
|
-
|
|
3627
|
-
WarmStartType: HyperParameterTuningJobWarmStartType | string | undefined;
|
|
3628
|
-
}
|
|
3629
|
-
export declare namespace HyperParameterTuningJobWarmStartConfig {
|
|
3630
|
-
|
|
3631
|
-
const filterSensitiveLog: (obj: HyperParameterTuningJobWarmStartConfig) => any;
|
|
3632
|
-
}
|
|
3633
|
-
export interface CreateHyperParameterTuningJobRequest {
|
|
3634
|
-
|
|
3635
|
-
HyperParameterTuningJobName: string | undefined;
|
|
3636
|
-
|
|
3637
|
-
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
|
|
3638
|
-
|
|
3639
|
-
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
3640
|
-
|
|
3641
|
-
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
3642
|
-
|
|
3643
|
-
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
3644
|
-
|
|
3645
|
-
Tags?: Tag[];
|
|
3646
|
-
}
|
|
3647
|
-
export declare namespace CreateHyperParameterTuningJobRequest {
|
|
3648
|
-
|
|
3649
|
-
const filterSensitiveLog: (obj: CreateHyperParameterTuningJobRequest) => any;
|
|
3650
|
-
}
|
|
3651
|
-
export interface CreateHyperParameterTuningJobResponse {
|
|
3652
|
-
|
|
3653
|
-
HyperParameterTuningJobArn: string | undefined;
|
|
3654
|
-
}
|
|
3655
|
-
export declare namespace CreateHyperParameterTuningJobResponse {
|
|
3656
|
-
|
|
3657
|
-
const filterSensitiveLog: (obj: CreateHyperParameterTuningJobResponse) => any;
|
|
3658
|
-
}
|