@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
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.132.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.131.0...v3.132.0) (2022-07-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-sagemaker:** Amazon SageMaker Edge Manager provides lightweight model deployment feature to deploy machine learning models on requested devices. ([3f89139](https://github.com/aws/aws-sdk-js-v3/commit/3f891393cfe5002f24317a340f88ce0e1df7aa44))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-sagemaker
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **codegen:** fix error code parsing when it's a number ([#3371](https://github.com/aws/aws-sdk-js-v3/issues/3371)) ([c2d8522](https://github.com/aws/aws-sdk-js-v3/commit/c2d852279a3d23958521a6ceb4f4c642b0cb1848))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
* **client-sagemaker:** This release adds support for G5, P4d, and C6i instance types in Amazon SageMaker Inference and increases the number of hyperparameters that can be searched from 20 to 30 in Amazon SageMaker Automatic Model Tuning ([4d43eac](https://github.com/aws/aws-sdk-js-v3/commit/4d43eac453ff4e4b772ad4cc978e321eb64d38ee))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @aws-sdk/client-sagemaker
|
package/dist-cjs/SageMaker.js
CHANGED
|
@@ -17,6 +17,8 @@ const CreateContextCommand_1 = require("./commands/CreateContextCommand");
|
|
|
17
17
|
const CreateDataQualityJobDefinitionCommand_1 = require("./commands/CreateDataQualityJobDefinitionCommand");
|
|
18
18
|
const CreateDeviceFleetCommand_1 = require("./commands/CreateDeviceFleetCommand");
|
|
19
19
|
const CreateDomainCommand_1 = require("./commands/CreateDomainCommand");
|
|
20
|
+
const CreateEdgeDeploymentPlanCommand_1 = require("./commands/CreateEdgeDeploymentPlanCommand");
|
|
21
|
+
const CreateEdgeDeploymentStageCommand_1 = require("./commands/CreateEdgeDeploymentStageCommand");
|
|
20
22
|
const CreateEdgePackagingJobCommand_1 = require("./commands/CreateEdgePackagingJobCommand");
|
|
21
23
|
const CreateEndpointCommand_1 = require("./commands/CreateEndpointCommand");
|
|
22
24
|
const CreateEndpointConfigCommand_1 = require("./commands/CreateEndpointConfigCommand");
|
|
@@ -62,6 +64,8 @@ const DeleteContextCommand_1 = require("./commands/DeleteContextCommand");
|
|
|
62
64
|
const DeleteDataQualityJobDefinitionCommand_1 = require("./commands/DeleteDataQualityJobDefinitionCommand");
|
|
63
65
|
const DeleteDeviceFleetCommand_1 = require("./commands/DeleteDeviceFleetCommand");
|
|
64
66
|
const DeleteDomainCommand_1 = require("./commands/DeleteDomainCommand");
|
|
67
|
+
const DeleteEdgeDeploymentPlanCommand_1 = require("./commands/DeleteEdgeDeploymentPlanCommand");
|
|
68
|
+
const DeleteEdgeDeploymentStageCommand_1 = require("./commands/DeleteEdgeDeploymentStageCommand");
|
|
65
69
|
const DeleteEndpointCommand_1 = require("./commands/DeleteEndpointCommand");
|
|
66
70
|
const DeleteEndpointConfigCommand_1 = require("./commands/DeleteEndpointConfigCommand");
|
|
67
71
|
const DeleteExperimentCommand_1 = require("./commands/DeleteExperimentCommand");
|
|
@@ -103,6 +107,7 @@ const DescribeDataQualityJobDefinitionCommand_1 = require("./commands/DescribeDa
|
|
|
103
107
|
const DescribeDeviceCommand_1 = require("./commands/DescribeDeviceCommand");
|
|
104
108
|
const DescribeDeviceFleetCommand_1 = require("./commands/DescribeDeviceFleetCommand");
|
|
105
109
|
const DescribeDomainCommand_1 = require("./commands/DescribeDomainCommand");
|
|
110
|
+
const DescribeEdgeDeploymentPlanCommand_1 = require("./commands/DescribeEdgeDeploymentPlanCommand");
|
|
106
111
|
const DescribeEdgePackagingJobCommand_1 = require("./commands/DescribeEdgePackagingJobCommand");
|
|
107
112
|
const DescribeEndpointCommand_1 = require("./commands/DescribeEndpointCommand");
|
|
108
113
|
const DescribeEndpointConfigCommand_1 = require("./commands/DescribeEndpointConfigCommand");
|
|
@@ -163,6 +168,7 @@ const ListDataQualityJobDefinitionsCommand_1 = require("./commands/ListDataQuali
|
|
|
163
168
|
const ListDeviceFleetsCommand_1 = require("./commands/ListDeviceFleetsCommand");
|
|
164
169
|
const ListDevicesCommand_1 = require("./commands/ListDevicesCommand");
|
|
165
170
|
const ListDomainsCommand_1 = require("./commands/ListDomainsCommand");
|
|
171
|
+
const ListEdgeDeploymentPlansCommand_1 = require("./commands/ListEdgeDeploymentPlansCommand");
|
|
166
172
|
const ListEdgePackagingJobsCommand_1 = require("./commands/ListEdgePackagingJobsCommand");
|
|
167
173
|
const ListEndpointConfigsCommand_1 = require("./commands/ListEndpointConfigsCommand");
|
|
168
174
|
const ListEndpointsCommand_1 = require("./commands/ListEndpointsCommand");
|
|
@@ -194,6 +200,7 @@ const ListPipelineParametersForExecutionCommand_1 = require("./commands/ListPipe
|
|
|
194
200
|
const ListPipelinesCommand_1 = require("./commands/ListPipelinesCommand");
|
|
195
201
|
const ListProcessingJobsCommand_1 = require("./commands/ListProcessingJobsCommand");
|
|
196
202
|
const ListProjectsCommand_1 = require("./commands/ListProjectsCommand");
|
|
203
|
+
const ListStageDevicesCommand_1 = require("./commands/ListStageDevicesCommand");
|
|
197
204
|
const ListStudioLifecycleConfigsCommand_1 = require("./commands/ListStudioLifecycleConfigsCommand");
|
|
198
205
|
const ListSubscribedWorkteamsCommand_1 = require("./commands/ListSubscribedWorkteamsCommand");
|
|
199
206
|
const ListTagsCommand_1 = require("./commands/ListTagsCommand");
|
|
@@ -213,11 +220,13 @@ const RetryPipelineExecutionCommand_1 = require("./commands/RetryPipelineExecuti
|
|
|
213
220
|
const SearchCommand_1 = require("./commands/SearchCommand");
|
|
214
221
|
const SendPipelineExecutionStepFailureCommand_1 = require("./commands/SendPipelineExecutionStepFailureCommand");
|
|
215
222
|
const SendPipelineExecutionStepSuccessCommand_1 = require("./commands/SendPipelineExecutionStepSuccessCommand");
|
|
223
|
+
const StartEdgeDeploymentStageCommand_1 = require("./commands/StartEdgeDeploymentStageCommand");
|
|
216
224
|
const StartMonitoringScheduleCommand_1 = require("./commands/StartMonitoringScheduleCommand");
|
|
217
225
|
const StartNotebookInstanceCommand_1 = require("./commands/StartNotebookInstanceCommand");
|
|
218
226
|
const StartPipelineExecutionCommand_1 = require("./commands/StartPipelineExecutionCommand");
|
|
219
227
|
const StopAutoMLJobCommand_1 = require("./commands/StopAutoMLJobCommand");
|
|
220
228
|
const StopCompilationJobCommand_1 = require("./commands/StopCompilationJobCommand");
|
|
229
|
+
const StopEdgeDeploymentStageCommand_1 = require("./commands/StopEdgeDeploymentStageCommand");
|
|
221
230
|
const StopEdgePackagingJobCommand_1 = require("./commands/StopEdgePackagingJobCommand");
|
|
222
231
|
const StopHyperParameterTuningJobCommand_1 = require("./commands/StopHyperParameterTuningJobCommand");
|
|
223
232
|
const StopInferenceRecommendationsJobCommand_1 = require("./commands/StopInferenceRecommendationsJobCommand");
|
|
@@ -481,6 +490,34 @@ class SageMaker extends SageMakerClient_1.SageMakerClient {
|
|
|
481
490
|
return this.send(command, optionsOrCb);
|
|
482
491
|
}
|
|
483
492
|
}
|
|
493
|
+
createEdgeDeploymentPlan(args, optionsOrCb, cb) {
|
|
494
|
+
const command = new CreateEdgeDeploymentPlanCommand_1.CreateEdgeDeploymentPlanCommand(args);
|
|
495
|
+
if (typeof optionsOrCb === "function") {
|
|
496
|
+
this.send(command, optionsOrCb);
|
|
497
|
+
}
|
|
498
|
+
else if (typeof cb === "function") {
|
|
499
|
+
if (typeof optionsOrCb !== "object")
|
|
500
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
501
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
502
|
+
}
|
|
503
|
+
else {
|
|
504
|
+
return this.send(command, optionsOrCb);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
createEdgeDeploymentStage(args, optionsOrCb, cb) {
|
|
508
|
+
const command = new CreateEdgeDeploymentStageCommand_1.CreateEdgeDeploymentStageCommand(args);
|
|
509
|
+
if (typeof optionsOrCb === "function") {
|
|
510
|
+
this.send(command, optionsOrCb);
|
|
511
|
+
}
|
|
512
|
+
else if (typeof cb === "function") {
|
|
513
|
+
if (typeof optionsOrCb !== "object")
|
|
514
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
515
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
516
|
+
}
|
|
517
|
+
else {
|
|
518
|
+
return this.send(command, optionsOrCb);
|
|
519
|
+
}
|
|
520
|
+
}
|
|
484
521
|
createEdgePackagingJob(args, optionsOrCb, cb) {
|
|
485
522
|
const command = new CreateEdgePackagingJobCommand_1.CreateEdgePackagingJobCommand(args);
|
|
486
523
|
if (typeof optionsOrCb === "function") {
|
|
@@ -1111,6 +1148,34 @@ class SageMaker extends SageMakerClient_1.SageMakerClient {
|
|
|
1111
1148
|
return this.send(command, optionsOrCb);
|
|
1112
1149
|
}
|
|
1113
1150
|
}
|
|
1151
|
+
deleteEdgeDeploymentPlan(args, optionsOrCb, cb) {
|
|
1152
|
+
const command = new DeleteEdgeDeploymentPlanCommand_1.DeleteEdgeDeploymentPlanCommand(args);
|
|
1153
|
+
if (typeof optionsOrCb === "function") {
|
|
1154
|
+
this.send(command, optionsOrCb);
|
|
1155
|
+
}
|
|
1156
|
+
else if (typeof cb === "function") {
|
|
1157
|
+
if (typeof optionsOrCb !== "object")
|
|
1158
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1159
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1160
|
+
}
|
|
1161
|
+
else {
|
|
1162
|
+
return this.send(command, optionsOrCb);
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
deleteEdgeDeploymentStage(args, optionsOrCb, cb) {
|
|
1166
|
+
const command = new DeleteEdgeDeploymentStageCommand_1.DeleteEdgeDeploymentStageCommand(args);
|
|
1167
|
+
if (typeof optionsOrCb === "function") {
|
|
1168
|
+
this.send(command, optionsOrCb);
|
|
1169
|
+
}
|
|
1170
|
+
else if (typeof cb === "function") {
|
|
1171
|
+
if (typeof optionsOrCb !== "object")
|
|
1172
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1173
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1174
|
+
}
|
|
1175
|
+
else {
|
|
1176
|
+
return this.send(command, optionsOrCb);
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1114
1179
|
deleteEndpoint(args, optionsOrCb, cb) {
|
|
1115
1180
|
const command = new DeleteEndpointCommand_1.DeleteEndpointCommand(args);
|
|
1116
1181
|
if (typeof optionsOrCb === "function") {
|
|
@@ -1685,6 +1750,20 @@ class SageMaker extends SageMakerClient_1.SageMakerClient {
|
|
|
1685
1750
|
return this.send(command, optionsOrCb);
|
|
1686
1751
|
}
|
|
1687
1752
|
}
|
|
1753
|
+
describeEdgeDeploymentPlan(args, optionsOrCb, cb) {
|
|
1754
|
+
const command = new DescribeEdgeDeploymentPlanCommand_1.DescribeEdgeDeploymentPlanCommand(args);
|
|
1755
|
+
if (typeof optionsOrCb === "function") {
|
|
1756
|
+
this.send(command, optionsOrCb);
|
|
1757
|
+
}
|
|
1758
|
+
else if (typeof cb === "function") {
|
|
1759
|
+
if (typeof optionsOrCb !== "object")
|
|
1760
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1761
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1762
|
+
}
|
|
1763
|
+
else {
|
|
1764
|
+
return this.send(command, optionsOrCb);
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1688
1767
|
describeEdgePackagingJob(args, optionsOrCb, cb) {
|
|
1689
1768
|
const command = new DescribeEdgePackagingJobCommand_1.DescribeEdgePackagingJobCommand(args);
|
|
1690
1769
|
if (typeof optionsOrCb === "function") {
|
|
@@ -2525,6 +2604,20 @@ class SageMaker extends SageMakerClient_1.SageMakerClient {
|
|
|
2525
2604
|
return this.send(command, optionsOrCb);
|
|
2526
2605
|
}
|
|
2527
2606
|
}
|
|
2607
|
+
listEdgeDeploymentPlans(args, optionsOrCb, cb) {
|
|
2608
|
+
const command = new ListEdgeDeploymentPlansCommand_1.ListEdgeDeploymentPlansCommand(args);
|
|
2609
|
+
if (typeof optionsOrCb === "function") {
|
|
2610
|
+
this.send(command, optionsOrCb);
|
|
2611
|
+
}
|
|
2612
|
+
else if (typeof cb === "function") {
|
|
2613
|
+
if (typeof optionsOrCb !== "object")
|
|
2614
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
2615
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
2616
|
+
}
|
|
2617
|
+
else {
|
|
2618
|
+
return this.send(command, optionsOrCb);
|
|
2619
|
+
}
|
|
2620
|
+
}
|
|
2528
2621
|
listEdgePackagingJobs(args, optionsOrCb, cb) {
|
|
2529
2622
|
const command = new ListEdgePackagingJobsCommand_1.ListEdgePackagingJobsCommand(args);
|
|
2530
2623
|
if (typeof optionsOrCb === "function") {
|
|
@@ -2959,6 +3052,20 @@ class SageMaker extends SageMakerClient_1.SageMakerClient {
|
|
|
2959
3052
|
return this.send(command, optionsOrCb);
|
|
2960
3053
|
}
|
|
2961
3054
|
}
|
|
3055
|
+
listStageDevices(args, optionsOrCb, cb) {
|
|
3056
|
+
const command = new ListStageDevicesCommand_1.ListStageDevicesCommand(args);
|
|
3057
|
+
if (typeof optionsOrCb === "function") {
|
|
3058
|
+
this.send(command, optionsOrCb);
|
|
3059
|
+
}
|
|
3060
|
+
else if (typeof cb === "function") {
|
|
3061
|
+
if (typeof optionsOrCb !== "object")
|
|
3062
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
3063
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
3064
|
+
}
|
|
3065
|
+
else {
|
|
3066
|
+
return this.send(command, optionsOrCb);
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
2962
3069
|
listStudioLifecycleConfigs(args, optionsOrCb, cb) {
|
|
2963
3070
|
const command = new ListStudioLifecycleConfigsCommand_1.ListStudioLifecycleConfigsCommand(args);
|
|
2964
3071
|
if (typeof optionsOrCb === "function") {
|
|
@@ -3225,6 +3332,20 @@ class SageMaker extends SageMakerClient_1.SageMakerClient {
|
|
|
3225
3332
|
return this.send(command, optionsOrCb);
|
|
3226
3333
|
}
|
|
3227
3334
|
}
|
|
3335
|
+
startEdgeDeploymentStage(args, optionsOrCb, cb) {
|
|
3336
|
+
const command = new StartEdgeDeploymentStageCommand_1.StartEdgeDeploymentStageCommand(args);
|
|
3337
|
+
if (typeof optionsOrCb === "function") {
|
|
3338
|
+
this.send(command, optionsOrCb);
|
|
3339
|
+
}
|
|
3340
|
+
else if (typeof cb === "function") {
|
|
3341
|
+
if (typeof optionsOrCb !== "object")
|
|
3342
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
3343
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
3344
|
+
}
|
|
3345
|
+
else {
|
|
3346
|
+
return this.send(command, optionsOrCb);
|
|
3347
|
+
}
|
|
3348
|
+
}
|
|
3228
3349
|
startMonitoringSchedule(args, optionsOrCb, cb) {
|
|
3229
3350
|
const command = new StartMonitoringScheduleCommand_1.StartMonitoringScheduleCommand(args);
|
|
3230
3351
|
if (typeof optionsOrCb === "function") {
|
|
@@ -3295,6 +3416,20 @@ class SageMaker extends SageMakerClient_1.SageMakerClient {
|
|
|
3295
3416
|
return this.send(command, optionsOrCb);
|
|
3296
3417
|
}
|
|
3297
3418
|
}
|
|
3419
|
+
stopEdgeDeploymentStage(args, optionsOrCb, cb) {
|
|
3420
|
+
const command = new StopEdgeDeploymentStageCommand_1.StopEdgeDeploymentStageCommand(args);
|
|
3421
|
+
if (typeof optionsOrCb === "function") {
|
|
3422
|
+
this.send(command, optionsOrCb);
|
|
3423
|
+
}
|
|
3424
|
+
else if (typeof cb === "function") {
|
|
3425
|
+
if (typeof optionsOrCb !== "object")
|
|
3426
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
3427
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
3428
|
+
}
|
|
3429
|
+
else {
|
|
3430
|
+
return this.send(command, optionsOrCb);
|
|
3431
|
+
}
|
|
3432
|
+
}
|
|
3298
3433
|
stopEdgePackagingJob(args, optionsOrCb, cb) {
|
|
3299
3434
|
const command = new StopEdgePackagingJobCommand_1.StopEdgePackagingJobCommand(args);
|
|
3300
3435
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateEdgeDeploymentPlanCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class CreateEdgeDeploymentPlanCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "SageMakerClient";
|
|
18
|
+
const commandName = "CreateEdgeDeploymentPlanCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateEdgeDeploymentPlanRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateEdgeDeploymentPlanResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1CreateEdgeDeploymentPlanCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1CreateEdgeDeploymentPlanCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.CreateEdgeDeploymentPlanCommand = CreateEdgeDeploymentPlanCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateEdgeDeploymentStageCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class CreateEdgeDeploymentStageCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "SageMakerClient";
|
|
18
|
+
const commandName = "CreateEdgeDeploymentStageCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateEdgeDeploymentStageRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: (output) => output,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1CreateEdgeDeploymentStageCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1CreateEdgeDeploymentStageCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.CreateEdgeDeploymentStageCommand = CreateEdgeDeploymentStageCommand;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CreateHyperParameterTuningJobCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_1_1 = require("../models/models_1");
|
|
7
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
8
|
class CreateHyperParameterTuningJobCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class CreateHyperParameterTuningJobCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.CreateHyperParameterTuningJobRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_1_1.CreateHyperParameterTuningJobResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteEdgeDeploymentPlanCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_1_1 = require("../models/models_1");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class DeleteEdgeDeploymentPlanCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "SageMakerClient";
|
|
18
|
+
const commandName = "DeleteEdgeDeploymentPlanCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.DeleteEdgeDeploymentPlanRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: (output) => output,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1DeleteEdgeDeploymentPlanCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1DeleteEdgeDeploymentPlanCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DeleteEdgeDeploymentPlanCommand = DeleteEdgeDeploymentPlanCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteEdgeDeploymentStageCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_1_1 = require("../models/models_1");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class DeleteEdgeDeploymentStageCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "SageMakerClient";
|
|
18
|
+
const commandName = "DeleteEdgeDeploymentStageCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.DeleteEdgeDeploymentStageRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: (output) => output,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1DeleteEdgeDeploymentStageCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1DeleteEdgeDeploymentStageCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DeleteEdgeDeploymentStageCommand = DeleteEdgeDeploymentStageCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeEdgeDeploymentPlanCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_1_1 = require("../models/models_1");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class DescribeEdgeDeploymentPlanCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "SageMakerClient";
|
|
18
|
+
const commandName = "DescribeEdgeDeploymentPlanCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_1_1.DescribeEdgeDeploymentPlanRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_1_1.DescribeEdgeDeploymentPlanResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1DescribeEdgeDeploymentPlanCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1DescribeEdgeDeploymentPlanCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DescribeEdgeDeploymentPlanCommand = DescribeEdgeDeploymentPlanCommand;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.DescribeHyperParameterTuningJobCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_2_1 = require("../models/models_2");
|
|
7
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
8
|
class DescribeHyperParameterTuningJobCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class DescribeHyperParameterTuningJobCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_2_1.DescribeHyperParameterTuningJobRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_2_1.DescribeHyperParameterTuningJobResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.DescribeImageCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_2_1 = require("../models/models_2");
|
|
7
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
8
|
class DescribeImageCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class DescribeImageCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_2_1.DescribeImageRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_2_1.DescribeImageResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.DescribeImageVersionCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_2_1 = require("../models/models_2");
|
|
7
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
8
|
class DescribeImageVersionCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class DescribeImageVersionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_2_1.DescribeImageVersionRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_2_1.DescribeImageVersionResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.DescribeInferenceRecommendationsJobCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const models_1_1 = require("../models/models_1");
|
|
7
6
|
const models_2_1 = require("../models/models_2");
|
|
8
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
9
8
|
class DescribeInferenceRecommendationsJobCommand extends smithy_client_1.Command {
|
|
@@ -21,7 +20,7 @@ class DescribeInferenceRecommendationsJobCommand extends smithy_client_1.Command
|
|
|
21
20
|
logger,
|
|
22
21
|
clientName,
|
|
23
22
|
commandName,
|
|
24
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_2_1.DescribeInferenceRecommendationsJobRequest.filterSensitiveLog,
|
|
25
24
|
outputFilterSensitiveLog: models_2_1.DescribeInferenceRecommendationsJobResponse.filterSensitiveLog,
|
|
26
25
|
};
|
|
27
26
|
const { requestHandler } = configuration;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListEdgeDeploymentPlansCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_2_1 = require("../models/models_2");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class ListEdgeDeploymentPlansCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "SageMakerClient";
|
|
18
|
+
const commandName = "ListEdgeDeploymentPlansCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_2_1.ListEdgeDeploymentPlansRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_2_1.ListEdgeDeploymentPlansResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1ListEdgeDeploymentPlansCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1ListEdgeDeploymentPlansCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.ListEdgeDeploymentPlansCommand = ListEdgeDeploymentPlansCommand;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ListPipelineExecutionStepsCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_3_1 = require("../models/models_3");
|
|
7
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
8
|
class ListPipelineExecutionStepsCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class ListPipelineExecutionStepsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_3_1.ListPipelineExecutionStepsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_3_1.ListPipelineExecutionStepsResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ListPipelineParametersForExecutionCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_3_1 = require("../models/models_3");
|
|
7
7
|
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
8
|
class ListPipelineParametersForExecutionCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class ListPipelineParametersForExecutionCommand extends smithy_client_1.Command
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_3_1.ListPipelineParametersForExecutionRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_3_1.ListPipelineParametersForExecutionResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|