@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
|
@@ -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,35 @@
|
|
|
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
|
+
* <p>Lists devices allocated to the stage, containing detailed device information and deployment status.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { SageMakerClient, ListStageDevicesCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
15
|
+
* // const { SageMakerClient, ListStageDevicesCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
16
|
+
* const client = new SageMakerClient(config);
|
|
17
|
+
* const command = new ListStageDevicesCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListStageDevicesCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListStageDevicesCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListStageDevicesCommand extends $Command<ListStageDevicesCommandInput, ListStageDevicesCommandOutput, SageMakerClientResolvedConfig> {
|
|
27
|
+
readonly input: ListStageDevicesCommandInput;
|
|
28
|
+
constructor(input: ListStageDevicesCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStageDevicesCommandInput, ListStageDevicesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Starts a stage in an edge deployment plan.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { SageMakerClient, StartEdgeDeploymentStageCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
15
|
+
* // const { SageMakerClient, StartEdgeDeploymentStageCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
16
|
+
* const client = new SageMakerClient(config);
|
|
17
|
+
* const command = new StartEdgeDeploymentStageCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link StartEdgeDeploymentStageCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link StartEdgeDeploymentStageCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class StartEdgeDeploymentStageCommand extends $Command<StartEdgeDeploymentStageCommandInput, StartEdgeDeploymentStageCommandOutput, SageMakerClientResolvedConfig> {
|
|
27
|
+
readonly input: StartEdgeDeploymentStageCommandInput;
|
|
28
|
+
constructor(input: StartEdgeDeploymentStageCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartEdgeDeploymentStageCommandInput, StartEdgeDeploymentStageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Stops a stage in an edge deployment plan.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { SageMakerClient, StopEdgeDeploymentStageCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
15
|
+
* // const { SageMakerClient, StopEdgeDeploymentStageCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
16
|
+
* const client = new SageMakerClient(config);
|
|
17
|
+
* const command = new StopEdgeDeploymentStageCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link StopEdgeDeploymentStageCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link StopEdgeDeploymentStageCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class StopEdgeDeploymentStageCommand extends $Command<StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput, SageMakerClientResolvedConfig> {
|
|
27
|
+
readonly input: StopEdgeDeploymentStageCommandInput;
|
|
28
|
+
constructor(input: StopEdgeDeploymentStageCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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";
|