@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
package/dist-es/SageMaker.js
CHANGED
|
@@ -15,6 +15,8 @@ import { CreateContextCommand, } from "./commands/CreateContextCommand";
|
|
|
15
15
|
import { CreateDataQualityJobDefinitionCommand, } from "./commands/CreateDataQualityJobDefinitionCommand";
|
|
16
16
|
import { CreateDeviceFleetCommand, } from "./commands/CreateDeviceFleetCommand";
|
|
17
17
|
import { CreateDomainCommand, } from "./commands/CreateDomainCommand";
|
|
18
|
+
import { CreateEdgeDeploymentPlanCommand, } from "./commands/CreateEdgeDeploymentPlanCommand";
|
|
19
|
+
import { CreateEdgeDeploymentStageCommand, } from "./commands/CreateEdgeDeploymentStageCommand";
|
|
18
20
|
import { CreateEdgePackagingJobCommand, } from "./commands/CreateEdgePackagingJobCommand";
|
|
19
21
|
import { CreateEndpointCommand, } from "./commands/CreateEndpointCommand";
|
|
20
22
|
import { CreateEndpointConfigCommand, } from "./commands/CreateEndpointConfigCommand";
|
|
@@ -60,6 +62,8 @@ import { DeleteContextCommand, } from "./commands/DeleteContextCommand";
|
|
|
60
62
|
import { DeleteDataQualityJobDefinitionCommand, } from "./commands/DeleteDataQualityJobDefinitionCommand";
|
|
61
63
|
import { DeleteDeviceFleetCommand, } from "./commands/DeleteDeviceFleetCommand";
|
|
62
64
|
import { DeleteDomainCommand, } from "./commands/DeleteDomainCommand";
|
|
65
|
+
import { DeleteEdgeDeploymentPlanCommand, } from "./commands/DeleteEdgeDeploymentPlanCommand";
|
|
66
|
+
import { DeleteEdgeDeploymentStageCommand, } from "./commands/DeleteEdgeDeploymentStageCommand";
|
|
63
67
|
import { DeleteEndpointCommand, } from "./commands/DeleteEndpointCommand";
|
|
64
68
|
import { DeleteEndpointConfigCommand, } from "./commands/DeleteEndpointConfigCommand";
|
|
65
69
|
import { DeleteExperimentCommand, } from "./commands/DeleteExperimentCommand";
|
|
@@ -101,6 +105,7 @@ import { DescribeDataQualityJobDefinitionCommand, } from "./commands/DescribeDat
|
|
|
101
105
|
import { DescribeDeviceCommand, } from "./commands/DescribeDeviceCommand";
|
|
102
106
|
import { DescribeDeviceFleetCommand, } from "./commands/DescribeDeviceFleetCommand";
|
|
103
107
|
import { DescribeDomainCommand, } from "./commands/DescribeDomainCommand";
|
|
108
|
+
import { DescribeEdgeDeploymentPlanCommand, } from "./commands/DescribeEdgeDeploymentPlanCommand";
|
|
104
109
|
import { DescribeEdgePackagingJobCommand, } from "./commands/DescribeEdgePackagingJobCommand";
|
|
105
110
|
import { DescribeEndpointCommand, } from "./commands/DescribeEndpointCommand";
|
|
106
111
|
import { DescribeEndpointConfigCommand, } from "./commands/DescribeEndpointConfigCommand";
|
|
@@ -161,6 +166,7 @@ import { ListDataQualityJobDefinitionsCommand, } from "./commands/ListDataQualit
|
|
|
161
166
|
import { ListDeviceFleetsCommand, } from "./commands/ListDeviceFleetsCommand";
|
|
162
167
|
import { ListDevicesCommand } from "./commands/ListDevicesCommand";
|
|
163
168
|
import { ListDomainsCommand } from "./commands/ListDomainsCommand";
|
|
169
|
+
import { ListEdgeDeploymentPlansCommand, } from "./commands/ListEdgeDeploymentPlansCommand";
|
|
164
170
|
import { ListEdgePackagingJobsCommand, } from "./commands/ListEdgePackagingJobsCommand";
|
|
165
171
|
import { ListEndpointConfigsCommand, } from "./commands/ListEndpointConfigsCommand";
|
|
166
172
|
import { ListEndpointsCommand, } from "./commands/ListEndpointsCommand";
|
|
@@ -192,6 +198,7 @@ import { ListPipelineParametersForExecutionCommand, } from "./commands/ListPipel
|
|
|
192
198
|
import { ListPipelinesCommand, } from "./commands/ListPipelinesCommand";
|
|
193
199
|
import { ListProcessingJobsCommand, } from "./commands/ListProcessingJobsCommand";
|
|
194
200
|
import { ListProjectsCommand, } from "./commands/ListProjectsCommand";
|
|
201
|
+
import { ListStageDevicesCommand, } from "./commands/ListStageDevicesCommand";
|
|
195
202
|
import { ListStudioLifecycleConfigsCommand, } from "./commands/ListStudioLifecycleConfigsCommand";
|
|
196
203
|
import { ListSubscribedWorkteamsCommand, } from "./commands/ListSubscribedWorkteamsCommand";
|
|
197
204
|
import { ListTagsCommand } from "./commands/ListTagsCommand";
|
|
@@ -211,11 +218,13 @@ import { RetryPipelineExecutionCommand, } from "./commands/RetryPipelineExecutio
|
|
|
211
218
|
import { SearchCommand } from "./commands/SearchCommand";
|
|
212
219
|
import { SendPipelineExecutionStepFailureCommand, } from "./commands/SendPipelineExecutionStepFailureCommand";
|
|
213
220
|
import { SendPipelineExecutionStepSuccessCommand, } from "./commands/SendPipelineExecutionStepSuccessCommand";
|
|
221
|
+
import { StartEdgeDeploymentStageCommand, } from "./commands/StartEdgeDeploymentStageCommand";
|
|
214
222
|
import { StartMonitoringScheduleCommand, } from "./commands/StartMonitoringScheduleCommand";
|
|
215
223
|
import { StartNotebookInstanceCommand, } from "./commands/StartNotebookInstanceCommand";
|
|
216
224
|
import { StartPipelineExecutionCommand, } from "./commands/StartPipelineExecutionCommand";
|
|
217
225
|
import { StopAutoMLJobCommand, } from "./commands/StopAutoMLJobCommand";
|
|
218
226
|
import { StopCompilationJobCommand, } from "./commands/StopCompilationJobCommand";
|
|
227
|
+
import { StopEdgeDeploymentStageCommand, } from "./commands/StopEdgeDeploymentStageCommand";
|
|
219
228
|
import { StopEdgePackagingJobCommand, } from "./commands/StopEdgePackagingJobCommand";
|
|
220
229
|
import { StopHyperParameterTuningJobCommand, } from "./commands/StopHyperParameterTuningJobCommand";
|
|
221
230
|
import { StopInferenceRecommendationsJobCommand, } from "./commands/StopInferenceRecommendationsJobCommand";
|
|
@@ -483,6 +492,34 @@ var SageMaker = (function (_super) {
|
|
|
483
492
|
return this.send(command, optionsOrCb);
|
|
484
493
|
}
|
|
485
494
|
};
|
|
495
|
+
SageMaker.prototype.createEdgeDeploymentPlan = function (args, optionsOrCb, cb) {
|
|
496
|
+
var command = new CreateEdgeDeploymentPlanCommand(args);
|
|
497
|
+
if (typeof optionsOrCb === "function") {
|
|
498
|
+
this.send(command, optionsOrCb);
|
|
499
|
+
}
|
|
500
|
+
else if (typeof cb === "function") {
|
|
501
|
+
if (typeof optionsOrCb !== "object")
|
|
502
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
503
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
504
|
+
}
|
|
505
|
+
else {
|
|
506
|
+
return this.send(command, optionsOrCb);
|
|
507
|
+
}
|
|
508
|
+
};
|
|
509
|
+
SageMaker.prototype.createEdgeDeploymentStage = function (args, optionsOrCb, cb) {
|
|
510
|
+
var command = new CreateEdgeDeploymentStageCommand(args);
|
|
511
|
+
if (typeof optionsOrCb === "function") {
|
|
512
|
+
this.send(command, optionsOrCb);
|
|
513
|
+
}
|
|
514
|
+
else if (typeof cb === "function") {
|
|
515
|
+
if (typeof optionsOrCb !== "object")
|
|
516
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
517
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
518
|
+
}
|
|
519
|
+
else {
|
|
520
|
+
return this.send(command, optionsOrCb);
|
|
521
|
+
}
|
|
522
|
+
};
|
|
486
523
|
SageMaker.prototype.createEdgePackagingJob = function (args, optionsOrCb, cb) {
|
|
487
524
|
var command = new CreateEdgePackagingJobCommand(args);
|
|
488
525
|
if (typeof optionsOrCb === "function") {
|
|
@@ -1113,6 +1150,34 @@ var SageMaker = (function (_super) {
|
|
|
1113
1150
|
return this.send(command, optionsOrCb);
|
|
1114
1151
|
}
|
|
1115
1152
|
};
|
|
1153
|
+
SageMaker.prototype.deleteEdgeDeploymentPlan = function (args, optionsOrCb, cb) {
|
|
1154
|
+
var command = new DeleteEdgeDeploymentPlanCommand(args);
|
|
1155
|
+
if (typeof optionsOrCb === "function") {
|
|
1156
|
+
this.send(command, optionsOrCb);
|
|
1157
|
+
}
|
|
1158
|
+
else if (typeof cb === "function") {
|
|
1159
|
+
if (typeof optionsOrCb !== "object")
|
|
1160
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
1161
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1162
|
+
}
|
|
1163
|
+
else {
|
|
1164
|
+
return this.send(command, optionsOrCb);
|
|
1165
|
+
}
|
|
1166
|
+
};
|
|
1167
|
+
SageMaker.prototype.deleteEdgeDeploymentStage = function (args, optionsOrCb, cb) {
|
|
1168
|
+
var command = new DeleteEdgeDeploymentStageCommand(args);
|
|
1169
|
+
if (typeof optionsOrCb === "function") {
|
|
1170
|
+
this.send(command, optionsOrCb);
|
|
1171
|
+
}
|
|
1172
|
+
else if (typeof cb === "function") {
|
|
1173
|
+
if (typeof optionsOrCb !== "object")
|
|
1174
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
1175
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1176
|
+
}
|
|
1177
|
+
else {
|
|
1178
|
+
return this.send(command, optionsOrCb);
|
|
1179
|
+
}
|
|
1180
|
+
};
|
|
1116
1181
|
SageMaker.prototype.deleteEndpoint = function (args, optionsOrCb, cb) {
|
|
1117
1182
|
var command = new DeleteEndpointCommand(args);
|
|
1118
1183
|
if (typeof optionsOrCb === "function") {
|
|
@@ -1687,6 +1752,20 @@ var SageMaker = (function (_super) {
|
|
|
1687
1752
|
return this.send(command, optionsOrCb);
|
|
1688
1753
|
}
|
|
1689
1754
|
};
|
|
1755
|
+
SageMaker.prototype.describeEdgeDeploymentPlan = function (args, optionsOrCb, cb) {
|
|
1756
|
+
var command = new DescribeEdgeDeploymentPlanCommand(args);
|
|
1757
|
+
if (typeof optionsOrCb === "function") {
|
|
1758
|
+
this.send(command, optionsOrCb);
|
|
1759
|
+
}
|
|
1760
|
+
else if (typeof cb === "function") {
|
|
1761
|
+
if (typeof optionsOrCb !== "object")
|
|
1762
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
1763
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1764
|
+
}
|
|
1765
|
+
else {
|
|
1766
|
+
return this.send(command, optionsOrCb);
|
|
1767
|
+
}
|
|
1768
|
+
};
|
|
1690
1769
|
SageMaker.prototype.describeEdgePackagingJob = function (args, optionsOrCb, cb) {
|
|
1691
1770
|
var command = new DescribeEdgePackagingJobCommand(args);
|
|
1692
1771
|
if (typeof optionsOrCb === "function") {
|
|
@@ -2527,6 +2606,20 @@ var SageMaker = (function (_super) {
|
|
|
2527
2606
|
return this.send(command, optionsOrCb);
|
|
2528
2607
|
}
|
|
2529
2608
|
};
|
|
2609
|
+
SageMaker.prototype.listEdgeDeploymentPlans = function (args, optionsOrCb, cb) {
|
|
2610
|
+
var command = new ListEdgeDeploymentPlansCommand(args);
|
|
2611
|
+
if (typeof optionsOrCb === "function") {
|
|
2612
|
+
this.send(command, optionsOrCb);
|
|
2613
|
+
}
|
|
2614
|
+
else if (typeof cb === "function") {
|
|
2615
|
+
if (typeof optionsOrCb !== "object")
|
|
2616
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
2617
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
2618
|
+
}
|
|
2619
|
+
else {
|
|
2620
|
+
return this.send(command, optionsOrCb);
|
|
2621
|
+
}
|
|
2622
|
+
};
|
|
2530
2623
|
SageMaker.prototype.listEdgePackagingJobs = function (args, optionsOrCb, cb) {
|
|
2531
2624
|
var command = new ListEdgePackagingJobsCommand(args);
|
|
2532
2625
|
if (typeof optionsOrCb === "function") {
|
|
@@ -2961,6 +3054,20 @@ var SageMaker = (function (_super) {
|
|
|
2961
3054
|
return this.send(command, optionsOrCb);
|
|
2962
3055
|
}
|
|
2963
3056
|
};
|
|
3057
|
+
SageMaker.prototype.listStageDevices = function (args, optionsOrCb, cb) {
|
|
3058
|
+
var command = new ListStageDevicesCommand(args);
|
|
3059
|
+
if (typeof optionsOrCb === "function") {
|
|
3060
|
+
this.send(command, optionsOrCb);
|
|
3061
|
+
}
|
|
3062
|
+
else if (typeof cb === "function") {
|
|
3063
|
+
if (typeof optionsOrCb !== "object")
|
|
3064
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
3065
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
3066
|
+
}
|
|
3067
|
+
else {
|
|
3068
|
+
return this.send(command, optionsOrCb);
|
|
3069
|
+
}
|
|
3070
|
+
};
|
|
2964
3071
|
SageMaker.prototype.listStudioLifecycleConfigs = function (args, optionsOrCb, cb) {
|
|
2965
3072
|
var command = new ListStudioLifecycleConfigsCommand(args);
|
|
2966
3073
|
if (typeof optionsOrCb === "function") {
|
|
@@ -3227,6 +3334,20 @@ var SageMaker = (function (_super) {
|
|
|
3227
3334
|
return this.send(command, optionsOrCb);
|
|
3228
3335
|
}
|
|
3229
3336
|
};
|
|
3337
|
+
SageMaker.prototype.startEdgeDeploymentStage = function (args, optionsOrCb, cb) {
|
|
3338
|
+
var command = new StartEdgeDeploymentStageCommand(args);
|
|
3339
|
+
if (typeof optionsOrCb === "function") {
|
|
3340
|
+
this.send(command, optionsOrCb);
|
|
3341
|
+
}
|
|
3342
|
+
else if (typeof cb === "function") {
|
|
3343
|
+
if (typeof optionsOrCb !== "object")
|
|
3344
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
3345
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
3346
|
+
}
|
|
3347
|
+
else {
|
|
3348
|
+
return this.send(command, optionsOrCb);
|
|
3349
|
+
}
|
|
3350
|
+
};
|
|
3230
3351
|
SageMaker.prototype.startMonitoringSchedule = function (args, optionsOrCb, cb) {
|
|
3231
3352
|
var command = new StartMonitoringScheduleCommand(args);
|
|
3232
3353
|
if (typeof optionsOrCb === "function") {
|
|
@@ -3297,6 +3418,20 @@ var SageMaker = (function (_super) {
|
|
|
3297
3418
|
return this.send(command, optionsOrCb);
|
|
3298
3419
|
}
|
|
3299
3420
|
};
|
|
3421
|
+
SageMaker.prototype.stopEdgeDeploymentStage = function (args, optionsOrCb, cb) {
|
|
3422
|
+
var command = new StopEdgeDeploymentStageCommand(args);
|
|
3423
|
+
if (typeof optionsOrCb === "function") {
|
|
3424
|
+
this.send(command, optionsOrCb);
|
|
3425
|
+
}
|
|
3426
|
+
else if (typeof cb === "function") {
|
|
3427
|
+
if (typeof optionsOrCb !== "object")
|
|
3428
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
3429
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
3430
|
+
}
|
|
3431
|
+
else {
|
|
3432
|
+
return this.send(command, optionsOrCb);
|
|
3433
|
+
}
|
|
3434
|
+
};
|
|
3300
3435
|
SageMaker.prototype.stopEdgePackagingJob = function (args, optionsOrCb, cb) {
|
|
3301
3436
|
var command = new StopEdgePackagingJobCommand(args);
|
|
3302
3437
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { CreateEdgeDeploymentPlanRequest, CreateEdgeDeploymentPlanResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_json1_1CreateEdgeDeploymentPlanCommand, serializeAws_json1_1CreateEdgeDeploymentPlanCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var CreateEdgeDeploymentPlanCommand = (function (_super) {
|
|
7
|
+
__extends(CreateEdgeDeploymentPlanCommand, _super);
|
|
8
|
+
function CreateEdgeDeploymentPlanCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
CreateEdgeDeploymentPlanCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "CreateEdgeDeploymentPlanCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: CreateEdgeDeploymentPlanRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateEdgeDeploymentPlanResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
CreateEdgeDeploymentPlanCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1CreateEdgeDeploymentPlanCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
CreateEdgeDeploymentPlanCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1CreateEdgeDeploymentPlanCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return CreateEdgeDeploymentPlanCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateEdgeDeploymentPlanCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { CreateEdgeDeploymentStageRequest } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_json1_1CreateEdgeDeploymentStageCommand, serializeAws_json1_1CreateEdgeDeploymentStageCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var CreateEdgeDeploymentStageCommand = (function (_super) {
|
|
7
|
+
__extends(CreateEdgeDeploymentStageCommand, _super);
|
|
8
|
+
function CreateEdgeDeploymentStageCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
CreateEdgeDeploymentStageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "CreateEdgeDeploymentStageCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: CreateEdgeDeploymentStageRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
CreateEdgeDeploymentStageCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1CreateEdgeDeploymentStageCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
CreateEdgeDeploymentStageCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1CreateEdgeDeploymentStageCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return CreateEdgeDeploymentStageCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateEdgeDeploymentStageCommand };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { CreateHyperParameterTuningJobRequest, CreateHyperParameterTuningJobResponse } from "../models/
|
|
4
|
+
import { CreateHyperParameterTuningJobRequest, CreateHyperParameterTuningJobResponse } from "../models/models_1";
|
|
5
5
|
import { deserializeAws_json1_1CreateHyperParameterTuningJobCommand, serializeAws_json1_1CreateHyperParameterTuningJobCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateHyperParameterTuningJobCommand = (function (_super) {
|
|
7
7
|
__extends(CreateHyperParameterTuningJobCommand, _super);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DeleteEdgeDeploymentPlanRequest } from "../models/models_1";
|
|
5
|
+
import { deserializeAws_json1_1DeleteEdgeDeploymentPlanCommand, serializeAws_json1_1DeleteEdgeDeploymentPlanCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var DeleteEdgeDeploymentPlanCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteEdgeDeploymentPlanCommand, _super);
|
|
8
|
+
function DeleteEdgeDeploymentPlanCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DeleteEdgeDeploymentPlanCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "DeleteEdgeDeploymentPlanCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DeleteEdgeDeploymentPlanRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeleteEdgeDeploymentPlanCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1DeleteEdgeDeploymentPlanCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DeleteEdgeDeploymentPlanCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1DeleteEdgeDeploymentPlanCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DeleteEdgeDeploymentPlanCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteEdgeDeploymentPlanCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DeleteEdgeDeploymentStageRequest } from "../models/models_1";
|
|
5
|
+
import { deserializeAws_json1_1DeleteEdgeDeploymentStageCommand, serializeAws_json1_1DeleteEdgeDeploymentStageCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var DeleteEdgeDeploymentStageCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteEdgeDeploymentStageCommand, _super);
|
|
8
|
+
function DeleteEdgeDeploymentStageCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DeleteEdgeDeploymentStageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "DeleteEdgeDeploymentStageCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DeleteEdgeDeploymentStageRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeleteEdgeDeploymentStageCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1DeleteEdgeDeploymentStageCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DeleteEdgeDeploymentStageCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1DeleteEdgeDeploymentStageCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DeleteEdgeDeploymentStageCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteEdgeDeploymentStageCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DescribeEdgeDeploymentPlanRequest, DescribeEdgeDeploymentPlanResponse } from "../models/models_1";
|
|
5
|
+
import { deserializeAws_json1_1DescribeEdgeDeploymentPlanCommand, serializeAws_json1_1DescribeEdgeDeploymentPlanCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var DescribeEdgeDeploymentPlanCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeEdgeDeploymentPlanCommand, _super);
|
|
8
|
+
function DescribeEdgeDeploymentPlanCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DescribeEdgeDeploymentPlanCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "DescribeEdgeDeploymentPlanCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DescribeEdgeDeploymentPlanRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeEdgeDeploymentPlanResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeEdgeDeploymentPlanCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1DescribeEdgeDeploymentPlanCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DescribeEdgeDeploymentPlanCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1DescribeEdgeDeploymentPlanCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DescribeEdgeDeploymentPlanCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeEdgeDeploymentPlanCommand };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeHyperParameterTuningJobRequest, DescribeHyperParameterTuningJobResponse } from "../models/
|
|
4
|
+
import { DescribeHyperParameterTuningJobRequest, DescribeHyperParameterTuningJobResponse } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_json1_1DescribeHyperParameterTuningJobCommand, serializeAws_json1_1DescribeHyperParameterTuningJobCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeHyperParameterTuningJobCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeHyperParameterTuningJobCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeImageRequest, DescribeImageResponse } from "../models/
|
|
4
|
+
import { DescribeImageRequest, DescribeImageResponse } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_json1_1DescribeImageCommand, serializeAws_json1_1DescribeImageCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeImageCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeImageCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeImageVersionRequest, DescribeImageVersionResponse } from "../models/
|
|
4
|
+
import { DescribeImageVersionRequest, DescribeImageVersionResponse } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_json1_1DescribeImageVersionCommand, serializeAws_json1_1DescribeImageVersionCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeImageVersionCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeImageVersionCommand, _super);
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeInferenceRecommendationsJobRequest } from "../models/
|
|
5
|
-
import { DescribeInferenceRecommendationsJobResponse } from "../models/models_2";
|
|
4
|
+
import { DescribeInferenceRecommendationsJobRequest, DescribeInferenceRecommendationsJobResponse, } from "../models/models_2";
|
|
6
5
|
import { deserializeAws_json1_1DescribeInferenceRecommendationsJobCommand, serializeAws_json1_1DescribeInferenceRecommendationsJobCommand, } from "../protocols/Aws_json1_1";
|
|
7
6
|
var DescribeInferenceRecommendationsJobCommand = (function (_super) {
|
|
8
7
|
__extends(DescribeInferenceRecommendationsJobCommand, _super);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListEdgeDeploymentPlansRequest, ListEdgeDeploymentPlansResponse } from "../models/models_2";
|
|
5
|
+
import { deserializeAws_json1_1ListEdgeDeploymentPlansCommand, serializeAws_json1_1ListEdgeDeploymentPlansCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var ListEdgeDeploymentPlansCommand = (function (_super) {
|
|
7
|
+
__extends(ListEdgeDeploymentPlansCommand, _super);
|
|
8
|
+
function ListEdgeDeploymentPlansCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListEdgeDeploymentPlansCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "ListEdgeDeploymentPlansCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListEdgeDeploymentPlansRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListEdgeDeploymentPlansResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListEdgeDeploymentPlansCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1ListEdgeDeploymentPlansCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListEdgeDeploymentPlansCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1ListEdgeDeploymentPlansCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListEdgeDeploymentPlansCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListEdgeDeploymentPlansCommand };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListPipelineExecutionStepsRequest, ListPipelineExecutionStepsResponse } from "../models/
|
|
4
|
+
import { ListPipelineExecutionStepsRequest, ListPipelineExecutionStepsResponse } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListPipelineExecutionStepsCommand, serializeAws_json1_1ListPipelineExecutionStepsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListPipelineExecutionStepsCommand = (function (_super) {
|
|
7
7
|
__extends(ListPipelineExecutionStepsCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListPipelineParametersForExecutionRequest, ListPipelineParametersForExecutionResponse, } from "../models/
|
|
4
|
+
import { ListPipelineParametersForExecutionRequest, ListPipelineParametersForExecutionResponse, } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListPipelineParametersForExecutionCommand, serializeAws_json1_1ListPipelineParametersForExecutionCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListPipelineParametersForExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(ListPipelineParametersForExecutionCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListPipelinesRequest, ListPipelinesResponse } from "../models/
|
|
4
|
+
import { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListPipelinesCommand, serializeAws_json1_1ListPipelinesCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListPipelinesCommand = (function (_super) {
|
|
7
7
|
__extends(ListPipelinesCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListProcessingJobsRequest, ListProcessingJobsResponse } from "../models/
|
|
4
|
+
import { ListProcessingJobsRequest, ListProcessingJobsResponse } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListProcessingJobsCommand, serializeAws_json1_1ListProcessingJobsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListProcessingJobsCommand = (function (_super) {
|
|
7
7
|
__extends(ListProcessingJobsCommand, _super);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListStageDevicesRequest, ListStageDevicesResponse } from "../models/models_3";
|
|
5
|
+
import { deserializeAws_json1_1ListStageDevicesCommand, serializeAws_json1_1ListStageDevicesCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var ListStageDevicesCommand = (function (_super) {
|
|
7
|
+
__extends(ListStageDevicesCommand, _super);
|
|
8
|
+
function ListStageDevicesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListStageDevicesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "ListStageDevicesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListStageDevicesRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListStageDevicesResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListStageDevicesCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1ListStageDevicesCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListStageDevicesCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1ListStageDevicesCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListStageDevicesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListStageDevicesCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { StartEdgeDeploymentStageRequest } from "../models/models_3";
|
|
5
|
+
import { deserializeAws_json1_1StartEdgeDeploymentStageCommand, serializeAws_json1_1StartEdgeDeploymentStageCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var StartEdgeDeploymentStageCommand = (function (_super) {
|
|
7
|
+
__extends(StartEdgeDeploymentStageCommand, _super);
|
|
8
|
+
function StartEdgeDeploymentStageCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
StartEdgeDeploymentStageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "StartEdgeDeploymentStageCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: StartEdgeDeploymentStageRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
StartEdgeDeploymentStageCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1StartEdgeDeploymentStageCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
StartEdgeDeploymentStageCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1StartEdgeDeploymentStageCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return StartEdgeDeploymentStageCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { StartEdgeDeploymentStageCommand };
|