@aws-sdk/client-sagemaker 3.1031.0 → 3.1032.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/dist-cjs/index.js +5 -0
- package/dist-cjs/schemas/schemas_0.js +59 -44
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +25 -10
- package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
- package/dist-types/commands/CreateClusterSchedulerConfigCommand.d.ts +2 -1
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +1 -2
- package/dist-types/commands/DescribeClusterCommand.d.ts +4 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +4 -0
- package/dist-types/commands/DescribePartnerAppCommand.d.ts +2 -1
- package/dist-types/commands/DescribePipelineCommand.d.ts +1 -2
- package/dist-types/commands/UpdateClusterCommand.d.ts +4 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +43 -36
- package/dist-types/models/models_1.d.ts +36 -28
- package/dist-types/models/models_2.d.ts +30 -118
- package/dist-types/models/models_3.d.ts +119 -131
- package/dist-types/models/models_4.d.ts +129 -2
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateClusterSchedulerConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateCodeRepositoryCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribePartnerAppCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +11 -9
- package/dist-types/ts3.4/models/models_1.d.ts +10 -7
- package/dist-types/ts3.4/models/models_2.d.ts +8 -33
- package/dist-types/ts3.4/models/models_3.d.ts +30 -39
- package/dist-types/ts3.4/models/models_4.d.ts +53 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +5 -5
|
@@ -72,9 +72,6 @@ import {
|
|
|
72
72
|
OfflineStoreStatusValue,
|
|
73
73
|
OptimizationJobDeploymentInstanceType,
|
|
74
74
|
OptimizationJobStatus,
|
|
75
|
-
PartnerAppAuthType,
|
|
76
|
-
PartnerAppStatus,
|
|
77
|
-
PartnerAppType,
|
|
78
75
|
Peft,
|
|
79
76
|
ProblemType,
|
|
80
77
|
ProcessingInstanceType,
|
|
@@ -131,7 +128,6 @@ import {
|
|
|
131
128
|
AutoMLSecurityConfig,
|
|
132
129
|
AutoRollbackConfig,
|
|
133
130
|
Autotune,
|
|
134
|
-
AvailableUpgrade,
|
|
135
131
|
BatchDataCaptureConfig,
|
|
136
132
|
Channel,
|
|
137
133
|
CheckpointConfig,
|
|
@@ -243,8 +239,6 @@ import {
|
|
|
243
239
|
OptimizationVpcConfig,
|
|
244
240
|
OutputConfig,
|
|
245
241
|
OwnershipSettings,
|
|
246
|
-
PartnerAppConfig,
|
|
247
|
-
PartnerAppMaintenanceConfig,
|
|
248
242
|
ProductionVariant,
|
|
249
243
|
ProductionVariantManagedInstanceScaling,
|
|
250
244
|
ProductionVariantRoutingConfig,
|
|
@@ -254,10 +248,16 @@ import {
|
|
|
254
248
|
RetryStrategy,
|
|
255
249
|
ShadowModeConfig,
|
|
256
250
|
SourceAlgorithmSpecification,
|
|
257
|
-
|
|
258
|
-
SpaceCodeEditorAppSettings,
|
|
251
|
+
SpaceIdleSettings,
|
|
259
252
|
UserSettings,
|
|
260
253
|
} from "./models_1";
|
|
254
|
+
export interface SpaceAppLifecycleManagement {
|
|
255
|
+
IdleSettings?: SpaceIdleSettings | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface SpaceCodeEditorAppSettings {
|
|
258
|
+
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
259
|
+
AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
|
|
260
|
+
}
|
|
261
261
|
export interface EFSFileSystem {
|
|
262
262
|
FileSystemId: string | undefined;
|
|
263
263
|
}
|
|
@@ -2174,28 +2174,3 @@ export interface ErrorInfo {
|
|
|
2174
2174
|
Code?: string | undefined;
|
|
2175
2175
|
Reason?: string | undefined;
|
|
2176
2176
|
}
|
|
2177
|
-
export interface DescribePartnerAppResponse {
|
|
2178
|
-
Arn?: string | undefined;
|
|
2179
|
-
Name?: string | undefined;
|
|
2180
|
-
Type?: PartnerAppType | undefined;
|
|
2181
|
-
Status?: PartnerAppStatus | undefined;
|
|
2182
|
-
CreationTime?: Date | undefined;
|
|
2183
|
-
LastModifiedTime?: Date | undefined;
|
|
2184
|
-
ExecutionRoleArn?: string | undefined;
|
|
2185
|
-
KmsKeyId?: string | undefined;
|
|
2186
|
-
BaseUrl?: string | undefined;
|
|
2187
|
-
MaintenanceConfig?: PartnerAppMaintenanceConfig | undefined;
|
|
2188
|
-
Tier?: string | undefined;
|
|
2189
|
-
Version?: string | undefined;
|
|
2190
|
-
ApplicationConfig?: PartnerAppConfig | undefined;
|
|
2191
|
-
AuthType?: PartnerAppAuthType | undefined;
|
|
2192
|
-
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
2193
|
-
Error?: ErrorInfo | undefined;
|
|
2194
|
-
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
2195
|
-
CurrentVersionEolDate?: Date | undefined;
|
|
2196
|
-
AvailableUpgrade?: AvailableUpgrade | undefined;
|
|
2197
|
-
}
|
|
2198
|
-
export interface DescribePipelineRequest {
|
|
2199
|
-
PipelineName: string | undefined;
|
|
2200
|
-
PipelineVersionId?: number | undefined;
|
|
2201
|
-
}
|
|
@@ -93,6 +93,7 @@ import {
|
|
|
93
93
|
OptimizationJobDeploymentInstanceType,
|
|
94
94
|
OptimizationJobStatus,
|
|
95
95
|
OrderKey,
|
|
96
|
+
PartnerAppAuthType,
|
|
96
97
|
PartnerAppStatus,
|
|
97
98
|
PartnerAppType,
|
|
98
99
|
PipelineExecutionStatus,
|
|
@@ -152,18 +153,12 @@ import {
|
|
|
152
153
|
AssociationInfo,
|
|
153
154
|
AssociationSummary,
|
|
154
155
|
AutoMLCandidate,
|
|
155
|
-
AutoMLJobStepMetadata,
|
|
156
156
|
AutoMLJobSummary,
|
|
157
|
+
AvailableUpgrade,
|
|
157
158
|
BatchDataCaptureConfig,
|
|
158
|
-
BedrockCustomModelDeploymentMetadata,
|
|
159
|
-
BedrockCustomModelMetadata,
|
|
160
|
-
BedrockModelImportMetadata,
|
|
161
|
-
BedrockProvisionedModelThroughputMetadata,
|
|
162
|
-
CallbackStepMetadata,
|
|
163
159
|
CfnTemplateProviderDetail,
|
|
164
160
|
Channel,
|
|
165
161
|
CheckpointConfig,
|
|
166
|
-
ClarifyCheckStepMetadata,
|
|
167
162
|
ClusterEventSummary,
|
|
168
163
|
ClusterNodeSummary,
|
|
169
164
|
ClusterSchedulerConfigSummary,
|
|
@@ -172,7 +167,6 @@ import {
|
|
|
172
167
|
CognitoConfig,
|
|
173
168
|
CompilationJobSummary,
|
|
174
169
|
ComputeQuotaSummary,
|
|
175
|
-
ConditionStepMetadata,
|
|
176
170
|
ContextSummary,
|
|
177
171
|
MetadataProperties,
|
|
178
172
|
OutputDataConfig,
|
|
@@ -204,6 +198,8 @@ import {
|
|
|
204
198
|
OnlineStoreConfig,
|
|
205
199
|
OwnershipSettings,
|
|
206
200
|
ParallelismConfiguration,
|
|
201
|
+
PartnerAppConfig,
|
|
202
|
+
PartnerAppMaintenanceConfig,
|
|
207
203
|
ProcessingInput,
|
|
208
204
|
ProcessingOutputConfig,
|
|
209
205
|
ProcessingResources,
|
|
@@ -223,6 +219,7 @@ import {
|
|
|
223
219
|
DebugRuleConfiguration,
|
|
224
220
|
DebugRuleEvaluationStatus,
|
|
225
221
|
EndpointOutputConfiguration,
|
|
222
|
+
ErrorInfo,
|
|
226
223
|
ExperimentSource,
|
|
227
224
|
FeatureParameter,
|
|
228
225
|
HyperParameterTrainingJobSummary,
|
|
@@ -259,6 +256,31 @@ import {
|
|
|
259
256
|
TrialComponentStatus,
|
|
260
257
|
WorkerAccessConfiguration,
|
|
261
258
|
} from "./models_2";
|
|
259
|
+
export interface DescribePartnerAppResponse {
|
|
260
|
+
Arn?: string | undefined;
|
|
261
|
+
Name?: string | undefined;
|
|
262
|
+
Type?: PartnerAppType | undefined;
|
|
263
|
+
Status?: PartnerAppStatus | undefined;
|
|
264
|
+
CreationTime?: Date | undefined;
|
|
265
|
+
LastModifiedTime?: Date | undefined;
|
|
266
|
+
ExecutionRoleArn?: string | undefined;
|
|
267
|
+
KmsKeyId?: string | undefined;
|
|
268
|
+
BaseUrl?: string | undefined;
|
|
269
|
+
MaintenanceConfig?: PartnerAppMaintenanceConfig | undefined;
|
|
270
|
+
Tier?: string | undefined;
|
|
271
|
+
Version?: string | undefined;
|
|
272
|
+
ApplicationConfig?: PartnerAppConfig | undefined;
|
|
273
|
+
AuthType?: PartnerAppAuthType | undefined;
|
|
274
|
+
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
275
|
+
Error?: ErrorInfo | undefined;
|
|
276
|
+
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
277
|
+
CurrentVersionEolDate?: Date | undefined;
|
|
278
|
+
AvailableUpgrade?: AvailableUpgrade | undefined;
|
|
279
|
+
}
|
|
280
|
+
export interface DescribePipelineRequest {
|
|
281
|
+
PipelineName: string | undefined;
|
|
282
|
+
PipelineVersionId?: number | undefined;
|
|
283
|
+
}
|
|
262
284
|
export interface DescribePipelineResponse {
|
|
263
285
|
PipelineArn?: string | undefined;
|
|
264
286
|
PipelineName?: string | undefined;
|
|
@@ -2450,34 +2472,3 @@ export interface TransformJobStepMetadata {
|
|
|
2450
2472
|
export interface TuningJobStepMetaData {
|
|
2451
2473
|
Arn?: string | undefined;
|
|
2452
2474
|
}
|
|
2453
|
-
export interface PipelineExecutionStepMetadata {
|
|
2454
|
-
TrainingJob?: TrainingJobStepMetadata | undefined;
|
|
2455
|
-
ProcessingJob?: ProcessingJobStepMetadata | undefined;
|
|
2456
|
-
TransformJob?: TransformJobStepMetadata | undefined;
|
|
2457
|
-
TuningJob?: TuningJobStepMetaData | undefined;
|
|
2458
|
-
Model?: ModelStepMetadata | undefined;
|
|
2459
|
-
RegisterModel?: RegisterModelStepMetadata | undefined;
|
|
2460
|
-
Condition?: ConditionStepMetadata | undefined;
|
|
2461
|
-
Callback?: CallbackStepMetadata | undefined;
|
|
2462
|
-
Lambda?: LambdaStepMetadata | undefined;
|
|
2463
|
-
EMR?: EMRStepMetadata | undefined;
|
|
2464
|
-
QualityCheck?: QualityCheckStepMetadata | undefined;
|
|
2465
|
-
ClarifyCheck?: ClarifyCheckStepMetadata | undefined;
|
|
2466
|
-
Fail?: FailStepMetadata | undefined;
|
|
2467
|
-
AutoMLJob?: AutoMLJobStepMetadata | undefined;
|
|
2468
|
-
Endpoint?: EndpointStepMetadata | undefined;
|
|
2469
|
-
EndpointConfig?: EndpointConfigStepMetadata | undefined;
|
|
2470
|
-
BedrockCustomModel?: BedrockCustomModelMetadata | undefined;
|
|
2471
|
-
BedrockCustomModelDeployment?:
|
|
2472
|
-
| BedrockCustomModelDeploymentMetadata
|
|
2473
|
-
| undefined;
|
|
2474
|
-
BedrockProvisionedModelThroughput?:
|
|
2475
|
-
| BedrockProvisionedModelThroughputMetadata
|
|
2476
|
-
| undefined;
|
|
2477
|
-
BedrockModelImport?: BedrockModelImportMetadata | undefined;
|
|
2478
|
-
InferenceComponent?: InferenceComponentMetadata | undefined;
|
|
2479
|
-
Lineage?: LineageMetadata | undefined;
|
|
2480
|
-
}
|
|
2481
|
-
export interface SelectiveExecutionResult {
|
|
2482
|
-
SourcePipelineExecutionArn?: string | undefined;
|
|
2483
|
-
}
|
|
@@ -83,12 +83,19 @@ import {
|
|
|
83
83
|
AdditionalInferenceSpecificationDefinition,
|
|
84
84
|
AlgorithmSpecification,
|
|
85
85
|
AppSpecification,
|
|
86
|
+
AutoMLJobStepMetadata,
|
|
86
87
|
BatchDataCaptureConfig,
|
|
87
88
|
BatchTransformInput,
|
|
89
|
+
BedrockCustomModelDeploymentMetadata,
|
|
90
|
+
BedrockCustomModelMetadata,
|
|
91
|
+
BedrockModelImportMetadata,
|
|
92
|
+
BedrockProvisionedModelThroughputMetadata,
|
|
88
93
|
CacheHitResult,
|
|
94
|
+
CallbackStepMetadata,
|
|
89
95
|
CfnUpdateTemplateProvider,
|
|
90
96
|
Channel,
|
|
91
97
|
CheckpointConfig,
|
|
98
|
+
ClarifyCheckStepMetadata,
|
|
92
99
|
ClusterAutoScalingConfig,
|
|
93
100
|
ClusterInstanceGroupSpecification,
|
|
94
101
|
ClusterOrchestrator,
|
|
@@ -97,6 +104,7 @@ import {
|
|
|
97
104
|
CodeEditorAppImageConfig,
|
|
98
105
|
ComputeQuotaConfig,
|
|
99
106
|
ComputeQuotaTarget,
|
|
107
|
+
ConditionStepMetadata,
|
|
100
108
|
ContainerDefinition,
|
|
101
109
|
DeploymentConfiguration,
|
|
102
110
|
InferenceSpecification,
|
|
@@ -191,31 +199,74 @@ import {
|
|
|
191
199
|
DeviceDeploymentSummary,
|
|
192
200
|
DomainSettingsForUpdate,
|
|
193
201
|
Edge,
|
|
202
|
+
EMRStepMetadata,
|
|
194
203
|
Endpoint,
|
|
204
|
+
EndpointConfigStepMetadata,
|
|
205
|
+
EndpointStepMetadata,
|
|
195
206
|
Experiment,
|
|
207
|
+
FailStepMetadata,
|
|
196
208
|
FeatureGroup,
|
|
197
209
|
FeatureMetadata,
|
|
198
210
|
Filter,
|
|
199
211
|
GitConfigForUpdate,
|
|
200
212
|
HyperParameterTuningJobSearchEntity,
|
|
213
|
+
InferenceComponentMetadata,
|
|
214
|
+
LambdaStepMetadata,
|
|
215
|
+
LineageMetadata,
|
|
201
216
|
MetricData,
|
|
217
|
+
ModelStepMetadata,
|
|
202
218
|
MonitoringAlertSummary,
|
|
203
|
-
PipelineExecutionStepMetadata,
|
|
204
219
|
PipelineExperimentConfig,
|
|
220
|
+
ProcessingJobStepMetadata,
|
|
221
|
+
QualityCheckStepMetadata,
|
|
222
|
+
RegisterModelStepMetadata,
|
|
205
223
|
ReservedCapacitySummary,
|
|
206
224
|
SecondaryStatusTransition,
|
|
207
225
|
SelectiveExecutionConfig,
|
|
208
|
-
SelectiveExecutionResult,
|
|
209
226
|
ServiceCatalogProvisionedProductDetails,
|
|
210
227
|
SubscribedWorkteam,
|
|
211
228
|
TemplateProviderDetail,
|
|
229
|
+
TrainingJobStepMetadata,
|
|
230
|
+
TransformJobStepMetadata,
|
|
212
231
|
TrialComponentMetricSummary,
|
|
213
232
|
TrialComponentSource,
|
|
214
233
|
TrialSource,
|
|
234
|
+
TuningJobStepMetaData,
|
|
215
235
|
WarmPoolStatus,
|
|
216
236
|
Workforce,
|
|
217
237
|
Workteam,
|
|
218
238
|
} from "./models_3";
|
|
239
|
+
export interface PipelineExecutionStepMetadata {
|
|
240
|
+
TrainingJob?: TrainingJobStepMetadata | undefined;
|
|
241
|
+
ProcessingJob?: ProcessingJobStepMetadata | undefined;
|
|
242
|
+
TransformJob?: TransformJobStepMetadata | undefined;
|
|
243
|
+
TuningJob?: TuningJobStepMetaData | undefined;
|
|
244
|
+
Model?: ModelStepMetadata | undefined;
|
|
245
|
+
RegisterModel?: RegisterModelStepMetadata | undefined;
|
|
246
|
+
Condition?: ConditionStepMetadata | undefined;
|
|
247
|
+
Callback?: CallbackStepMetadata | undefined;
|
|
248
|
+
Lambda?: LambdaStepMetadata | undefined;
|
|
249
|
+
EMR?: EMRStepMetadata | undefined;
|
|
250
|
+
QualityCheck?: QualityCheckStepMetadata | undefined;
|
|
251
|
+
ClarifyCheck?: ClarifyCheckStepMetadata | undefined;
|
|
252
|
+
Fail?: FailStepMetadata | undefined;
|
|
253
|
+
AutoMLJob?: AutoMLJobStepMetadata | undefined;
|
|
254
|
+
Endpoint?: EndpointStepMetadata | undefined;
|
|
255
|
+
EndpointConfig?: EndpointConfigStepMetadata | undefined;
|
|
256
|
+
BedrockCustomModel?: BedrockCustomModelMetadata | undefined;
|
|
257
|
+
BedrockCustomModelDeployment?:
|
|
258
|
+
| BedrockCustomModelDeploymentMetadata
|
|
259
|
+
| undefined;
|
|
260
|
+
BedrockProvisionedModelThroughput?:
|
|
261
|
+
| BedrockProvisionedModelThroughputMetadata
|
|
262
|
+
| undefined;
|
|
263
|
+
BedrockModelImport?: BedrockModelImportMetadata | undefined;
|
|
264
|
+
InferenceComponent?: InferenceComponentMetadata | undefined;
|
|
265
|
+
Lineage?: LineageMetadata | undefined;
|
|
266
|
+
}
|
|
267
|
+
export interface SelectiveExecutionResult {
|
|
268
|
+
SourcePipelineExecutionArn?: string | undefined;
|
|
269
|
+
}
|
|
219
270
|
export interface PipelineExecutionStep {
|
|
220
271
|
StepName?: string | undefined;
|
|
221
272
|
StepDisplayName?: string | undefined;
|
|
@@ -158,6 +158,8 @@ export declare var ClusterKubernetesConfigNodeDetails$: StaticStructureSchema;
|
|
|
158
158
|
export declare var ClusterKubernetesTaint$: StaticStructureSchema;
|
|
159
159
|
export declare var ClusterLifeCycleConfig$: StaticStructureSchema;
|
|
160
160
|
export declare var ClusterMetadata$: StaticStructureSchema;
|
|
161
|
+
export declare var ClusterNetworkInterface$: StaticStructureSchema;
|
|
162
|
+
export declare var ClusterNetworkInterfaceDetails$: StaticStructureSchema;
|
|
161
163
|
export declare var ClusterNodeDetails$: StaticStructureSchema;
|
|
162
164
|
export declare var ClusterNodeSummary$: StaticStructureSchema;
|
|
163
165
|
export declare var ClusterOnDemandOptions$: StaticStructureSchema;
|
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.1032.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
+
"@aws-sdk/core": "^3.974.1",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.32",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
33
33
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.31",
|
|
36
36
|
"@aws-sdk/region-config-resolver": "^3.972.12",
|
|
37
37
|
"@aws-sdk/types": "^3.973.8",
|
|
38
38
|
"@aws-sdk/util-endpoints": "^3.996.7",
|
|
39
39
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.17",
|
|
41
41
|
"@smithy/config-resolver": "^4.4.16",
|
|
42
42
|
"@smithy/core": "^3.23.15",
|
|
43
43
|
"@smithy/fetch-http-handler": "^5.3.17",
|