@aws-sdk/client-sagemaker 3.131.0 → 3.132.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/SageMaker.js +135 -0
- package/dist-cjs/commands/CreateEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/CreateEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/CreateHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DeleteEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DeleteEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/DescribeEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DescribeHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageVersionCommand.js +3 -3
- package/dist-cjs/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-cjs/commands/ListEdgeDeploymentPlansCommand.js +36 -0
- package/dist-cjs/commands/ListPipelineExecutionStepsCommand.js +3 -3
- package/dist-cjs/commands/ListPipelineParametersForExecutionCommand.js +3 -3
- package/dist-cjs/commands/ListPipelinesCommand.js +3 -3
- package/dist-cjs/commands/ListProcessingJobsCommand.js +3 -3
- package/dist-cjs/commands/ListStageDevicesCommand.js +36 -0
- package/dist-cjs/commands/StartEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/StopEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +54 -54
- package/dist-cjs/models/models_1.js +106 -112
- package/dist-cjs/models/models_2.js +152 -140
- package/dist-cjs/models/models_3.js +162 -3
- package/dist-cjs/pagination/ListEdgeDeploymentPlansPaginator.js +36 -0
- package/dist-cjs/pagination/ListStageDevicesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +710 -11
- package/dist-es/SageMaker.js +135 -0
- package/dist-es/commands/CreateEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/CreateEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/CreateHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DeleteEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DeleteEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/DescribeEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DescribeHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DescribeImageCommand.js +1 -1
- package/dist-es/commands/DescribeImageVersionCommand.js +1 -1
- package/dist-es/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-es/commands/ListEdgeDeploymentPlansCommand.js +39 -0
- package/dist-es/commands/ListPipelineExecutionStepsCommand.js +1 -1
- package/dist-es/commands/ListPipelineParametersForExecutionCommand.js +1 -1
- package/dist-es/commands/ListPipelinesCommand.js +1 -1
- package/dist-es/commands/ListProcessingJobsCommand.js +1 -1
- package/dist-es/commands/ListStageDevicesCommand.js +39 -0
- package/dist-es/commands/StartEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/StopEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +39 -37
- package/dist-es/models/models_1.js +72 -82
- package/dist-es/models/models_2.js +114 -94
- package/dist-es/models/models_3.js +110 -0
- package/dist-es/pagination/ListEdgeDeploymentPlansPaginator.js +75 -0
- package/dist-es/pagination/ListStageDevicesPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +798 -12
- package/dist-types/SageMaker.d.ts +63 -0
- package/dist-types/SageMakerClient.d.ts +11 -2
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +35 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +35 -0
- package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/StopEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +150 -451
- package/dist-types/models/models_1.d.ts +645 -504
- package/dist-types/models/models_2.d.ts +5430 -5423
- package/dist-types/models/models_3.d.ts +730 -3
- package/dist-types/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/SageMaker.d.ts +45 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +11 -2
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +91 -132
- package/dist-types/ts3.4/models/models_1.d.ts +235 -238
- package/dist-types/ts3.4/models/models_2.d.ts +341 -324
- package/dist-types/ts3.4/models/models_3.d.ts +371 -3
- package/dist-types/ts3.4/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +27 -0
- package/package.json +1 -1
|
@@ -1,6 +1,328 @@
|
|
|
1
|
-
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, Channel, CheckpointConfig, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig,
|
|
2
|
-
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, FeatureParameter,
|
|
3
|
-
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails,
|
|
1
|
+
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ConditionStepMetadata, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, FeatureParameter, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_1";
|
|
3
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListPipelineExecutionStepsRequest {
|
|
5
|
+
|
|
6
|
+
PipelineExecutionArn?: string;
|
|
7
|
+
|
|
8
|
+
NextToken?: string;
|
|
9
|
+
|
|
10
|
+
MaxResults?: number;
|
|
11
|
+
|
|
12
|
+
SortOrder?: SortOrder | string;
|
|
13
|
+
}
|
|
14
|
+
export declare namespace ListPipelineExecutionStepsRequest {
|
|
15
|
+
|
|
16
|
+
const filterSensitiveLog: (obj: ListPipelineExecutionStepsRequest) => any;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface ModelStepMetadata {
|
|
20
|
+
|
|
21
|
+
Arn?: string;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace ModelStepMetadata {
|
|
24
|
+
|
|
25
|
+
const filterSensitiveLog: (obj: ModelStepMetadata) => any;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface ProcessingJobStepMetadata {
|
|
29
|
+
|
|
30
|
+
Arn?: string;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace ProcessingJobStepMetadata {
|
|
33
|
+
|
|
34
|
+
const filterSensitiveLog: (obj: ProcessingJobStepMetadata) => any;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface QualityCheckStepMetadata {
|
|
38
|
+
|
|
39
|
+
CheckType?: string;
|
|
40
|
+
|
|
41
|
+
BaselineUsedForDriftCheckStatistics?: string;
|
|
42
|
+
|
|
43
|
+
BaselineUsedForDriftCheckConstraints?: string;
|
|
44
|
+
|
|
45
|
+
CalculatedBaselineStatistics?: string;
|
|
46
|
+
|
|
47
|
+
CalculatedBaselineConstraints?: string;
|
|
48
|
+
|
|
49
|
+
ModelPackageGroupName?: string;
|
|
50
|
+
|
|
51
|
+
ViolationReport?: string;
|
|
52
|
+
|
|
53
|
+
CheckJobArn?: string;
|
|
54
|
+
|
|
55
|
+
SkipCheck?: boolean;
|
|
56
|
+
|
|
57
|
+
RegisterNewBaseline?: boolean;
|
|
58
|
+
}
|
|
59
|
+
export declare namespace QualityCheckStepMetadata {
|
|
60
|
+
|
|
61
|
+
const filterSensitiveLog: (obj: QualityCheckStepMetadata) => any;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface RegisterModelStepMetadata {
|
|
65
|
+
|
|
66
|
+
Arn?: string;
|
|
67
|
+
}
|
|
68
|
+
export declare namespace RegisterModelStepMetadata {
|
|
69
|
+
|
|
70
|
+
const filterSensitiveLog: (obj: RegisterModelStepMetadata) => any;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export interface TrainingJobStepMetadata {
|
|
74
|
+
|
|
75
|
+
Arn?: string;
|
|
76
|
+
}
|
|
77
|
+
export declare namespace TrainingJobStepMetadata {
|
|
78
|
+
|
|
79
|
+
const filterSensitiveLog: (obj: TrainingJobStepMetadata) => any;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface TransformJobStepMetadata {
|
|
83
|
+
|
|
84
|
+
Arn?: string;
|
|
85
|
+
}
|
|
86
|
+
export declare namespace TransformJobStepMetadata {
|
|
87
|
+
|
|
88
|
+
const filterSensitiveLog: (obj: TransformJobStepMetadata) => any;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface TuningJobStepMetaData {
|
|
92
|
+
|
|
93
|
+
Arn?: string;
|
|
94
|
+
}
|
|
95
|
+
export declare namespace TuningJobStepMetaData {
|
|
96
|
+
|
|
97
|
+
const filterSensitiveLog: (obj: TuningJobStepMetaData) => any;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface PipelineExecutionStepMetadata {
|
|
101
|
+
|
|
102
|
+
TrainingJob?: TrainingJobStepMetadata;
|
|
103
|
+
|
|
104
|
+
ProcessingJob?: ProcessingJobStepMetadata;
|
|
105
|
+
|
|
106
|
+
TransformJob?: TransformJobStepMetadata;
|
|
107
|
+
|
|
108
|
+
TuningJob?: TuningJobStepMetaData;
|
|
109
|
+
|
|
110
|
+
Model?: ModelStepMetadata;
|
|
111
|
+
|
|
112
|
+
RegisterModel?: RegisterModelStepMetadata;
|
|
113
|
+
|
|
114
|
+
Condition?: ConditionStepMetadata;
|
|
115
|
+
|
|
116
|
+
Callback?: CallbackStepMetadata;
|
|
117
|
+
|
|
118
|
+
Lambda?: LambdaStepMetadata;
|
|
119
|
+
|
|
120
|
+
QualityCheck?: QualityCheckStepMetadata;
|
|
121
|
+
|
|
122
|
+
ClarifyCheck?: ClarifyCheckStepMetadata;
|
|
123
|
+
|
|
124
|
+
EMR?: EMRStepMetadata;
|
|
125
|
+
|
|
126
|
+
Fail?: FailStepMetadata;
|
|
127
|
+
}
|
|
128
|
+
export declare namespace PipelineExecutionStepMetadata {
|
|
129
|
+
|
|
130
|
+
const filterSensitiveLog: (obj: PipelineExecutionStepMetadata) => any;
|
|
131
|
+
}
|
|
132
|
+
export declare enum StepStatus {
|
|
133
|
+
EXECUTING = "Executing",
|
|
134
|
+
FAILED = "Failed",
|
|
135
|
+
STARTING = "Starting",
|
|
136
|
+
STOPPED = "Stopped",
|
|
137
|
+
STOPPING = "Stopping",
|
|
138
|
+
SUCCEEDED = "Succeeded"
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export interface PipelineExecutionStep {
|
|
142
|
+
|
|
143
|
+
StepName?: string;
|
|
144
|
+
|
|
145
|
+
StepDisplayName?: string;
|
|
146
|
+
|
|
147
|
+
StepDescription?: string;
|
|
148
|
+
|
|
149
|
+
StartTime?: Date;
|
|
150
|
+
|
|
151
|
+
EndTime?: Date;
|
|
152
|
+
|
|
153
|
+
StepStatus?: StepStatus | string;
|
|
154
|
+
|
|
155
|
+
CacheHitResult?: CacheHitResult;
|
|
156
|
+
|
|
157
|
+
AttemptCount?: number;
|
|
158
|
+
|
|
159
|
+
FailureReason?: string;
|
|
160
|
+
|
|
161
|
+
Metadata?: PipelineExecutionStepMetadata;
|
|
162
|
+
}
|
|
163
|
+
export declare namespace PipelineExecutionStep {
|
|
164
|
+
|
|
165
|
+
const filterSensitiveLog: (obj: PipelineExecutionStep) => any;
|
|
166
|
+
}
|
|
167
|
+
export interface ListPipelineExecutionStepsResponse {
|
|
168
|
+
|
|
169
|
+
PipelineExecutionSteps?: PipelineExecutionStep[];
|
|
170
|
+
|
|
171
|
+
NextToken?: string;
|
|
172
|
+
}
|
|
173
|
+
export declare namespace ListPipelineExecutionStepsResponse {
|
|
174
|
+
|
|
175
|
+
const filterSensitiveLog: (obj: ListPipelineExecutionStepsResponse) => any;
|
|
176
|
+
}
|
|
177
|
+
export interface ListPipelineParametersForExecutionRequest {
|
|
178
|
+
|
|
179
|
+
PipelineExecutionArn: string | undefined;
|
|
180
|
+
|
|
181
|
+
NextToken?: string;
|
|
182
|
+
|
|
183
|
+
MaxResults?: number;
|
|
184
|
+
}
|
|
185
|
+
export declare namespace ListPipelineParametersForExecutionRequest {
|
|
186
|
+
|
|
187
|
+
const filterSensitiveLog: (obj: ListPipelineParametersForExecutionRequest) => any;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export interface Parameter {
|
|
191
|
+
|
|
192
|
+
Name: string | undefined;
|
|
193
|
+
|
|
194
|
+
Value: string | undefined;
|
|
195
|
+
}
|
|
196
|
+
export declare namespace Parameter {
|
|
197
|
+
|
|
198
|
+
const filterSensitiveLog: (obj: Parameter) => any;
|
|
199
|
+
}
|
|
200
|
+
export interface ListPipelineParametersForExecutionResponse {
|
|
201
|
+
|
|
202
|
+
PipelineParameters?: Parameter[];
|
|
203
|
+
|
|
204
|
+
NextToken?: string;
|
|
205
|
+
}
|
|
206
|
+
export declare namespace ListPipelineParametersForExecutionResponse {
|
|
207
|
+
|
|
208
|
+
const filterSensitiveLog: (obj: ListPipelineParametersForExecutionResponse) => any;
|
|
209
|
+
}
|
|
210
|
+
export declare enum SortPipelinesBy {
|
|
211
|
+
CREATION_TIME = "CreationTime",
|
|
212
|
+
NAME = "Name"
|
|
213
|
+
}
|
|
214
|
+
export interface ListPipelinesRequest {
|
|
215
|
+
|
|
216
|
+
PipelineNamePrefix?: string;
|
|
217
|
+
|
|
218
|
+
CreatedAfter?: Date;
|
|
219
|
+
|
|
220
|
+
CreatedBefore?: Date;
|
|
221
|
+
|
|
222
|
+
SortBy?: SortPipelinesBy | string;
|
|
223
|
+
|
|
224
|
+
SortOrder?: SortOrder | string;
|
|
225
|
+
|
|
226
|
+
NextToken?: string;
|
|
227
|
+
|
|
228
|
+
MaxResults?: number;
|
|
229
|
+
}
|
|
230
|
+
export declare namespace ListPipelinesRequest {
|
|
231
|
+
|
|
232
|
+
const filterSensitiveLog: (obj: ListPipelinesRequest) => any;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export interface PipelineSummary {
|
|
236
|
+
|
|
237
|
+
PipelineArn?: string;
|
|
238
|
+
|
|
239
|
+
PipelineName?: string;
|
|
240
|
+
|
|
241
|
+
PipelineDisplayName?: string;
|
|
242
|
+
|
|
243
|
+
PipelineDescription?: string;
|
|
244
|
+
|
|
245
|
+
RoleArn?: string;
|
|
246
|
+
|
|
247
|
+
CreationTime?: Date;
|
|
248
|
+
|
|
249
|
+
LastModifiedTime?: Date;
|
|
250
|
+
|
|
251
|
+
LastExecutionTime?: Date;
|
|
252
|
+
}
|
|
253
|
+
export declare namespace PipelineSummary {
|
|
254
|
+
|
|
255
|
+
const filterSensitiveLog: (obj: PipelineSummary) => any;
|
|
256
|
+
}
|
|
257
|
+
export interface ListPipelinesResponse {
|
|
258
|
+
|
|
259
|
+
PipelineSummaries?: PipelineSummary[];
|
|
260
|
+
|
|
261
|
+
NextToken?: string;
|
|
262
|
+
}
|
|
263
|
+
export declare namespace ListPipelinesResponse {
|
|
264
|
+
|
|
265
|
+
const filterSensitiveLog: (obj: ListPipelinesResponse) => any;
|
|
266
|
+
}
|
|
267
|
+
export interface ListProcessingJobsRequest {
|
|
268
|
+
|
|
269
|
+
CreationTimeAfter?: Date;
|
|
270
|
+
|
|
271
|
+
CreationTimeBefore?: Date;
|
|
272
|
+
|
|
273
|
+
LastModifiedTimeAfter?: Date;
|
|
274
|
+
|
|
275
|
+
LastModifiedTimeBefore?: Date;
|
|
276
|
+
|
|
277
|
+
NameContains?: string;
|
|
278
|
+
|
|
279
|
+
StatusEquals?: ProcessingJobStatus | string;
|
|
280
|
+
|
|
281
|
+
SortBy?: SortBy | string;
|
|
282
|
+
|
|
283
|
+
SortOrder?: SortOrder | string;
|
|
284
|
+
|
|
285
|
+
NextToken?: string;
|
|
286
|
+
|
|
287
|
+
MaxResults?: number;
|
|
288
|
+
}
|
|
289
|
+
export declare namespace ListProcessingJobsRequest {
|
|
290
|
+
|
|
291
|
+
const filterSensitiveLog: (obj: ListProcessingJobsRequest) => any;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export interface ProcessingJobSummary {
|
|
295
|
+
|
|
296
|
+
ProcessingJobName: string | undefined;
|
|
297
|
+
|
|
298
|
+
ProcessingJobArn: string | undefined;
|
|
299
|
+
|
|
300
|
+
CreationTime: Date | undefined;
|
|
301
|
+
|
|
302
|
+
ProcessingEndTime?: Date;
|
|
303
|
+
|
|
304
|
+
LastModifiedTime?: Date;
|
|
305
|
+
|
|
306
|
+
ProcessingJobStatus: ProcessingJobStatus | string | undefined;
|
|
307
|
+
|
|
308
|
+
FailureReason?: string;
|
|
309
|
+
|
|
310
|
+
ExitMessage?: string;
|
|
311
|
+
}
|
|
312
|
+
export declare namespace ProcessingJobSummary {
|
|
313
|
+
|
|
314
|
+
const filterSensitiveLog: (obj: ProcessingJobSummary) => any;
|
|
315
|
+
}
|
|
316
|
+
export interface ListProcessingJobsResponse {
|
|
317
|
+
|
|
318
|
+
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
319
|
+
|
|
320
|
+
NextToken?: string;
|
|
321
|
+
}
|
|
322
|
+
export declare namespace ListProcessingJobsResponse {
|
|
323
|
+
|
|
324
|
+
const filterSensitiveLog: (obj: ListProcessingJobsResponse) => any;
|
|
325
|
+
}
|
|
4
326
|
export declare enum ProjectSortBy {
|
|
5
327
|
CREATION_TIME = "CreationTime",
|
|
6
328
|
NAME = "Name"
|
|
@@ -58,6 +380,32 @@ export declare namespace ListProjectsOutput {
|
|
|
58
380
|
|
|
59
381
|
const filterSensitiveLog: (obj: ListProjectsOutput) => any;
|
|
60
382
|
}
|
|
383
|
+
export interface ListStageDevicesRequest {
|
|
384
|
+
|
|
385
|
+
NextToken?: string;
|
|
386
|
+
|
|
387
|
+
MaxResults?: number;
|
|
388
|
+
|
|
389
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
390
|
+
|
|
391
|
+
ExcludeDevicesDeployedInOtherStage?: boolean;
|
|
392
|
+
|
|
393
|
+
StageName: string | undefined;
|
|
394
|
+
}
|
|
395
|
+
export declare namespace ListStageDevicesRequest {
|
|
396
|
+
|
|
397
|
+
const filterSensitiveLog: (obj: ListStageDevicesRequest) => any;
|
|
398
|
+
}
|
|
399
|
+
export interface ListStageDevicesResponse {
|
|
400
|
+
|
|
401
|
+
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
402
|
+
|
|
403
|
+
NextToken?: string;
|
|
404
|
+
}
|
|
405
|
+
export declare namespace ListStageDevicesResponse {
|
|
406
|
+
|
|
407
|
+
const filterSensitiveLog: (obj: ListStageDevicesResponse) => any;
|
|
408
|
+
}
|
|
61
409
|
export declare enum StudioLifecycleConfigSortKey {
|
|
62
410
|
CreationTime = "CreationTime",
|
|
63
411
|
LastModifiedTime = "LastModifiedTime",
|
|
@@ -1287,6 +1635,16 @@ export declare namespace SendPipelineExecutionStepSuccessResponse {
|
|
|
1287
1635
|
|
|
1288
1636
|
const filterSensitiveLog: (obj: SendPipelineExecutionStepSuccessResponse) => any;
|
|
1289
1637
|
}
|
|
1638
|
+
export interface StartEdgeDeploymentStageRequest {
|
|
1639
|
+
|
|
1640
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
1641
|
+
|
|
1642
|
+
StageName: string | undefined;
|
|
1643
|
+
}
|
|
1644
|
+
export declare namespace StartEdgeDeploymentStageRequest {
|
|
1645
|
+
|
|
1646
|
+
const filterSensitiveLog: (obj: StartEdgeDeploymentStageRequest) => any;
|
|
1647
|
+
}
|
|
1290
1648
|
export interface StartMonitoringScheduleRequest {
|
|
1291
1649
|
|
|
1292
1650
|
MonitoringScheduleName: string | undefined;
|
|
@@ -1345,6 +1703,16 @@ export declare namespace StopCompilationJobRequest {
|
|
|
1345
1703
|
|
|
1346
1704
|
const filterSensitiveLog: (obj: StopCompilationJobRequest) => any;
|
|
1347
1705
|
}
|
|
1706
|
+
export interface StopEdgeDeploymentStageRequest {
|
|
1707
|
+
|
|
1708
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
1709
|
+
|
|
1710
|
+
StageName: string | undefined;
|
|
1711
|
+
}
|
|
1712
|
+
export declare namespace StopEdgeDeploymentStageRequest {
|
|
1713
|
+
|
|
1714
|
+
const filterSensitiveLog: (obj: StopEdgeDeploymentStageRequest) => any;
|
|
1715
|
+
}
|
|
1348
1716
|
export interface StopEdgePackagingJobRequest {
|
|
1349
1717
|
|
|
1350
1718
|
EdgePackagingJobName: string | undefined;
|
|
@@ -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>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.132.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|