@aws-sdk/client-sagemaker 3.1028.0 → 3.1029.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/README.md +7 -0
- package/dist-cjs/index.js +16 -0
- package/dist-cjs/schemas/schemas_0.js +159 -99
- package/dist-es/SageMaker.js +2 -0
- package/dist-es/commands/StartClusterHealthCheckCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +2 -0
- package/dist-es/schemas/schemas_0.js +124 -64
- package/dist-types/SageMaker.d.ts +7 -0
- package/dist-types/SageMakerClient.d.ts +3 -2
- package/dist-types/commands/BatchAddClusterNodesCommand.d.ts +19 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +7 -2
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +17 -2
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +2 -2
- package/dist-types/commands/DescribePipelineCommand.d.ts +2 -1
- package/dist-types/commands/DescribePipelineDefinitionForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +1 -2
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -2
- package/dist-types/commands/StartClusterHealthCheckCommand.d.ts +88 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +7 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +97 -61
- package/dist-types/models/models_1.d.ts +59 -35
- package/dist-types/models/models_2.d.ts +57 -118
- package/dist-types/models/models_3.d.ts +117 -114
- package/dist-types/models/models_4.d.ts +141 -4
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/SageMaker.d.ts +17 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateCodeRepositoryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePipelineDefinitionForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartClusterHealthCheckCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +24 -18
- package/dist-types/ts3.4/models/models_1.d.ts +18 -11
- package/dist-types/ts3.4/models/models_2.d.ts +16 -33
- package/dist-types/ts3.4/models/models_3.d.ts +28 -28
- package/dist-types/ts3.4/models/models_4.d.ts +40 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +1 -1
|
@@ -65,7 +65,6 @@ import {
|
|
|
65
65
|
FileSystemAccessMode,
|
|
66
66
|
FileSystemType,
|
|
67
67
|
FillingType,
|
|
68
|
-
Framework,
|
|
69
68
|
HyperParameterScalingType,
|
|
70
69
|
HyperParameterTuningJobObjectiveType,
|
|
71
70
|
IdleResourceSharing,
|
|
@@ -145,6 +144,8 @@ export interface AddAssociationResponse {
|
|
|
145
144
|
export interface AddClusterNodeSpecification {
|
|
146
145
|
InstanceGroupName: string | undefined;
|
|
147
146
|
IncrementTargetCountBy: number | undefined;
|
|
147
|
+
AvailabilityZones?: string[] | undefined;
|
|
148
|
+
InstanceTypes?: ClusterInstanceType[] | undefined;
|
|
148
149
|
}
|
|
149
150
|
export interface AdditionalEnis {
|
|
150
151
|
EfaEnis?: string[] | undefined;
|
|
@@ -877,12 +878,16 @@ export interface BatchAddClusterNodesError {
|
|
|
877
878
|
InstanceGroupName: string | undefined;
|
|
878
879
|
ErrorCode: BatchAddClusterNodesErrorCode | undefined;
|
|
879
880
|
FailedCount: number | undefined;
|
|
881
|
+
AvailabilityZones?: string[] | undefined;
|
|
882
|
+
InstanceTypes?: ClusterInstanceType[] | undefined;
|
|
880
883
|
Message?: string | undefined;
|
|
881
884
|
}
|
|
882
885
|
export interface NodeAdditionResult {
|
|
883
886
|
NodeLogicalId: string | undefined;
|
|
884
887
|
InstanceGroupName: string | undefined;
|
|
885
888
|
Status: ClusterInstanceStatus | undefined;
|
|
889
|
+
AvailabilityZones?: string[] | undefined;
|
|
890
|
+
InstanceTypes?: ClusterInstanceType[] | undefined;
|
|
886
891
|
}
|
|
887
892
|
export interface BatchAddClusterNodesResponse {
|
|
888
893
|
Successful: NodeAdditionResult[] | undefined;
|
|
@@ -1366,6 +1371,10 @@ export interface DeploymentConfiguration {
|
|
|
1366
1371
|
WaitIntervalInSeconds?: number | undefined;
|
|
1367
1372
|
AutoRollbackConfiguration?: AlarmDetails[] | undefined;
|
|
1368
1373
|
}
|
|
1374
|
+
export interface ClusterInstanceRequirementDetails {
|
|
1375
|
+
CurrentInstanceTypes?: ClusterInstanceType[] | undefined;
|
|
1376
|
+
DesiredInstanceTypes?: ClusterInstanceType[] | undefined;
|
|
1377
|
+
}
|
|
1369
1378
|
export type ClusterInstanceStorageConfig =
|
|
1370
1379
|
| ClusterInstanceStorageConfig.EbsVolumeConfigMember
|
|
1371
1380
|
| ClusterInstanceStorageConfig.FsxLustreConfigMember
|
|
@@ -1403,6 +1412,11 @@ export declare namespace ClusterInstanceStorageConfig {
|
|
|
1403
1412
|
_: (name: string, value: any) => T;
|
|
1404
1413
|
}
|
|
1405
1414
|
}
|
|
1415
|
+
export interface ClusterInstanceTypeDetail {
|
|
1416
|
+
InstanceType?: ClusterInstanceType | undefined;
|
|
1417
|
+
CurrentCount?: number | undefined;
|
|
1418
|
+
ThreadsPerCore?: number | undefined;
|
|
1419
|
+
}
|
|
1406
1420
|
export interface ClusterKubernetesTaint {
|
|
1407
1421
|
Key: string | undefined;
|
|
1408
1422
|
Value?: string | undefined;
|
|
@@ -1415,8 +1429,8 @@ export interface ClusterKubernetesConfigDetails {
|
|
|
1415
1429
|
DesiredTaints?: ClusterKubernetesTaint[] | undefined;
|
|
1416
1430
|
}
|
|
1417
1431
|
export interface ClusterLifeCycleConfig {
|
|
1418
|
-
SourceS3Uri
|
|
1419
|
-
OnCreate
|
|
1432
|
+
SourceS3Uri?: string | undefined;
|
|
1433
|
+
OnCreate?: string | undefined;
|
|
1420
1434
|
}
|
|
1421
1435
|
export interface ScheduledUpdateConfig {
|
|
1422
1436
|
ScheduleExpression: string | undefined;
|
|
@@ -1432,6 +1446,8 @@ export interface ClusterInstanceGroupDetails {
|
|
|
1432
1446
|
MinCount?: number | undefined;
|
|
1433
1447
|
InstanceGroupName?: string | undefined;
|
|
1434
1448
|
InstanceType?: ClusterInstanceType | undefined;
|
|
1449
|
+
InstanceRequirements?: ClusterInstanceRequirementDetails | undefined;
|
|
1450
|
+
InstanceTypeDetails?: ClusterInstanceTypeDetail[] | undefined;
|
|
1435
1451
|
LifeCycleConfig?: ClusterLifeCycleConfig | undefined;
|
|
1436
1452
|
ExecutionRole?: string | undefined;
|
|
1437
1453
|
ThreadsPerCore?: number | undefined;
|
|
@@ -1454,6 +1470,9 @@ export interface ClusterInstanceGroupDetails {
|
|
|
1454
1470
|
ActiveSoftwareUpdateConfig?: DeploymentConfiguration | undefined;
|
|
1455
1471
|
SlurmConfig?: ClusterSlurmConfigDetails | undefined;
|
|
1456
1472
|
}
|
|
1473
|
+
export interface ClusterInstanceRequirements {
|
|
1474
|
+
InstanceTypes: ClusterInstanceType[] | undefined;
|
|
1475
|
+
}
|
|
1457
1476
|
export interface ClusterKubernetesConfig {
|
|
1458
1477
|
Labels?: Record<string, string> | undefined;
|
|
1459
1478
|
Taints?: ClusterKubernetesTaint[] | undefined;
|
|
@@ -1467,7 +1486,8 @@ export interface ClusterInstanceGroupSpecification {
|
|
|
1467
1486
|
MinInstanceCount?: number | undefined;
|
|
1468
1487
|
InstanceGroupName: string | undefined;
|
|
1469
1488
|
InstanceType?: ClusterInstanceType | undefined;
|
|
1470
|
-
|
|
1489
|
+
InstanceRequirements?: ClusterInstanceRequirements | undefined;
|
|
1490
|
+
LifeCycleConfig?: ClusterLifeCycleConfig | undefined;
|
|
1471
1491
|
ExecutionRole: string | undefined;
|
|
1472
1492
|
ThreadsPerCore?: number | undefined;
|
|
1473
1493
|
InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
|
|
@@ -1938,17 +1958,3 @@ export interface CreateCodeRepositoryInput {
|
|
|
1938
1958
|
GitConfig: GitConfig | undefined;
|
|
1939
1959
|
Tags?: Tag[] | undefined;
|
|
1940
1960
|
}
|
|
1941
|
-
export interface CreateCodeRepositoryOutput {
|
|
1942
|
-
CodeRepositoryArn: string | undefined;
|
|
1943
|
-
}
|
|
1944
|
-
export interface InputConfig {
|
|
1945
|
-
S3Uri: string | undefined;
|
|
1946
|
-
DataInputConfig?: string | undefined;
|
|
1947
|
-
Framework: Framework | undefined;
|
|
1948
|
-
FrameworkVersion?: string | undefined;
|
|
1949
|
-
}
|
|
1950
|
-
export interface TargetPlatform {
|
|
1951
|
-
Os: TargetPlatformOs | undefined;
|
|
1952
|
-
Arch: TargetPlatformArch | undefined;
|
|
1953
|
-
Accelerator?: TargetPlatformAccelerator | undefined;
|
|
1954
|
-
}
|
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
FeatureStatus,
|
|
24
24
|
FeatureType,
|
|
25
25
|
FlatInvocations,
|
|
26
|
+
Framework,
|
|
26
27
|
HubContentType,
|
|
27
28
|
HyperParameterScalingType,
|
|
28
29
|
HyperParameterTuningAllocationStrategy,
|
|
@@ -77,6 +78,9 @@ import {
|
|
|
77
78
|
TableFormat,
|
|
78
79
|
TagPropagation,
|
|
79
80
|
TargetDevice,
|
|
81
|
+
TargetPlatformAccelerator,
|
|
82
|
+
TargetPlatformArch,
|
|
83
|
+
TargetPlatformOs,
|
|
80
84
|
ThroughputMode,
|
|
81
85
|
TrackingServerSize,
|
|
82
86
|
TrafficType,
|
|
@@ -124,7 +128,6 @@ import {
|
|
|
124
128
|
CustomImage,
|
|
125
129
|
HyperParameterTuningJobObjective,
|
|
126
130
|
InferenceSpecification,
|
|
127
|
-
InputConfig,
|
|
128
131
|
MetadataProperties,
|
|
129
132
|
MetricDefinition,
|
|
130
133
|
MetricsSource,
|
|
@@ -134,10 +137,23 @@ import {
|
|
|
134
137
|
ResourceSpec,
|
|
135
138
|
StoppingCondition,
|
|
136
139
|
Tag,
|
|
137
|
-
TargetPlatform,
|
|
138
140
|
TransformJobDefinition,
|
|
139
141
|
VpcConfig,
|
|
140
142
|
} from "./models_0";
|
|
143
|
+
export interface CreateCodeRepositoryOutput {
|
|
144
|
+
CodeRepositoryArn: string | undefined;
|
|
145
|
+
}
|
|
146
|
+
export interface InputConfig {
|
|
147
|
+
S3Uri: string | undefined;
|
|
148
|
+
DataInputConfig?: string | undefined;
|
|
149
|
+
Framework: Framework | undefined;
|
|
150
|
+
FrameworkVersion?: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface TargetPlatform {
|
|
153
|
+
Os: TargetPlatformOs | undefined;
|
|
154
|
+
Arch: TargetPlatformArch | undefined;
|
|
155
|
+
Accelerator?: TargetPlatformAccelerator | undefined;
|
|
156
|
+
}
|
|
141
157
|
export interface OutputConfig {
|
|
142
158
|
S3OutputLocation: string | undefined;
|
|
143
159
|
TargetDevice?: TargetDevice | undefined;
|
|
@@ -1872,12 +1888,3 @@ export interface SpaceCodeEditorAppSettings {
|
|
|
1872
1888
|
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
1873
1889
|
AppLifecycleManagement?: SpaceAppLifecycleManagement | undefined;
|
|
1874
1890
|
}
|
|
1875
|
-
export interface EFSFileSystem {
|
|
1876
|
-
FileSystemId: string | undefined;
|
|
1877
|
-
}
|
|
1878
|
-
export interface FSxLustreFileSystem {
|
|
1879
|
-
FileSystemId: string | undefined;
|
|
1880
|
-
}
|
|
1881
|
-
export interface S3FileSystem {
|
|
1882
|
-
S3Uri: string | undefined;
|
|
1883
|
-
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
ClusterStatus,
|
|
21
21
|
CompilationJobStatus,
|
|
22
22
|
CustomizationTechnique,
|
|
23
|
+
DeepHealthCheckType,
|
|
23
24
|
DetailedModelPackageStatus,
|
|
24
25
|
DirectInternetAccess,
|
|
25
26
|
DomainStatus,
|
|
@@ -75,7 +76,6 @@ import {
|
|
|
75
76
|
PartnerAppStatus,
|
|
76
77
|
PartnerAppType,
|
|
77
78
|
Peft,
|
|
78
|
-
PipelineStatus,
|
|
79
79
|
ProblemType,
|
|
80
80
|
ProcessingInstanceType,
|
|
81
81
|
Processor,
|
|
@@ -153,7 +153,6 @@ import {
|
|
|
153
153
|
ContextSource,
|
|
154
154
|
GitConfig,
|
|
155
155
|
InferenceSpecification,
|
|
156
|
-
InputConfig,
|
|
157
156
|
JupyterLabAppImageConfig,
|
|
158
157
|
KernelGatewayImageConfig,
|
|
159
158
|
MetadataProperties,
|
|
@@ -184,13 +183,11 @@ import {
|
|
|
184
183
|
EdgeDeploymentConfig,
|
|
185
184
|
EdgeDeploymentModelConfig,
|
|
186
185
|
EdgeOutputConfig,
|
|
187
|
-
EFSFileSystem,
|
|
188
186
|
EndpointInfo,
|
|
189
187
|
ExperimentConfig,
|
|
190
188
|
ExplainerConfig,
|
|
191
189
|
FeatureDefinition,
|
|
192
190
|
FlowDefinitionOutputConfig,
|
|
193
|
-
FSxLustreFileSystem,
|
|
194
191
|
HubS3StorageConfig,
|
|
195
192
|
HumanLoopActivationConfig,
|
|
196
193
|
HumanLoopConfig,
|
|
@@ -205,6 +202,7 @@ import {
|
|
|
205
202
|
InferenceExecutionConfig,
|
|
206
203
|
InferenceExperimentDataStorageConfig,
|
|
207
204
|
InferenceExperimentSchedule,
|
|
205
|
+
InputConfig,
|
|
208
206
|
InstanceMetadataServiceConfiguration,
|
|
209
207
|
JupyterServerAppSettings,
|
|
210
208
|
KernelGatewayAppSettings,
|
|
@@ -245,7 +243,6 @@ import {
|
|
|
245
243
|
OptimizationVpcConfig,
|
|
246
244
|
OutputConfig,
|
|
247
245
|
OwnershipSettings,
|
|
248
|
-
ParallelismConfiguration,
|
|
249
246
|
PartnerAppConfig,
|
|
250
247
|
PartnerAppMaintenanceConfig,
|
|
251
248
|
ProductionVariant,
|
|
@@ -255,13 +252,21 @@ import {
|
|
|
255
252
|
RecommendationJobInputConfig,
|
|
256
253
|
RecommendationJobStoppingConditions,
|
|
257
254
|
RetryStrategy,
|
|
258
|
-
S3FileSystem,
|
|
259
255
|
ShadowModeConfig,
|
|
260
256
|
SourceAlgorithmSpecification,
|
|
261
257
|
SpaceAppLifecycleManagement,
|
|
262
258
|
SpaceCodeEditorAppSettings,
|
|
263
259
|
UserSettings,
|
|
264
260
|
} from "./models_1";
|
|
261
|
+
export interface EFSFileSystem {
|
|
262
|
+
FileSystemId: string | undefined;
|
|
263
|
+
}
|
|
264
|
+
export interface FSxLustreFileSystem {
|
|
265
|
+
FileSystemId: string | undefined;
|
|
266
|
+
}
|
|
267
|
+
export interface S3FileSystem {
|
|
268
|
+
S3Uri: string | undefined;
|
|
269
|
+
}
|
|
265
270
|
export type CustomFileSystem =
|
|
266
271
|
| CustomFileSystem.EFSFileSystemMember
|
|
267
272
|
| CustomFileSystem.FSxLustreFileSystemMember
|
|
@@ -629,6 +634,11 @@ export interface DebugRuleEvaluationStatus {
|
|
|
629
634
|
StatusDetails?: string | undefined;
|
|
630
635
|
LastModifiedTime?: Date | undefined;
|
|
631
636
|
}
|
|
637
|
+
export interface InstanceGroupHealthCheckConfiguration {
|
|
638
|
+
InstanceGroupName: string | undefined;
|
|
639
|
+
InstanceIds?: string[] | undefined;
|
|
640
|
+
DeepHealthChecks: DeepHealthCheckType[] | undefined;
|
|
641
|
+
}
|
|
632
642
|
export interface DeleteActionRequest {
|
|
633
643
|
ActionName: string | undefined;
|
|
634
644
|
}
|
|
@@ -2189,30 +2199,3 @@ export interface DescribePipelineRequest {
|
|
|
2189
2199
|
PipelineName: string | undefined;
|
|
2190
2200
|
PipelineVersionId?: number | undefined;
|
|
2191
2201
|
}
|
|
2192
|
-
export interface DescribePipelineResponse {
|
|
2193
|
-
PipelineArn?: string | undefined;
|
|
2194
|
-
PipelineName?: string | undefined;
|
|
2195
|
-
PipelineDisplayName?: string | undefined;
|
|
2196
|
-
PipelineDefinition?: string | undefined;
|
|
2197
|
-
PipelineDescription?: string | undefined;
|
|
2198
|
-
RoleArn?: string | undefined;
|
|
2199
|
-
PipelineStatus?: PipelineStatus | undefined;
|
|
2200
|
-
CreationTime?: Date | undefined;
|
|
2201
|
-
LastModifiedTime?: Date | undefined;
|
|
2202
|
-
LastRunTime?: Date | undefined;
|
|
2203
|
-
CreatedBy?: UserContext | undefined;
|
|
2204
|
-
LastModifiedBy?: UserContext | undefined;
|
|
2205
|
-
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
2206
|
-
PipelineVersionDisplayName?: string | undefined;
|
|
2207
|
-
PipelineVersionDescription?: string | undefined;
|
|
2208
|
-
}
|
|
2209
|
-
export interface DescribePipelineDefinitionForExecutionRequest {
|
|
2210
|
-
PipelineExecutionArn: string | undefined;
|
|
2211
|
-
}
|
|
2212
|
-
export interface DescribePipelineDefinitionForExecutionResponse {
|
|
2213
|
-
PipelineDefinition?: string | undefined;
|
|
2214
|
-
CreationTime?: Date | undefined;
|
|
2215
|
-
}
|
|
2216
|
-
export interface DescribePipelineExecutionRequest {
|
|
2217
|
-
PipelineExecutionArn: string | undefined;
|
|
2218
|
-
}
|
|
@@ -96,6 +96,7 @@ import {
|
|
|
96
96
|
PartnerAppStatus,
|
|
97
97
|
PartnerAppType,
|
|
98
98
|
PipelineExecutionStatus,
|
|
99
|
+
PipelineStatus,
|
|
99
100
|
ProcessingJobStatus,
|
|
100
101
|
ProfilingStatus,
|
|
101
102
|
ProjectStatus,
|
|
@@ -127,7 +128,6 @@ import {
|
|
|
127
128
|
SortQuotaBy,
|
|
128
129
|
SortTrackingServerBy,
|
|
129
130
|
SpaceStatus,
|
|
130
|
-
StepStatus,
|
|
131
131
|
StudioLifecycleConfigAppType,
|
|
132
132
|
TrackingServerStatus,
|
|
133
133
|
TrainingJobStatus,
|
|
@@ -159,7 +159,6 @@ import {
|
|
|
159
159
|
BedrockCustomModelMetadata,
|
|
160
160
|
BedrockModelImportMetadata,
|
|
161
161
|
BedrockProvisionedModelThroughputMetadata,
|
|
162
|
-
CacheHitResult,
|
|
163
162
|
CallbackStepMetadata,
|
|
164
163
|
CfnTemplateProviderDetail,
|
|
165
164
|
Channel,
|
|
@@ -260,6 +259,33 @@ import {
|
|
|
260
259
|
TrialComponentStatus,
|
|
261
260
|
WorkerAccessConfiguration,
|
|
262
261
|
} from "./models_2";
|
|
262
|
+
export interface DescribePipelineResponse {
|
|
263
|
+
PipelineArn?: string | undefined;
|
|
264
|
+
PipelineName?: string | undefined;
|
|
265
|
+
PipelineDisplayName?: string | undefined;
|
|
266
|
+
PipelineDefinition?: string | undefined;
|
|
267
|
+
PipelineDescription?: string | undefined;
|
|
268
|
+
RoleArn?: string | undefined;
|
|
269
|
+
PipelineStatus?: PipelineStatus | undefined;
|
|
270
|
+
CreationTime?: Date | undefined;
|
|
271
|
+
LastModifiedTime?: Date | undefined;
|
|
272
|
+
LastRunTime?: Date | undefined;
|
|
273
|
+
CreatedBy?: UserContext | undefined;
|
|
274
|
+
LastModifiedBy?: UserContext | undefined;
|
|
275
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
276
|
+
PipelineVersionDisplayName?: string | undefined;
|
|
277
|
+
PipelineVersionDescription?: string | undefined;
|
|
278
|
+
}
|
|
279
|
+
export interface DescribePipelineDefinitionForExecutionRequest {
|
|
280
|
+
PipelineExecutionArn: string | undefined;
|
|
281
|
+
}
|
|
282
|
+
export interface DescribePipelineDefinitionForExecutionResponse {
|
|
283
|
+
PipelineDefinition?: string | undefined;
|
|
284
|
+
CreationTime?: Date | undefined;
|
|
285
|
+
}
|
|
286
|
+
export interface DescribePipelineExecutionRequest {
|
|
287
|
+
PipelineExecutionArn: string | undefined;
|
|
288
|
+
}
|
|
263
289
|
export interface MLflowConfiguration {
|
|
264
290
|
MlflowResourceArn?: string | undefined;
|
|
265
291
|
MlflowExperimentName?: string | undefined;
|
|
@@ -2455,29 +2481,3 @@ export interface PipelineExecutionStepMetadata {
|
|
|
2455
2481
|
export interface SelectiveExecutionResult {
|
|
2456
2482
|
SourcePipelineExecutionArn?: string | undefined;
|
|
2457
2483
|
}
|
|
2458
|
-
export interface PipelineExecutionStep {
|
|
2459
|
-
StepName?: string | undefined;
|
|
2460
|
-
StepDisplayName?: string | undefined;
|
|
2461
|
-
StepDescription?: string | undefined;
|
|
2462
|
-
StartTime?: Date | undefined;
|
|
2463
|
-
EndTime?: Date | undefined;
|
|
2464
|
-
StepStatus?: StepStatus | undefined;
|
|
2465
|
-
CacheHitResult?: CacheHitResult | undefined;
|
|
2466
|
-
FailureReason?: string | undefined;
|
|
2467
|
-
Metadata?: PipelineExecutionStepMetadata | undefined;
|
|
2468
|
-
AttemptCount?: number | undefined;
|
|
2469
|
-
SelectiveExecutionResult?: SelectiveExecutionResult | undefined;
|
|
2470
|
-
}
|
|
2471
|
-
export interface ListPipelineExecutionStepsResponse {
|
|
2472
|
-
PipelineExecutionSteps?: PipelineExecutionStep[] | undefined;
|
|
2473
|
-
NextToken?: string | undefined;
|
|
2474
|
-
}
|
|
2475
|
-
export interface ListPipelineParametersForExecutionRequest {
|
|
2476
|
-
PipelineExecutionArn: string | undefined;
|
|
2477
|
-
NextToken?: string | undefined;
|
|
2478
|
-
MaxResults?: number | undefined;
|
|
2479
|
-
}
|
|
2480
|
-
export interface Parameter {
|
|
2481
|
-
Name: string | undefined;
|
|
2482
|
-
Value: string | undefined;
|
|
2483
|
-
}
|
|
@@ -58,6 +58,7 @@ import {
|
|
|
58
58
|
SortTrialsBy,
|
|
59
59
|
SpaceSortKey,
|
|
60
60
|
SpaceStatus,
|
|
61
|
+
StepStatus,
|
|
61
62
|
StudioLifecycleConfigAppType,
|
|
62
63
|
StudioLifecycleConfigSortKey,
|
|
63
64
|
TagPropagation,
|
|
@@ -84,6 +85,7 @@ import {
|
|
|
84
85
|
AppSpecification,
|
|
85
86
|
BatchDataCaptureConfig,
|
|
86
87
|
BatchTransformInput,
|
|
88
|
+
CacheHitResult,
|
|
87
89
|
CfnUpdateTemplateProvider,
|
|
88
90
|
Channel,
|
|
89
91
|
CheckpointConfig,
|
|
@@ -162,6 +164,7 @@ import {
|
|
|
162
164
|
FeatureParameter,
|
|
163
165
|
HyperParameterTrainingJobSummary,
|
|
164
166
|
InferenceComponentDeploymentConfig,
|
|
167
|
+
InstanceGroupHealthCheckConfiguration,
|
|
165
168
|
MemberDefinition,
|
|
166
169
|
ModelArtifacts,
|
|
167
170
|
ModelClientConfig,
|
|
@@ -197,11 +200,12 @@ import {
|
|
|
197
200
|
HyperParameterTuningJobSearchEntity,
|
|
198
201
|
MetricData,
|
|
199
202
|
MonitoringAlertSummary,
|
|
200
|
-
|
|
203
|
+
PipelineExecutionStepMetadata,
|
|
201
204
|
PipelineExperimentConfig,
|
|
202
205
|
ReservedCapacitySummary,
|
|
203
206
|
SecondaryStatusTransition,
|
|
204
207
|
SelectiveExecutionConfig,
|
|
208
|
+
SelectiveExecutionResult,
|
|
205
209
|
ServiceCatalogProvisionedProductDetails,
|
|
206
210
|
SubscribedWorkteam,
|
|
207
211
|
TemplateProviderDetail,
|
|
@@ -212,6 +216,32 @@ import {
|
|
|
212
216
|
Workforce,
|
|
213
217
|
Workteam,
|
|
214
218
|
} from "./models_3";
|
|
219
|
+
export interface PipelineExecutionStep {
|
|
220
|
+
StepName?: string | undefined;
|
|
221
|
+
StepDisplayName?: string | undefined;
|
|
222
|
+
StepDescription?: string | undefined;
|
|
223
|
+
StartTime?: Date | undefined;
|
|
224
|
+
EndTime?: Date | undefined;
|
|
225
|
+
StepStatus?: StepStatus | undefined;
|
|
226
|
+
CacheHitResult?: CacheHitResult | undefined;
|
|
227
|
+
FailureReason?: string | undefined;
|
|
228
|
+
Metadata?: PipelineExecutionStepMetadata | undefined;
|
|
229
|
+
AttemptCount?: number | undefined;
|
|
230
|
+
SelectiveExecutionResult?: SelectiveExecutionResult | undefined;
|
|
231
|
+
}
|
|
232
|
+
export interface ListPipelineExecutionStepsResponse {
|
|
233
|
+
PipelineExecutionSteps?: PipelineExecutionStep[] | undefined;
|
|
234
|
+
NextToken?: string | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface ListPipelineParametersForExecutionRequest {
|
|
237
|
+
PipelineExecutionArn: string | undefined;
|
|
238
|
+
NextToken?: string | undefined;
|
|
239
|
+
MaxResults?: number | undefined;
|
|
240
|
+
}
|
|
241
|
+
export interface Parameter {
|
|
242
|
+
Name: string | undefined;
|
|
243
|
+
Value: string | undefined;
|
|
244
|
+
}
|
|
215
245
|
export interface ListPipelineParametersForExecutionResponse {
|
|
216
246
|
PipelineParameters?: Parameter[] | undefined;
|
|
217
247
|
NextToken?: string | undefined;
|
|
@@ -1130,6 +1160,15 @@ export interface SendPipelineExecutionStepSuccessRequest {
|
|
|
1130
1160
|
export interface SendPipelineExecutionStepSuccessResponse {
|
|
1131
1161
|
PipelineExecutionArn?: string | undefined;
|
|
1132
1162
|
}
|
|
1163
|
+
export interface StartClusterHealthCheckRequest {
|
|
1164
|
+
ClusterName: string | undefined;
|
|
1165
|
+
DeepHealthCheckConfigurations:
|
|
1166
|
+
| InstanceGroupHealthCheckConfiguration[]
|
|
1167
|
+
| undefined;
|
|
1168
|
+
}
|
|
1169
|
+
export interface StartClusterHealthCheckResponse {
|
|
1170
|
+
ClusterArn: string | undefined;
|
|
1171
|
+
}
|
|
1133
1172
|
export interface StartEdgeDeploymentStageRequest {
|
|
1134
1173
|
EdgeDeploymentPlanName: string | undefined;
|
|
1135
1174
|
StageName: string | undefined;
|
|
@@ -148,7 +148,10 @@ export declare var ClusterFsxOpenZfsConfig$: StaticStructureSchema;
|
|
|
148
148
|
export declare var ClusterInstanceGroupDetails$: StaticStructureSchema;
|
|
149
149
|
export declare var ClusterInstanceGroupSpecification$: StaticStructureSchema;
|
|
150
150
|
export declare var ClusterInstancePlacement$: StaticStructureSchema;
|
|
151
|
+
export declare var ClusterInstanceRequirementDetails$: StaticStructureSchema;
|
|
152
|
+
export declare var ClusterInstanceRequirements$: StaticStructureSchema;
|
|
151
153
|
export declare var ClusterInstanceStatusDetails$: StaticStructureSchema;
|
|
154
|
+
export declare var ClusterInstanceTypeDetail$: StaticStructureSchema;
|
|
152
155
|
export declare var ClusterKubernetesConfig$: StaticStructureSchema;
|
|
153
156
|
export declare var ClusterKubernetesConfigDetails$: StaticStructureSchema;
|
|
154
157
|
export declare var ClusterKubernetesConfigNodeDetails$: StaticStructureSchema;
|
|
@@ -740,6 +743,7 @@ export declare var InferenceSpecification$: StaticStructureSchema;
|
|
|
740
743
|
export declare var InfraCheckConfig$: StaticStructureSchema;
|
|
741
744
|
export declare var InputConfig$: StaticStructureSchema;
|
|
742
745
|
export declare var InstanceGroup$: StaticStructureSchema;
|
|
746
|
+
export declare var InstanceGroupHealthCheckConfiguration$: StaticStructureSchema;
|
|
743
747
|
export declare var InstanceGroupMetadata$: StaticStructureSchema;
|
|
744
748
|
export declare var InstanceGroupScalingMetadata$: StaticStructureSchema;
|
|
745
749
|
export declare var InstanceMetadata$: StaticStructureSchema;
|
|
@@ -1227,6 +1231,8 @@ export declare var SpaceSharingSettings$: StaticStructureSchema;
|
|
|
1227
1231
|
export declare var SpaceSharingSettingsSummary$: StaticStructureSchema;
|
|
1228
1232
|
export declare var SpaceStorageSettings$: StaticStructureSchema;
|
|
1229
1233
|
export declare var Stairs$: StaticStructureSchema;
|
|
1234
|
+
export declare var StartClusterHealthCheckRequest$: StaticStructureSchema;
|
|
1235
|
+
export declare var StartClusterHealthCheckResponse$: StaticStructureSchema;
|
|
1230
1236
|
export declare var StartEdgeDeploymentStageRequest$: StaticStructureSchema;
|
|
1231
1237
|
export declare var StartInferenceExperimentRequest$: StaticStructureSchema;
|
|
1232
1238
|
export declare var StartInferenceExperimentResponse$: StaticStructureSchema;
|
|
@@ -1758,6 +1764,7 @@ export declare var Search$: StaticOperationSchema;
|
|
|
1758
1764
|
export declare var SearchTrainingPlanOfferings$: StaticOperationSchema;
|
|
1759
1765
|
export declare var SendPipelineExecutionStepFailure$: StaticOperationSchema;
|
|
1760
1766
|
export declare var SendPipelineExecutionStepSuccess$: StaticOperationSchema;
|
|
1767
|
+
export declare var StartClusterHealthCheck$: StaticOperationSchema;
|
|
1761
1768
|
export declare var StartEdgeDeploymentStage$: StaticOperationSchema;
|
|
1762
1769
|
export declare var StartInferenceExperiment$: StaticOperationSchema;
|
|
1763
1770
|
export declare var StartMlflowTrackingServer$: StaticOperationSchema;
|
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.1029.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",
|