@aws-sdk/client-sagemaker 3.131.0 → 3.132.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/SageMaker.js +135 -0
- package/dist-cjs/commands/CreateEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/CreateEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/CreateHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DeleteEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DeleteEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/DescribeEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DescribeHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageVersionCommand.js +3 -3
- package/dist-cjs/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-cjs/commands/ListEdgeDeploymentPlansCommand.js +36 -0
- package/dist-cjs/commands/ListPipelineExecutionStepsCommand.js +3 -3
- package/dist-cjs/commands/ListPipelineParametersForExecutionCommand.js +3 -3
- package/dist-cjs/commands/ListPipelinesCommand.js +3 -3
- package/dist-cjs/commands/ListProcessingJobsCommand.js +3 -3
- package/dist-cjs/commands/ListStageDevicesCommand.js +36 -0
- package/dist-cjs/commands/StartEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/StopEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +54 -54
- package/dist-cjs/models/models_1.js +106 -112
- package/dist-cjs/models/models_2.js +152 -140
- package/dist-cjs/models/models_3.js +162 -3
- package/dist-cjs/pagination/ListEdgeDeploymentPlansPaginator.js +36 -0
- package/dist-cjs/pagination/ListStageDevicesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +710 -11
- package/dist-es/SageMaker.js +135 -0
- package/dist-es/commands/CreateEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/CreateEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/CreateHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DeleteEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DeleteEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/DescribeEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DescribeHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DescribeImageCommand.js +1 -1
- package/dist-es/commands/DescribeImageVersionCommand.js +1 -1
- package/dist-es/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-es/commands/ListEdgeDeploymentPlansCommand.js +39 -0
- package/dist-es/commands/ListPipelineExecutionStepsCommand.js +1 -1
- package/dist-es/commands/ListPipelineParametersForExecutionCommand.js +1 -1
- package/dist-es/commands/ListPipelinesCommand.js +1 -1
- package/dist-es/commands/ListProcessingJobsCommand.js +1 -1
- package/dist-es/commands/ListStageDevicesCommand.js +39 -0
- package/dist-es/commands/StartEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/StopEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +39 -37
- package/dist-es/models/models_1.js +72 -82
- package/dist-es/models/models_2.js +114 -94
- package/dist-es/models/models_3.js +110 -0
- package/dist-es/pagination/ListEdgeDeploymentPlansPaginator.js +75 -0
- package/dist-es/pagination/ListStageDevicesPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +798 -12
- package/dist-types/SageMaker.d.ts +63 -0
- package/dist-types/SageMakerClient.d.ts +11 -2
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +35 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +35 -0
- package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/StopEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +150 -451
- package/dist-types/models/models_1.d.ts +645 -504
- package/dist-types/models/models_2.d.ts +5430 -5423
- package/dist-types/models/models_3.d.ts +730 -3
- package/dist-types/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/SageMaker.d.ts +45 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +11 -2
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +91 -132
- package/dist-types/ts3.4/models/models_1.d.ts +235 -238
- package/dist-types/ts3.4/models/models_2.d.ts +341 -324
- package/dist-types/ts3.4/models/models_3.d.ts +371 -3
- package/dist-types/ts3.4/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +27 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListEdgeDeploymentPlansCommandInput, ListEdgeDeploymentPlansCommandOutput } from "../commands/ListEdgeDeploymentPlansCommand";
|
|
3
|
+
import { SageMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListEdgeDeploymentPlans(config: SageMakerPaginationConfiguration, input: ListEdgeDeploymentPlansCommandInput, ...additionalArguments: any): Paginator<ListEdgeDeploymentPlansCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListStageDevicesCommandInput, ListStageDevicesCommandOutput } from "../commands/ListStageDevicesCommand";
|
|
3
|
+
import { SageMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListStageDevices(config: SageMakerPaginationConfiguration, input: ListStageDevicesCommandInput, ...additionalArguments: any): Paginator<ListStageDevicesCommandOutput>;
|
|
@@ -14,6 +14,7 @@ export * from "./ListDataQualityJobDefinitionsPaginator";
|
|
|
14
14
|
export * from "./ListDeviceFleetsPaginator";
|
|
15
15
|
export * from "./ListDevicesPaginator";
|
|
16
16
|
export * from "./ListDomainsPaginator";
|
|
17
|
+
export * from "./ListEdgeDeploymentPlansPaginator";
|
|
17
18
|
export * from "./ListEdgePackagingJobsPaginator";
|
|
18
19
|
export * from "./ListEndpointConfigsPaginator";
|
|
19
20
|
export * from "./ListEndpointsPaginator";
|
|
@@ -44,6 +45,7 @@ export * from "./ListPipelineParametersForExecutionPaginator";
|
|
|
44
45
|
export * from "./ListPipelinesPaginator";
|
|
45
46
|
export * from "./ListProcessingJobsPaginator";
|
|
46
47
|
export * from "./ListProjectsPaginator";
|
|
48
|
+
export * from "./ListStageDevicesPaginator";
|
|
47
49
|
export * from "./ListStudioLifecycleConfigsPaginator";
|
|
48
50
|
export * from "./ListSubscribedWorkteamsPaginator";
|
|
49
51
|
export * from "./ListTagsPaginator";
|
|
@@ -16,6 +16,8 @@ import { CreateContextCommandInput, CreateContextCommandOutput } from "../comman
|
|
|
16
16
|
import { CreateDataQualityJobDefinitionCommandInput, CreateDataQualityJobDefinitionCommandOutput } from "../commands/CreateDataQualityJobDefinitionCommand";
|
|
17
17
|
import { CreateDeviceFleetCommandInput, CreateDeviceFleetCommandOutput } from "../commands/CreateDeviceFleetCommand";
|
|
18
18
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
|
|
19
|
+
import { CreateEdgeDeploymentPlanCommandInput, CreateEdgeDeploymentPlanCommandOutput } from "../commands/CreateEdgeDeploymentPlanCommand";
|
|
20
|
+
import { CreateEdgeDeploymentStageCommandInput, CreateEdgeDeploymentStageCommandOutput } from "../commands/CreateEdgeDeploymentStageCommand";
|
|
19
21
|
import { CreateEdgePackagingJobCommandInput, CreateEdgePackagingJobCommandOutput } from "../commands/CreateEdgePackagingJobCommand";
|
|
20
22
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "../commands/CreateEndpointCommand";
|
|
21
23
|
import { CreateEndpointConfigCommandInput, CreateEndpointConfigCommandOutput } from "../commands/CreateEndpointConfigCommand";
|
|
@@ -61,6 +63,8 @@ import { DeleteContextCommandInput, DeleteContextCommandOutput } from "../comman
|
|
|
61
63
|
import { DeleteDataQualityJobDefinitionCommandInput, DeleteDataQualityJobDefinitionCommandOutput } from "../commands/DeleteDataQualityJobDefinitionCommand";
|
|
62
64
|
import { DeleteDeviceFleetCommandInput, DeleteDeviceFleetCommandOutput } from "../commands/DeleteDeviceFleetCommand";
|
|
63
65
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
|
|
66
|
+
import { DeleteEdgeDeploymentPlanCommandInput, DeleteEdgeDeploymentPlanCommandOutput } from "../commands/DeleteEdgeDeploymentPlanCommand";
|
|
67
|
+
import { DeleteEdgeDeploymentStageCommandInput, DeleteEdgeDeploymentStageCommandOutput } from "../commands/DeleteEdgeDeploymentStageCommand";
|
|
64
68
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "../commands/DeleteEndpointCommand";
|
|
65
69
|
import { DeleteEndpointConfigCommandInput, DeleteEndpointConfigCommandOutput } from "../commands/DeleteEndpointConfigCommand";
|
|
66
70
|
import { DeleteExperimentCommandInput, DeleteExperimentCommandOutput } from "../commands/DeleteExperimentCommand";
|
|
@@ -102,6 +106,7 @@ import { DescribeDataQualityJobDefinitionCommandInput, DescribeDataQualityJobDef
|
|
|
102
106
|
import { DescribeDeviceCommandInput, DescribeDeviceCommandOutput } from "../commands/DescribeDeviceCommand";
|
|
103
107
|
import { DescribeDeviceFleetCommandInput, DescribeDeviceFleetCommandOutput } from "../commands/DescribeDeviceFleetCommand";
|
|
104
108
|
import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "../commands/DescribeDomainCommand";
|
|
109
|
+
import { DescribeEdgeDeploymentPlanCommandInput, DescribeEdgeDeploymentPlanCommandOutput } from "../commands/DescribeEdgeDeploymentPlanCommand";
|
|
105
110
|
import { DescribeEdgePackagingJobCommandInput, DescribeEdgePackagingJobCommandOutput } from "../commands/DescribeEdgePackagingJobCommand";
|
|
106
111
|
import { DescribeEndpointCommandInput, DescribeEndpointCommandOutput } from "../commands/DescribeEndpointCommand";
|
|
107
112
|
import { DescribeEndpointConfigCommandInput, DescribeEndpointConfigCommandOutput } from "../commands/DescribeEndpointConfigCommand";
|
|
@@ -162,6 +167,7 @@ import { ListDataQualityJobDefinitionsCommandInput, ListDataQualityJobDefinition
|
|
|
162
167
|
import { ListDeviceFleetsCommandInput, ListDeviceFleetsCommandOutput } from "../commands/ListDeviceFleetsCommand";
|
|
163
168
|
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand";
|
|
164
169
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
170
|
+
import { ListEdgeDeploymentPlansCommandInput, ListEdgeDeploymentPlansCommandOutput } from "../commands/ListEdgeDeploymentPlansCommand";
|
|
165
171
|
import { ListEdgePackagingJobsCommandInput, ListEdgePackagingJobsCommandOutput } from "../commands/ListEdgePackagingJobsCommand";
|
|
166
172
|
import { ListEndpointConfigsCommandInput, ListEndpointConfigsCommandOutput } from "../commands/ListEndpointConfigsCommand";
|
|
167
173
|
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "../commands/ListEndpointsCommand";
|
|
@@ -193,6 +199,7 @@ import { ListPipelineParametersForExecutionCommandInput, ListPipelineParametersF
|
|
|
193
199
|
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand";
|
|
194
200
|
import { ListProcessingJobsCommandInput, ListProcessingJobsCommandOutput } from "../commands/ListProcessingJobsCommand";
|
|
195
201
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands/ListProjectsCommand";
|
|
202
|
+
import { ListStageDevicesCommandInput, ListStageDevicesCommandOutput } from "../commands/ListStageDevicesCommand";
|
|
196
203
|
import { ListStudioLifecycleConfigsCommandInput, ListStudioLifecycleConfigsCommandOutput } from "../commands/ListStudioLifecycleConfigsCommand";
|
|
197
204
|
import { ListSubscribedWorkteamsCommandInput, ListSubscribedWorkteamsCommandOutput } from "../commands/ListSubscribedWorkteamsCommand";
|
|
198
205
|
import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
|
|
@@ -212,11 +219,13 @@ import { RetryPipelineExecutionCommandInput, RetryPipelineExecutionCommandOutput
|
|
|
212
219
|
import { SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand";
|
|
213
220
|
import { SendPipelineExecutionStepFailureCommandInput, SendPipelineExecutionStepFailureCommandOutput } from "../commands/SendPipelineExecutionStepFailureCommand";
|
|
214
221
|
import { SendPipelineExecutionStepSuccessCommandInput, SendPipelineExecutionStepSuccessCommandOutput } from "../commands/SendPipelineExecutionStepSuccessCommand";
|
|
222
|
+
import { StartEdgeDeploymentStageCommandInput, StartEdgeDeploymentStageCommandOutput } from "../commands/StartEdgeDeploymentStageCommand";
|
|
215
223
|
import { StartMonitoringScheduleCommandInput, StartMonitoringScheduleCommandOutput } from "../commands/StartMonitoringScheduleCommand";
|
|
216
224
|
import { StartNotebookInstanceCommandInput, StartNotebookInstanceCommandOutput } from "../commands/StartNotebookInstanceCommand";
|
|
217
225
|
import { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "../commands/StartPipelineExecutionCommand";
|
|
218
226
|
import { StopAutoMLJobCommandInput, StopAutoMLJobCommandOutput } from "../commands/StopAutoMLJobCommand";
|
|
219
227
|
import { StopCompilationJobCommandInput, StopCompilationJobCommandOutput } from "../commands/StopCompilationJobCommand";
|
|
228
|
+
import { StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput } from "../commands/StopEdgeDeploymentStageCommand";
|
|
220
229
|
import { StopEdgePackagingJobCommandInput, StopEdgePackagingJobCommandOutput } from "../commands/StopEdgePackagingJobCommand";
|
|
221
230
|
import { StopHyperParameterTuningJobCommandInput, StopHyperParameterTuningJobCommandOutput } from "../commands/StopHyperParameterTuningJobCommand";
|
|
222
231
|
import { StopInferenceRecommendationsJobCommandInput, StopInferenceRecommendationsJobCommandOutput } from "../commands/StopInferenceRecommendationsJobCommand";
|
|
@@ -270,6 +279,8 @@ export declare const serializeAws_json1_1CreateContextCommand: (input: CreateCon
|
|
|
270
279
|
export declare const serializeAws_json1_1CreateDataQualityJobDefinitionCommand: (input: CreateDataQualityJobDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
271
280
|
export declare const serializeAws_json1_1CreateDeviceFleetCommand: (input: CreateDeviceFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
272
281
|
export declare const serializeAws_json1_1CreateDomainCommand: (input: CreateDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
282
|
+
export declare const serializeAws_json1_1CreateEdgeDeploymentPlanCommand: (input: CreateEdgeDeploymentPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
283
|
+
export declare const serializeAws_json1_1CreateEdgeDeploymentStageCommand: (input: CreateEdgeDeploymentStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
273
284
|
export declare const serializeAws_json1_1CreateEdgePackagingJobCommand: (input: CreateEdgePackagingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
274
285
|
export declare const serializeAws_json1_1CreateEndpointCommand: (input: CreateEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
275
286
|
export declare const serializeAws_json1_1CreateEndpointConfigCommand: (input: CreateEndpointConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -315,6 +326,8 @@ export declare const serializeAws_json1_1DeleteContextCommand: (input: DeleteCon
|
|
|
315
326
|
export declare const serializeAws_json1_1DeleteDataQualityJobDefinitionCommand: (input: DeleteDataQualityJobDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
316
327
|
export declare const serializeAws_json1_1DeleteDeviceFleetCommand: (input: DeleteDeviceFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
317
328
|
export declare const serializeAws_json1_1DeleteDomainCommand: (input: DeleteDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
329
|
+
export declare const serializeAws_json1_1DeleteEdgeDeploymentPlanCommand: (input: DeleteEdgeDeploymentPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const serializeAws_json1_1DeleteEdgeDeploymentStageCommand: (input: DeleteEdgeDeploymentStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
318
331
|
export declare const serializeAws_json1_1DeleteEndpointCommand: (input: DeleteEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
319
332
|
export declare const serializeAws_json1_1DeleteEndpointConfigCommand: (input: DeleteEndpointConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
320
333
|
export declare const serializeAws_json1_1DeleteExperimentCommand: (input: DeleteExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -356,6 +369,7 @@ export declare const serializeAws_json1_1DescribeDataQualityJobDefinitionCommand
|
|
|
356
369
|
export declare const serializeAws_json1_1DescribeDeviceCommand: (input: DescribeDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
357
370
|
export declare const serializeAws_json1_1DescribeDeviceFleetCommand: (input: DescribeDeviceFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
358
371
|
export declare const serializeAws_json1_1DescribeDomainCommand: (input: DescribeDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
372
|
+
export declare const serializeAws_json1_1DescribeEdgeDeploymentPlanCommand: (input: DescribeEdgeDeploymentPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
359
373
|
export declare const serializeAws_json1_1DescribeEdgePackagingJobCommand: (input: DescribeEdgePackagingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
360
374
|
export declare const serializeAws_json1_1DescribeEndpointCommand: (input: DescribeEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
361
375
|
export declare const serializeAws_json1_1DescribeEndpointConfigCommand: (input: DescribeEndpointConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -416,6 +430,7 @@ export declare const serializeAws_json1_1ListDataQualityJobDefinitionsCommand: (
|
|
|
416
430
|
export declare const serializeAws_json1_1ListDeviceFleetsCommand: (input: ListDeviceFleetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
417
431
|
export declare const serializeAws_json1_1ListDevicesCommand: (input: ListDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
418
432
|
export declare const serializeAws_json1_1ListDomainsCommand: (input: ListDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
433
|
+
export declare const serializeAws_json1_1ListEdgeDeploymentPlansCommand: (input: ListEdgeDeploymentPlansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
419
434
|
export declare const serializeAws_json1_1ListEdgePackagingJobsCommand: (input: ListEdgePackagingJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
420
435
|
export declare const serializeAws_json1_1ListEndpointConfigsCommand: (input: ListEndpointConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
421
436
|
export declare const serializeAws_json1_1ListEndpointsCommand: (input: ListEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -447,6 +462,7 @@ export declare const serializeAws_json1_1ListPipelineParametersForExecutionComma
|
|
|
447
462
|
export declare const serializeAws_json1_1ListPipelinesCommand: (input: ListPipelinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
448
463
|
export declare const serializeAws_json1_1ListProcessingJobsCommand: (input: ListProcessingJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
449
464
|
export declare const serializeAws_json1_1ListProjectsCommand: (input: ListProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
465
|
+
export declare const serializeAws_json1_1ListStageDevicesCommand: (input: ListStageDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
450
466
|
export declare const serializeAws_json1_1ListStudioLifecycleConfigsCommand: (input: ListStudioLifecycleConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
451
467
|
export declare const serializeAws_json1_1ListSubscribedWorkteamsCommand: (input: ListSubscribedWorkteamsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
452
468
|
export declare const serializeAws_json1_1ListTagsCommand: (input: ListTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -466,11 +482,13 @@ export declare const serializeAws_json1_1RetryPipelineExecutionCommand: (input:
|
|
|
466
482
|
export declare const serializeAws_json1_1SearchCommand: (input: SearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
467
483
|
export declare const serializeAws_json1_1SendPipelineExecutionStepFailureCommand: (input: SendPipelineExecutionStepFailureCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
468
484
|
export declare const serializeAws_json1_1SendPipelineExecutionStepSuccessCommand: (input: SendPipelineExecutionStepSuccessCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
485
|
+
export declare const serializeAws_json1_1StartEdgeDeploymentStageCommand: (input: StartEdgeDeploymentStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
469
486
|
export declare const serializeAws_json1_1StartMonitoringScheduleCommand: (input: StartMonitoringScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
470
487
|
export declare const serializeAws_json1_1StartNotebookInstanceCommand: (input: StartNotebookInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
471
488
|
export declare const serializeAws_json1_1StartPipelineExecutionCommand: (input: StartPipelineExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
472
489
|
export declare const serializeAws_json1_1StopAutoMLJobCommand: (input: StopAutoMLJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
473
490
|
export declare const serializeAws_json1_1StopCompilationJobCommand: (input: StopCompilationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
491
|
+
export declare const serializeAws_json1_1StopEdgeDeploymentStageCommand: (input: StopEdgeDeploymentStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
474
492
|
export declare const serializeAws_json1_1StopEdgePackagingJobCommand: (input: StopEdgePackagingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
475
493
|
export declare const serializeAws_json1_1StopHyperParameterTuningJobCommand: (input: StopHyperParameterTuningJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
476
494
|
export declare const serializeAws_json1_1StopInferenceRecommendationsJobCommand: (input: StopInferenceRecommendationsJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -524,6 +542,8 @@ export declare const deserializeAws_json1_1CreateContextCommand: (output: __Http
|
|
|
524
542
|
export declare const deserializeAws_json1_1CreateDataQualityJobDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataQualityJobDefinitionCommandOutput>;
|
|
525
543
|
export declare const deserializeAws_json1_1CreateDeviceFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDeviceFleetCommandOutput>;
|
|
526
544
|
export declare const deserializeAws_json1_1CreateDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainCommandOutput>;
|
|
545
|
+
export declare const deserializeAws_json1_1CreateEdgeDeploymentPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEdgeDeploymentPlanCommandOutput>;
|
|
546
|
+
export declare const deserializeAws_json1_1CreateEdgeDeploymentStageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEdgeDeploymentStageCommandOutput>;
|
|
527
547
|
export declare const deserializeAws_json1_1CreateEdgePackagingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEdgePackagingJobCommandOutput>;
|
|
528
548
|
export declare const deserializeAws_json1_1CreateEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEndpointCommandOutput>;
|
|
529
549
|
export declare const deserializeAws_json1_1CreateEndpointConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEndpointConfigCommandOutput>;
|
|
@@ -569,6 +589,8 @@ export declare const deserializeAws_json1_1DeleteContextCommand: (output: __Http
|
|
|
569
589
|
export declare const deserializeAws_json1_1DeleteDataQualityJobDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataQualityJobDefinitionCommandOutput>;
|
|
570
590
|
export declare const deserializeAws_json1_1DeleteDeviceFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceFleetCommandOutput>;
|
|
571
591
|
export declare const deserializeAws_json1_1DeleteDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainCommandOutput>;
|
|
592
|
+
export declare const deserializeAws_json1_1DeleteEdgeDeploymentPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEdgeDeploymentPlanCommandOutput>;
|
|
593
|
+
export declare const deserializeAws_json1_1DeleteEdgeDeploymentStageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEdgeDeploymentStageCommandOutput>;
|
|
572
594
|
export declare const deserializeAws_json1_1DeleteEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEndpointCommandOutput>;
|
|
573
595
|
export declare const deserializeAws_json1_1DeleteEndpointConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEndpointConfigCommandOutput>;
|
|
574
596
|
export declare const deserializeAws_json1_1DeleteExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExperimentCommandOutput>;
|
|
@@ -610,6 +632,7 @@ export declare const deserializeAws_json1_1DescribeDataQualityJobDefinitionComma
|
|
|
610
632
|
export declare const deserializeAws_json1_1DescribeDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDeviceCommandOutput>;
|
|
611
633
|
export declare const deserializeAws_json1_1DescribeDeviceFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDeviceFleetCommandOutput>;
|
|
612
634
|
export declare const deserializeAws_json1_1DescribeDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDomainCommandOutput>;
|
|
635
|
+
export declare const deserializeAws_json1_1DescribeEdgeDeploymentPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEdgeDeploymentPlanCommandOutput>;
|
|
613
636
|
export declare const deserializeAws_json1_1DescribeEdgePackagingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEdgePackagingJobCommandOutput>;
|
|
614
637
|
export declare const deserializeAws_json1_1DescribeEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEndpointCommandOutput>;
|
|
615
638
|
export declare const deserializeAws_json1_1DescribeEndpointConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEndpointConfigCommandOutput>;
|
|
@@ -670,6 +693,7 @@ export declare const deserializeAws_json1_1ListDataQualityJobDefinitionsCommand:
|
|
|
670
693
|
export declare const deserializeAws_json1_1ListDeviceFleetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeviceFleetsCommandOutput>;
|
|
671
694
|
export declare const deserializeAws_json1_1ListDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDevicesCommandOutput>;
|
|
672
695
|
export declare const deserializeAws_json1_1ListDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainsCommandOutput>;
|
|
696
|
+
export declare const deserializeAws_json1_1ListEdgeDeploymentPlansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEdgeDeploymentPlansCommandOutput>;
|
|
673
697
|
export declare const deserializeAws_json1_1ListEdgePackagingJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEdgePackagingJobsCommandOutput>;
|
|
674
698
|
export declare const deserializeAws_json1_1ListEndpointConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEndpointConfigsCommandOutput>;
|
|
675
699
|
export declare const deserializeAws_json1_1ListEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEndpointsCommandOutput>;
|
|
@@ -701,6 +725,7 @@ export declare const deserializeAws_json1_1ListPipelineParametersForExecutionCom
|
|
|
701
725
|
export declare const deserializeAws_json1_1ListPipelinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPipelinesCommandOutput>;
|
|
702
726
|
export declare const deserializeAws_json1_1ListProcessingJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProcessingJobsCommandOutput>;
|
|
703
727
|
export declare const deserializeAws_json1_1ListProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProjectsCommandOutput>;
|
|
728
|
+
export declare const deserializeAws_json1_1ListStageDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStageDevicesCommandOutput>;
|
|
704
729
|
export declare const deserializeAws_json1_1ListStudioLifecycleConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStudioLifecycleConfigsCommandOutput>;
|
|
705
730
|
export declare const deserializeAws_json1_1ListSubscribedWorkteamsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubscribedWorkteamsCommandOutput>;
|
|
706
731
|
export declare const deserializeAws_json1_1ListTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsCommandOutput>;
|
|
@@ -720,11 +745,13 @@ export declare const deserializeAws_json1_1RetryPipelineExecutionCommand: (outpu
|
|
|
720
745
|
export declare const deserializeAws_json1_1SearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchCommandOutput>;
|
|
721
746
|
export declare const deserializeAws_json1_1SendPipelineExecutionStepFailureCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendPipelineExecutionStepFailureCommandOutput>;
|
|
722
747
|
export declare const deserializeAws_json1_1SendPipelineExecutionStepSuccessCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendPipelineExecutionStepSuccessCommandOutput>;
|
|
748
|
+
export declare const deserializeAws_json1_1StartEdgeDeploymentStageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartEdgeDeploymentStageCommandOutput>;
|
|
723
749
|
export declare const deserializeAws_json1_1StartMonitoringScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMonitoringScheduleCommandOutput>;
|
|
724
750
|
export declare const deserializeAws_json1_1StartNotebookInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartNotebookInstanceCommandOutput>;
|
|
725
751
|
export declare const deserializeAws_json1_1StartPipelineExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartPipelineExecutionCommandOutput>;
|
|
726
752
|
export declare const deserializeAws_json1_1StopAutoMLJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopAutoMLJobCommandOutput>;
|
|
727
753
|
export declare const deserializeAws_json1_1StopCompilationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCompilationJobCommandOutput>;
|
|
754
|
+
export declare const deserializeAws_json1_1StopEdgeDeploymentStageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopEdgeDeploymentStageCommandOutput>;
|
|
728
755
|
export declare const deserializeAws_json1_1StopEdgePackagingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopEdgePackagingJobCommandOutput>;
|
|
729
756
|
export declare const deserializeAws_json1_1StopHyperParameterTuningJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopHyperParameterTuningJobCommandOutput>;
|
|
730
757
|
export declare const deserializeAws_json1_1StopInferenceRecommendationsJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopInferenceRecommendationsJobCommandOutput>;
|
|
@@ -15,6 +15,8 @@ import { CreateContextCommandInput, CreateContextCommandOutput } from "./command
|
|
|
15
15
|
import { CreateDataQualityJobDefinitionCommandInput, CreateDataQualityJobDefinitionCommandOutput } from "./commands/CreateDataQualityJobDefinitionCommand";
|
|
16
16
|
import { CreateDeviceFleetCommandInput, CreateDeviceFleetCommandOutput } from "./commands/CreateDeviceFleetCommand";
|
|
17
17
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
18
|
+
import { CreateEdgeDeploymentPlanCommandInput, CreateEdgeDeploymentPlanCommandOutput } from "./commands/CreateEdgeDeploymentPlanCommand";
|
|
19
|
+
import { CreateEdgeDeploymentStageCommandInput, CreateEdgeDeploymentStageCommandOutput } from "./commands/CreateEdgeDeploymentStageCommand";
|
|
18
20
|
import { CreateEdgePackagingJobCommandInput, CreateEdgePackagingJobCommandOutput } from "./commands/CreateEdgePackagingJobCommand";
|
|
19
21
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "./commands/CreateEndpointCommand";
|
|
20
22
|
import { CreateEndpointConfigCommandInput, CreateEndpointConfigCommandOutput } from "./commands/CreateEndpointConfigCommand";
|
|
@@ -60,6 +62,8 @@ import { DeleteContextCommandInput, DeleteContextCommandOutput } from "./command
|
|
|
60
62
|
import { DeleteDataQualityJobDefinitionCommandInput, DeleteDataQualityJobDefinitionCommandOutput } from "./commands/DeleteDataQualityJobDefinitionCommand";
|
|
61
63
|
import { DeleteDeviceFleetCommandInput, DeleteDeviceFleetCommandOutput } from "./commands/DeleteDeviceFleetCommand";
|
|
62
64
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
65
|
+
import { DeleteEdgeDeploymentPlanCommandInput, DeleteEdgeDeploymentPlanCommandOutput } from "./commands/DeleteEdgeDeploymentPlanCommand";
|
|
66
|
+
import { DeleteEdgeDeploymentStageCommandInput, DeleteEdgeDeploymentStageCommandOutput } from "./commands/DeleteEdgeDeploymentStageCommand";
|
|
63
67
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "./commands/DeleteEndpointCommand";
|
|
64
68
|
import { DeleteEndpointConfigCommandInput, DeleteEndpointConfigCommandOutput } from "./commands/DeleteEndpointConfigCommand";
|
|
65
69
|
import { DeleteExperimentCommandInput, DeleteExperimentCommandOutput } from "./commands/DeleteExperimentCommand";
|
|
@@ -101,6 +105,7 @@ import { DescribeDataQualityJobDefinitionCommandInput, DescribeDataQualityJobDef
|
|
|
101
105
|
import { DescribeDeviceCommandInput, DescribeDeviceCommandOutput } from "./commands/DescribeDeviceCommand";
|
|
102
106
|
import { DescribeDeviceFleetCommandInput, DescribeDeviceFleetCommandOutput } from "./commands/DescribeDeviceFleetCommand";
|
|
103
107
|
import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "./commands/DescribeDomainCommand";
|
|
108
|
+
import { DescribeEdgeDeploymentPlanCommandInput, DescribeEdgeDeploymentPlanCommandOutput } from "./commands/DescribeEdgeDeploymentPlanCommand";
|
|
104
109
|
import { DescribeEdgePackagingJobCommandInput, DescribeEdgePackagingJobCommandOutput } from "./commands/DescribeEdgePackagingJobCommand";
|
|
105
110
|
import { DescribeEndpointCommandInput, DescribeEndpointCommandOutput } from "./commands/DescribeEndpointCommand";
|
|
106
111
|
import { DescribeEndpointConfigCommandInput, DescribeEndpointConfigCommandOutput } from "./commands/DescribeEndpointConfigCommand";
|
|
@@ -161,6 +166,7 @@ import { ListDataQualityJobDefinitionsCommandInput, ListDataQualityJobDefinition
|
|
|
161
166
|
import { ListDeviceFleetsCommandInput, ListDeviceFleetsCommandOutput } from "./commands/ListDeviceFleetsCommand";
|
|
162
167
|
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "./commands/ListDevicesCommand";
|
|
163
168
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
169
|
+
import { ListEdgeDeploymentPlansCommandInput, ListEdgeDeploymentPlansCommandOutput } from "./commands/ListEdgeDeploymentPlansCommand";
|
|
164
170
|
import { ListEdgePackagingJobsCommandInput, ListEdgePackagingJobsCommandOutput } from "./commands/ListEdgePackagingJobsCommand";
|
|
165
171
|
import { ListEndpointConfigsCommandInput, ListEndpointConfigsCommandOutput } from "./commands/ListEndpointConfigsCommand";
|
|
166
172
|
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "./commands/ListEndpointsCommand";
|
|
@@ -192,6 +198,7 @@ import { ListPipelineParametersForExecutionCommandInput, ListPipelineParametersF
|
|
|
192
198
|
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
|
|
193
199
|
import { ListProcessingJobsCommandInput, ListProcessingJobsCommandOutput } from "./commands/ListProcessingJobsCommand";
|
|
194
200
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
201
|
+
import { ListStageDevicesCommandInput, ListStageDevicesCommandOutput } from "./commands/ListStageDevicesCommand";
|
|
195
202
|
import { ListStudioLifecycleConfigsCommandInput, ListStudioLifecycleConfigsCommandOutput } from "./commands/ListStudioLifecycleConfigsCommand";
|
|
196
203
|
import { ListSubscribedWorkteamsCommandInput, ListSubscribedWorkteamsCommandOutput } from "./commands/ListSubscribedWorkteamsCommand";
|
|
197
204
|
import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
|
|
@@ -211,11 +218,13 @@ import { RetryPipelineExecutionCommandInput, RetryPipelineExecutionCommandOutput
|
|
|
211
218
|
import { SearchCommandInput, SearchCommandOutput } from "./commands/SearchCommand";
|
|
212
219
|
import { SendPipelineExecutionStepFailureCommandInput, SendPipelineExecutionStepFailureCommandOutput } from "./commands/SendPipelineExecutionStepFailureCommand";
|
|
213
220
|
import { SendPipelineExecutionStepSuccessCommandInput, SendPipelineExecutionStepSuccessCommandOutput } from "./commands/SendPipelineExecutionStepSuccessCommand";
|
|
221
|
+
import { StartEdgeDeploymentStageCommandInput, StartEdgeDeploymentStageCommandOutput } from "./commands/StartEdgeDeploymentStageCommand";
|
|
214
222
|
import { StartMonitoringScheduleCommandInput, StartMonitoringScheduleCommandOutput } from "./commands/StartMonitoringScheduleCommand";
|
|
215
223
|
import { StartNotebookInstanceCommandInput, StartNotebookInstanceCommandOutput } from "./commands/StartNotebookInstanceCommand";
|
|
216
224
|
import { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
|
|
217
225
|
import { StopAutoMLJobCommandInput, StopAutoMLJobCommandOutput } from "./commands/StopAutoMLJobCommand";
|
|
218
226
|
import { StopCompilationJobCommandInput, StopCompilationJobCommandOutput } from "./commands/StopCompilationJobCommand";
|
|
227
|
+
import { StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput } from "./commands/StopEdgeDeploymentStageCommand";
|
|
219
228
|
import { StopEdgePackagingJobCommandInput, StopEdgePackagingJobCommandOutput } from "./commands/StopEdgePackagingJobCommand";
|
|
220
229
|
import { StopHyperParameterTuningJobCommandInput, StopHyperParameterTuningJobCommandOutput } from "./commands/StopHyperParameterTuningJobCommand";
|
|
221
230
|
import { StopInferenceRecommendationsJobCommandInput, StopInferenceRecommendationsJobCommandOutput } from "./commands/StopInferenceRecommendationsJobCommand";
|
|
@@ -321,6 +330,14 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
321
330
|
createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
322
331
|
createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
323
332
|
|
|
333
|
+
createEdgeDeploymentPlan(args: CreateEdgeDeploymentPlanCommandInput, options?: __HttpHandlerOptions): Promise<CreateEdgeDeploymentPlanCommandOutput>;
|
|
334
|
+
createEdgeDeploymentPlan(args: CreateEdgeDeploymentPlanCommandInput, cb: (err: any, data?: CreateEdgeDeploymentPlanCommandOutput) => void): void;
|
|
335
|
+
createEdgeDeploymentPlan(args: CreateEdgeDeploymentPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEdgeDeploymentPlanCommandOutput) => void): void;
|
|
336
|
+
|
|
337
|
+
createEdgeDeploymentStage(args: CreateEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<CreateEdgeDeploymentStageCommandOutput>;
|
|
338
|
+
createEdgeDeploymentStage(args: CreateEdgeDeploymentStageCommandInput, cb: (err: any, data?: CreateEdgeDeploymentStageCommandOutput) => void): void;
|
|
339
|
+
createEdgeDeploymentStage(args: CreateEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEdgeDeploymentStageCommandOutput) => void): void;
|
|
340
|
+
|
|
324
341
|
createEdgePackagingJob(args: CreateEdgePackagingJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateEdgePackagingJobCommandOutput>;
|
|
325
342
|
createEdgePackagingJob(args: CreateEdgePackagingJobCommandInput, cb: (err: any, data?: CreateEdgePackagingJobCommandOutput) => void): void;
|
|
326
343
|
createEdgePackagingJob(args: CreateEdgePackagingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEdgePackagingJobCommandOutput) => void): void;
|
|
@@ -501,6 +518,14 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
501
518
|
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
502
519
|
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
503
520
|
|
|
521
|
+
deleteEdgeDeploymentPlan(args: DeleteEdgeDeploymentPlanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEdgeDeploymentPlanCommandOutput>;
|
|
522
|
+
deleteEdgeDeploymentPlan(args: DeleteEdgeDeploymentPlanCommandInput, cb: (err: any, data?: DeleteEdgeDeploymentPlanCommandOutput) => void): void;
|
|
523
|
+
deleteEdgeDeploymentPlan(args: DeleteEdgeDeploymentPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEdgeDeploymentPlanCommandOutput) => void): void;
|
|
524
|
+
|
|
525
|
+
deleteEdgeDeploymentStage(args: DeleteEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEdgeDeploymentStageCommandOutput>;
|
|
526
|
+
deleteEdgeDeploymentStage(args: DeleteEdgeDeploymentStageCommandInput, cb: (err: any, data?: DeleteEdgeDeploymentStageCommandOutput) => void): void;
|
|
527
|
+
deleteEdgeDeploymentStage(args: DeleteEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEdgeDeploymentStageCommandOutput) => void): void;
|
|
528
|
+
|
|
504
529
|
deleteEndpoint(args: DeleteEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointCommandOutput>;
|
|
505
530
|
deleteEndpoint(args: DeleteEndpointCommandInput, cb: (err: any, data?: DeleteEndpointCommandOutput) => void): void;
|
|
506
531
|
deleteEndpoint(args: DeleteEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointCommandOutput) => void): void;
|
|
@@ -665,6 +690,10 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
665
690
|
describeDomain(args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
666
691
|
describeDomain(args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
|
|
667
692
|
|
|
693
|
+
describeEdgeDeploymentPlan(args: DescribeEdgeDeploymentPlanCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEdgeDeploymentPlanCommandOutput>;
|
|
694
|
+
describeEdgeDeploymentPlan(args: DescribeEdgeDeploymentPlanCommandInput, cb: (err: any, data?: DescribeEdgeDeploymentPlanCommandOutput) => void): void;
|
|
695
|
+
describeEdgeDeploymentPlan(args: DescribeEdgeDeploymentPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEdgeDeploymentPlanCommandOutput) => void): void;
|
|
696
|
+
|
|
668
697
|
describeEdgePackagingJob(args: DescribeEdgePackagingJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEdgePackagingJobCommandOutput>;
|
|
669
698
|
describeEdgePackagingJob(args: DescribeEdgePackagingJobCommandInput, cb: (err: any, data?: DescribeEdgePackagingJobCommandOutput) => void): void;
|
|
670
699
|
describeEdgePackagingJob(args: DescribeEdgePackagingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEdgePackagingJobCommandOutput) => void): void;
|
|
@@ -905,6 +934,10 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
905
934
|
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
906
935
|
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
907
936
|
|
|
937
|
+
listEdgeDeploymentPlans(args: ListEdgeDeploymentPlansCommandInput, options?: __HttpHandlerOptions): Promise<ListEdgeDeploymentPlansCommandOutput>;
|
|
938
|
+
listEdgeDeploymentPlans(args: ListEdgeDeploymentPlansCommandInput, cb: (err: any, data?: ListEdgeDeploymentPlansCommandOutput) => void): void;
|
|
939
|
+
listEdgeDeploymentPlans(args: ListEdgeDeploymentPlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEdgeDeploymentPlansCommandOutput) => void): void;
|
|
940
|
+
|
|
908
941
|
listEdgePackagingJobs(args: ListEdgePackagingJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListEdgePackagingJobsCommandOutput>;
|
|
909
942
|
listEdgePackagingJobs(args: ListEdgePackagingJobsCommandInput, cb: (err: any, data?: ListEdgePackagingJobsCommandOutput) => void): void;
|
|
910
943
|
listEdgePackagingJobs(args: ListEdgePackagingJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEdgePackagingJobsCommandOutput) => void): void;
|
|
@@ -1029,6 +1062,10 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
1029
1062
|
listProjects(args: ListProjectsCommandInput, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
1030
1063
|
listProjects(args: ListProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
1031
1064
|
|
|
1065
|
+
listStageDevices(args: ListStageDevicesCommandInput, options?: __HttpHandlerOptions): Promise<ListStageDevicesCommandOutput>;
|
|
1066
|
+
listStageDevices(args: ListStageDevicesCommandInput, cb: (err: any, data?: ListStageDevicesCommandOutput) => void): void;
|
|
1067
|
+
listStageDevices(args: ListStageDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStageDevicesCommandOutput) => void): void;
|
|
1068
|
+
|
|
1032
1069
|
listStudioLifecycleConfigs(args: ListStudioLifecycleConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListStudioLifecycleConfigsCommandOutput>;
|
|
1033
1070
|
listStudioLifecycleConfigs(args: ListStudioLifecycleConfigsCommandInput, cb: (err: any, data?: ListStudioLifecycleConfigsCommandOutput) => void): void;
|
|
1034
1071
|
listStudioLifecycleConfigs(args: ListStudioLifecycleConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStudioLifecycleConfigsCommandOutput) => void): void;
|
|
@@ -1105,6 +1142,10 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
1105
1142
|
sendPipelineExecutionStepSuccess(args: SendPipelineExecutionStepSuccessCommandInput, cb: (err: any, data?: SendPipelineExecutionStepSuccessCommandOutput) => void): void;
|
|
1106
1143
|
sendPipelineExecutionStepSuccess(args: SendPipelineExecutionStepSuccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendPipelineExecutionStepSuccessCommandOutput) => void): void;
|
|
1107
1144
|
|
|
1145
|
+
startEdgeDeploymentStage(args: StartEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<StartEdgeDeploymentStageCommandOutput>;
|
|
1146
|
+
startEdgeDeploymentStage(args: StartEdgeDeploymentStageCommandInput, cb: (err: any, data?: StartEdgeDeploymentStageCommandOutput) => void): void;
|
|
1147
|
+
startEdgeDeploymentStage(args: StartEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEdgeDeploymentStageCommandOutput) => void): void;
|
|
1148
|
+
|
|
1108
1149
|
startMonitoringSchedule(args: StartMonitoringScheduleCommandInput, options?: __HttpHandlerOptions): Promise<StartMonitoringScheduleCommandOutput>;
|
|
1109
1150
|
startMonitoringSchedule(args: StartMonitoringScheduleCommandInput, cb: (err: any, data?: StartMonitoringScheduleCommandOutput) => void): void;
|
|
1110
1151
|
startMonitoringSchedule(args: StartMonitoringScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMonitoringScheduleCommandOutput) => void): void;
|
|
@@ -1125,6 +1166,10 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
1125
1166
|
stopCompilationJob(args: StopCompilationJobCommandInput, cb: (err: any, data?: StopCompilationJobCommandOutput) => void): void;
|
|
1126
1167
|
stopCompilationJob(args: StopCompilationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopCompilationJobCommandOutput) => void): void;
|
|
1127
1168
|
|
|
1169
|
+
stopEdgeDeploymentStage(args: StopEdgeDeploymentStageCommandInput, options?: __HttpHandlerOptions): Promise<StopEdgeDeploymentStageCommandOutput>;
|
|
1170
|
+
stopEdgeDeploymentStage(args: StopEdgeDeploymentStageCommandInput, cb: (err: any, data?: StopEdgeDeploymentStageCommandOutput) => void): void;
|
|
1171
|
+
stopEdgeDeploymentStage(args: StopEdgeDeploymentStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEdgeDeploymentStageCommandOutput) => void): void;
|
|
1172
|
+
|
|
1128
1173
|
stopEdgePackagingJob(args: StopEdgePackagingJobCommandInput, options?: __HttpHandlerOptions): Promise<StopEdgePackagingJobCommandOutput>;
|
|
1129
1174
|
stopEdgePackagingJob(args: StopEdgePackagingJobCommandInput, cb: (err: any, data?: StopEdgePackagingJobCommandOutput) => void): void;
|
|
1130
1175
|
stopEdgePackagingJob(args: StopEdgePackagingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEdgePackagingJobCommandOutput) => void): void;
|
|
@@ -22,6 +22,8 @@ import { CreateContextCommandInput, CreateContextCommandOutput } from "./command
|
|
|
22
22
|
import { CreateDataQualityJobDefinitionCommandInput, CreateDataQualityJobDefinitionCommandOutput } from "./commands/CreateDataQualityJobDefinitionCommand";
|
|
23
23
|
import { CreateDeviceFleetCommandInput, CreateDeviceFleetCommandOutput } from "./commands/CreateDeviceFleetCommand";
|
|
24
24
|
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
25
|
+
import { CreateEdgeDeploymentPlanCommandInput, CreateEdgeDeploymentPlanCommandOutput } from "./commands/CreateEdgeDeploymentPlanCommand";
|
|
26
|
+
import { CreateEdgeDeploymentStageCommandInput, CreateEdgeDeploymentStageCommandOutput } from "./commands/CreateEdgeDeploymentStageCommand";
|
|
25
27
|
import { CreateEdgePackagingJobCommandInput, CreateEdgePackagingJobCommandOutput } from "./commands/CreateEdgePackagingJobCommand";
|
|
26
28
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "./commands/CreateEndpointCommand";
|
|
27
29
|
import { CreateEndpointConfigCommandInput, CreateEndpointConfigCommandOutput } from "./commands/CreateEndpointConfigCommand";
|
|
@@ -67,6 +69,8 @@ import { DeleteContextCommandInput, DeleteContextCommandOutput } from "./command
|
|
|
67
69
|
import { DeleteDataQualityJobDefinitionCommandInput, DeleteDataQualityJobDefinitionCommandOutput } from "./commands/DeleteDataQualityJobDefinitionCommand";
|
|
68
70
|
import { DeleteDeviceFleetCommandInput, DeleteDeviceFleetCommandOutput } from "./commands/DeleteDeviceFleetCommand";
|
|
69
71
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
72
|
+
import { DeleteEdgeDeploymentPlanCommandInput, DeleteEdgeDeploymentPlanCommandOutput } from "./commands/DeleteEdgeDeploymentPlanCommand";
|
|
73
|
+
import { DeleteEdgeDeploymentStageCommandInput, DeleteEdgeDeploymentStageCommandOutput } from "./commands/DeleteEdgeDeploymentStageCommand";
|
|
70
74
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "./commands/DeleteEndpointCommand";
|
|
71
75
|
import { DeleteEndpointConfigCommandInput, DeleteEndpointConfigCommandOutput } from "./commands/DeleteEndpointConfigCommand";
|
|
72
76
|
import { DeleteExperimentCommandInput, DeleteExperimentCommandOutput } from "./commands/DeleteExperimentCommand";
|
|
@@ -108,6 +112,7 @@ import { DescribeDataQualityJobDefinitionCommandInput, DescribeDataQualityJobDef
|
|
|
108
112
|
import { DescribeDeviceCommandInput, DescribeDeviceCommandOutput } from "./commands/DescribeDeviceCommand";
|
|
109
113
|
import { DescribeDeviceFleetCommandInput, DescribeDeviceFleetCommandOutput } from "./commands/DescribeDeviceFleetCommand";
|
|
110
114
|
import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "./commands/DescribeDomainCommand";
|
|
115
|
+
import { DescribeEdgeDeploymentPlanCommandInput, DescribeEdgeDeploymentPlanCommandOutput } from "./commands/DescribeEdgeDeploymentPlanCommand";
|
|
111
116
|
import { DescribeEdgePackagingJobCommandInput, DescribeEdgePackagingJobCommandOutput } from "./commands/DescribeEdgePackagingJobCommand";
|
|
112
117
|
import { DescribeEndpointCommandInput, DescribeEndpointCommandOutput } from "./commands/DescribeEndpointCommand";
|
|
113
118
|
import { DescribeEndpointConfigCommandInput, DescribeEndpointConfigCommandOutput } from "./commands/DescribeEndpointConfigCommand";
|
|
@@ -168,6 +173,7 @@ import { ListDataQualityJobDefinitionsCommandInput, ListDataQualityJobDefinition
|
|
|
168
173
|
import { ListDeviceFleetsCommandInput, ListDeviceFleetsCommandOutput } from "./commands/ListDeviceFleetsCommand";
|
|
169
174
|
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "./commands/ListDevicesCommand";
|
|
170
175
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
176
|
+
import { ListEdgeDeploymentPlansCommandInput, ListEdgeDeploymentPlansCommandOutput } from "./commands/ListEdgeDeploymentPlansCommand";
|
|
171
177
|
import { ListEdgePackagingJobsCommandInput, ListEdgePackagingJobsCommandOutput } from "./commands/ListEdgePackagingJobsCommand";
|
|
172
178
|
import { ListEndpointConfigsCommandInput, ListEndpointConfigsCommandOutput } from "./commands/ListEndpointConfigsCommand";
|
|
173
179
|
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "./commands/ListEndpointsCommand";
|
|
@@ -199,6 +205,7 @@ import { ListPipelineParametersForExecutionCommandInput, ListPipelineParametersF
|
|
|
199
205
|
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
|
|
200
206
|
import { ListProcessingJobsCommandInput, ListProcessingJobsCommandOutput } from "./commands/ListProcessingJobsCommand";
|
|
201
207
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
208
|
+
import { ListStageDevicesCommandInput, ListStageDevicesCommandOutput } from "./commands/ListStageDevicesCommand";
|
|
202
209
|
import { ListStudioLifecycleConfigsCommandInput, ListStudioLifecycleConfigsCommandOutput } from "./commands/ListStudioLifecycleConfigsCommand";
|
|
203
210
|
import { ListSubscribedWorkteamsCommandInput, ListSubscribedWorkteamsCommandOutput } from "./commands/ListSubscribedWorkteamsCommand";
|
|
204
211
|
import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
|
|
@@ -218,11 +225,13 @@ import { RetryPipelineExecutionCommandInput, RetryPipelineExecutionCommandOutput
|
|
|
218
225
|
import { SearchCommandInput, SearchCommandOutput } from "./commands/SearchCommand";
|
|
219
226
|
import { SendPipelineExecutionStepFailureCommandInput, SendPipelineExecutionStepFailureCommandOutput } from "./commands/SendPipelineExecutionStepFailureCommand";
|
|
220
227
|
import { SendPipelineExecutionStepSuccessCommandInput, SendPipelineExecutionStepSuccessCommandOutput } from "./commands/SendPipelineExecutionStepSuccessCommand";
|
|
228
|
+
import { StartEdgeDeploymentStageCommandInput, StartEdgeDeploymentStageCommandOutput } from "./commands/StartEdgeDeploymentStageCommand";
|
|
221
229
|
import { StartMonitoringScheduleCommandInput, StartMonitoringScheduleCommandOutput } from "./commands/StartMonitoringScheduleCommand";
|
|
222
230
|
import { StartNotebookInstanceCommandInput, StartNotebookInstanceCommandOutput } from "./commands/StartNotebookInstanceCommand";
|
|
223
231
|
import { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
|
|
224
232
|
import { StopAutoMLJobCommandInput, StopAutoMLJobCommandOutput } from "./commands/StopAutoMLJobCommand";
|
|
225
233
|
import { StopCompilationJobCommandInput, StopCompilationJobCommandOutput } from "./commands/StopCompilationJobCommand";
|
|
234
|
+
import { StopEdgeDeploymentStageCommandInput, StopEdgeDeploymentStageCommandOutput } from "./commands/StopEdgeDeploymentStageCommand";
|
|
226
235
|
import { StopEdgePackagingJobCommandInput, StopEdgePackagingJobCommandOutput } from "./commands/StopEdgePackagingJobCommand";
|
|
227
236
|
import { StopHyperParameterTuningJobCommandInput, StopHyperParameterTuningJobCommandOutput } from "./commands/StopHyperParameterTuningJobCommand";
|
|
228
237
|
import { StopInferenceRecommendationsJobCommandInput, StopInferenceRecommendationsJobCommandOutput } from "./commands/StopInferenceRecommendationsJobCommand";
|
|
@@ -260,8 +269,8 @@ import { UpdateTrialComponentCommandInput, UpdateTrialComponentCommandOutput } f
|
|
|
260
269
|
import { UpdateUserProfileCommandInput, UpdateUserProfileCommandOutput } from "./commands/UpdateUserProfileCommand";
|
|
261
270
|
import { UpdateWorkforceCommandInput, UpdateWorkforceCommandOutput } from "./commands/UpdateWorkforceCommand";
|
|
262
271
|
import { UpdateWorkteamCommandInput, UpdateWorkteamCommandOutput } from "./commands/UpdateWorkteamCommand";
|
|
263
|
-
export declare type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteCodeRepositoryCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHumanTaskUiCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetSearchSuggestionsCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateImageCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
264
|
-
export declare type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetSearchSuggestionsCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateImageCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
272
|
+
export declare type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteCodeRepositoryCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHumanTaskUiCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetSearchSuggestionsCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateImageCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
273
|
+
export declare type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetSearchSuggestionsCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateImageCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
265
274
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
266
275
|
|
|
267
276
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CreateEdgeDeploymentPlanRequest, CreateEdgeDeploymentPlanResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface CreateEdgeDeploymentPlanCommandInput extends CreateEdgeDeploymentPlanRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateEdgeDeploymentPlanCommandOutput extends CreateEdgeDeploymentPlanResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateEdgeDeploymentPlanCommand extends $Command<CreateEdgeDeploymentPlanCommandInput, CreateEdgeDeploymentPlanCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateEdgeDeploymentPlanCommandInput;
|
|
12
|
+
constructor(input: CreateEdgeDeploymentPlanCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEdgeDeploymentPlanCommandInput, CreateEdgeDeploymentPlanCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CreateEdgeDeploymentStageRequest } from "../models/models_0";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface CreateEdgeDeploymentStageCommandInput extends CreateEdgeDeploymentStageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateEdgeDeploymentStageCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateEdgeDeploymentStageCommand extends $Command<CreateEdgeDeploymentStageCommandInput, CreateEdgeDeploymentStageCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateEdgeDeploymentStageCommandInput;
|
|
12
|
+
constructor(input: CreateEdgeDeploymentStageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEdgeDeploymentStageCommandInput, CreateEdgeDeploymentStageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { CreateHyperParameterTuningJobRequest, CreateHyperParameterTuningJobResponse } from "../models/
|
|
3
|
+
import { CreateHyperParameterTuningJobRequest, CreateHyperParameterTuningJobResponse } from "../models/models_1";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
export interface CreateHyperParameterTuningJobCommandInput extends CreateHyperParameterTuningJobRequest {
|
|
6
6
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteEdgeDeploymentPlanRequest } from "../models/models_1";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface DeleteEdgeDeploymentPlanCommandInput extends DeleteEdgeDeploymentPlanRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteEdgeDeploymentPlanCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteEdgeDeploymentPlanCommand extends $Command<DeleteEdgeDeploymentPlanCommandInput, DeleteEdgeDeploymentPlanCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteEdgeDeploymentPlanCommandInput;
|
|
12
|
+
constructor(input: DeleteEdgeDeploymentPlanCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEdgeDeploymentPlanCommandInput, DeleteEdgeDeploymentPlanCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteEdgeDeploymentStageRequest } from "../models/models_1";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
export interface DeleteEdgeDeploymentStageCommandInput extends DeleteEdgeDeploymentStageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteEdgeDeploymentStageCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteEdgeDeploymentStageCommand extends $Command<DeleteEdgeDeploymentStageCommandInput, DeleteEdgeDeploymentStageCommandOutput, SageMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteEdgeDeploymentStageCommandInput;
|
|
12
|
+
constructor(input: DeleteEdgeDeploymentStageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEdgeDeploymentStageCommandInput, DeleteEdgeDeploymentStageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|