@aws-sdk/client-sagemaker 3.1071.0 → 3.1073.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.
Files changed (42) hide show
  1. package/dist-cjs/index.js +7 -0
  2. package/dist-cjs/schemas/schemas_0.js +58 -21
  3. package/dist-es/models/enums.js +6 -0
  4. package/dist-es/schemas/schemas_0.js +54 -21
  5. package/dist-types/commands/CreateClusterCommand.d.ts +26 -4
  6. package/dist-types/commands/DescribeClusterCommand.d.ts +32 -9
  7. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +3 -1
  8. package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +2 -1
  9. package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
  10. package/dist-types/commands/ListClusterNodesCommand.d.ts +2 -1
  11. package/dist-types/commands/ListClustersCommand.d.ts +1 -0
  12. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +1 -1
  13. package/dist-types/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  14. package/dist-types/commands/UpdateClusterCommand.d.ts +26 -4
  15. package/dist-types/commands/UpdateClusterSoftwareCommand.d.ts +1 -0
  16. package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -1
  17. package/dist-types/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateMonitoringScheduleCommand.d.ts +1 -2
  19. package/dist-types/models/enums.d.ts +14 -0
  20. package/dist-types/models/models_0.d.ts +152 -157
  21. package/dist-types/models/models_1.d.ts +121 -56
  22. package/dist-types/models/models_2.d.ts +57 -174
  23. package/dist-types/models/models_3.d.ts +175 -159
  24. package/dist-types/models/models_4.d.ts +164 -69
  25. package/dist-types/models/models_5.d.ts +66 -1
  26. package/dist-types/schemas/schemas_0.d.ts +4 -0
  27. package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/UpdateModelPackageCommand.d.ts +2 -4
  32. package/dist-types/ts3.4/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/UpdateMonitoringScheduleCommand.d.ts +4 -2
  34. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +36 -43
  36. package/dist-types/ts3.4/models/models_1.d.ts +31 -15
  37. package/dist-types/ts3.4/models/models_2.d.ts +16 -50
  38. package/dist-types/ts3.4/models/models_3.d.ts +43 -40
  39. package/dist-types/ts3.4/models/models_4.d.ts +44 -18
  40. package/dist-types/ts3.4/models/models_5.d.ts +18 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
  42. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ListInferenceComponentsInput, ListInferenceComponentsOutput } from "../models/models_3";
3
+ import type { ListInferenceComponentsInput, ListInferenceComponentsOutput } from "../models/models_4";
4
4
  import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ListInferenceExperimentsRequest, ListInferenceExperimentsResponse } from "../models/models_3";
3
+ import type { ListInferenceExperimentsRequest, ListInferenceExperimentsResponse } from "../models/models_4";
4
4
  import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -110,6 +110,31 @@ declare const UpdateClusterCommand_base: {
110
110
  * },
111
111
  * },
112
112
  * ImageId: "STRING_VALUE",
113
+ * AutoPatchConfig: { // ClusterAutoPatchConfig
114
+ * PatchingStrategy: "WhenIdle" || "WhenAllIdle", // required
115
+ * PatchSchedule: { // ClusterPatchSchedule
116
+ * NextPatchDate: new Date("TIMESTAMP"),
117
+ * },
118
+ * DeploymentConfig: {
119
+ * RollingUpdatePolicy: {
120
+ * MaximumBatchSize: {
121
+ * Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
122
+ * Value: Number("int"), // required
123
+ * },
124
+ * RollbackMaximumBatchSize: {
125
+ * Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
126
+ * Value: Number("int"), // required
127
+ * },
128
+ * },
129
+ * WaitIntervalInSeconds: Number("int"),
130
+ * AutoRollbackConfiguration: [
131
+ * {
132
+ * AlarmName: "STRING_VALUE", // required
133
+ * },
134
+ * ],
135
+ * },
136
+ * },
137
+ * ImageReleaseVersion: "STRING_VALUE",
113
138
  * KubernetesConfig: { // ClusterKubernetesConfig
114
139
  * Labels: { // ClusterKubernetesLabels
115
140
  * "<keys>": "STRING_VALUE",
@@ -182,10 +207,7 @@ declare const UpdateClusterCommand_base: {
182
207
  * Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
183
208
  * Value: Number("int"), // required
184
209
  * },
185
- * RollbackMaximumBatchSize: {
186
- * Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
187
- * Value: Number("int"), // required
188
- * },
210
+ * RollbackMaximumBatchSize: "<CapacitySizeConfig>",
189
211
  * },
190
212
  * WaitIntervalInSeconds: Number("int"),
191
213
  * AutoRollbackConfiguration: [
@@ -43,6 +43,7 @@ declare const UpdateClusterSoftwareCommand_base: {
43
43
  * InstanceGroups: [ // UpdateClusterSoftwareInstanceGroups
44
44
  * { // UpdateClusterSoftwareInstanceGroupSpecification
45
45
  * InstanceGroupName: "STRING_VALUE", // required
46
+ * ImageReleaseVersion: "STRING_VALUE",
46
47
  * },
47
48
  * ],
48
49
  * DeploymentConfig: { // DeploymentConfiguration
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { UpdateModelPackageInput, UpdateModelPackageOutput } from "../models/models_4";
3
+ import type { UpdateModelPackageInput } from "../models/models_4";
4
+ import type { UpdateModelPackageOutput } from "../models/models_5";
4
5
  import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { UpdateMonitoringAlertRequest, UpdateMonitoringAlertResponse } from "../models/models_4";
3
+ import type { UpdateMonitoringAlertRequest, UpdateMonitoringAlertResponse } from "../models/models_5";
4
4
  import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { UpdateMonitoringScheduleRequest } from "../models/models_4";
4
- import type { UpdateMonitoringScheduleResponse } from "../models/models_5";
3
+ import type { UpdateMonitoringScheduleRequest, UpdateMonitoringScheduleResponse } from "../models/models_5";
5
4
  import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -2245,6 +2245,18 @@ export declare const ClarifyTextLanguage: {
2245
2245
  * @public
2246
2246
  */
2247
2247
  export type ClarifyTextLanguage = (typeof ClarifyTextLanguage)[keyof typeof ClarifyTextLanguage];
2248
+ /**
2249
+ * @public
2250
+ * @enum
2251
+ */
2252
+ export declare const ClusterPatchingStrategy: {
2253
+ readonly WHEN_ALL_IDLE: "WhenAllIdle";
2254
+ readonly WHEN_IDLE: "WhenIdle";
2255
+ };
2256
+ /**
2257
+ * @public
2258
+ */
2259
+ export type ClusterPatchingStrategy = (typeof ClusterPatchingStrategy)[keyof typeof ClusterPatchingStrategy];
2248
2260
  /**
2249
2261
  * @public
2250
2262
  * @enum
@@ -2349,6 +2361,8 @@ export type ClusterFSxLustreDeletionPolicy = (typeof ClusterFSxLustreDeletionPol
2349
2361
  * @enum
2350
2362
  */
2351
2363
  export declare const ClusterImageVersionStatus: {
2364
+ readonly END_OF_LIFE: "EndOfLife";
2365
+ readonly SECURITY_UPDATE_REQUIRED: "SecurityUpdateRequired";
2352
2366
  readonly UPDATE_AVAILABLE: "UpdateAvailable";
2353
2367
  readonly UP_TO_DATE: "UpToDate";
2354
2368
  };
@@ -1,4 +1,4 @@
1
- import type { ActionStatus, ActiveClusterOperationName, AdditionalS3DataSourceDataType, AggregationTransformationValue, AIBenchmarkJobStatus, AICapacityReservationPreference, AIRecommendationInferenceFramework, AIRecommendationInstanceType, AIRecommendationJobStatus, AIRecommendationMetric, AIRecommendationOptimizationType, AlgorithmStatus, AppInstanceType, AppStatus, AppType, ArtifactSourceIdType, AssemblyType, AssociationEdgeType, AsyncNotificationTopicTypes, AthenaResultCompressionType, AthenaResultFormat, AutoMLAlgorithm, AutoMLChannelType, AutoMLJobObjectiveType, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLMetricEnum, AutoMLMetricExtendedEnum, AutoMLMode, AutoMLProcessingUnit, AutoMLS3DataType, AutotuneMode, BatchAddClusterNodesErrorCode, BatchDeleteClusterNodesErrorCode, BatchRebootClusterNodesErrorCode, BatchReplaceClusterNodesErrorCode, BatchStrategy, CandidateStatus, CandidateStepType, CapacityReservationType, CapacitySizeType, CaptureMode, ClarifyFeatureType, ClarifyTextGranularity, ClarifyTextLanguage, ClusterAutoScalerType, ClusterAutoScalingMode, ClusterAutoScalingStatus, ClusterCapacityType, ClusterConfigMode, ClusterEventLevel, ClusterEventResourceType, ClusterFSxLustreDeletionPolicy, ClusterImageVersionStatus, ClusterInstanceStatus, ClusterInstanceType, ClusterInterfaceType, ClusterKubernetesTaintEffect, ClusterSlurmConfigStrategy, ClusterSlurmNodeType, ClusterStatus, CompilationJobStatus, CompressionType, DataSourceName, DeepHealthCheckType, DetailedAlgorithmStatus, FeatureStatus, FileSystemAccessMode, FileSystemType, FillingType, InstanceGroupStatus, LifecycleManagement, MetricSetSource, MIGProfileType, ModelApprovalStatus, ModelCompressionType, ModelPackageRegistrationType, ModelPackageStatus, NodeUnavailabilityType, ObjectiveStatus, OutputCompressionType, PreemptTeamTasks, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, RecordWrapper, ResourceSharingStrategy, S3DataDistribution, S3DataType, S3ModelDataType, SchedulerResourceStatus, SoftwareUpdateStatus, SplitType, TargetDevice, TargetPlatformAccelerator, TargetPlatformArch, TargetPlatformOs, TrafficRoutingConfigType, TrainingInputMode, TrainingInstanceType, TrainingRepositoryAccessMode, TransformInstanceType, VolumeAttachmentStatus } from "./enums";
1
+ import type { ActionStatus, ActiveClusterOperationName, AdditionalS3DataSourceDataType, AggregationTransformationValue, AIBenchmarkJobStatus, AICapacityReservationPreference, AIRecommendationInferenceFramework, AIRecommendationInstanceType, AIRecommendationJobStatus, AIRecommendationMetric, AIRecommendationOptimizationType, AlgorithmStatus, AppInstanceType, AppStatus, AppType, ArtifactSourceIdType, AssemblyType, AssociationEdgeType, AsyncNotificationTopicTypes, AthenaResultCompressionType, AthenaResultFormat, AutoMLAlgorithm, AutoMLChannelType, AutoMLJobObjectiveType, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLMetricEnum, AutoMLMetricExtendedEnum, AutoMLMode, AutoMLProcessingUnit, AutoMLS3DataType, AutotuneMode, BatchAddClusterNodesErrorCode, BatchDeleteClusterNodesErrorCode, BatchRebootClusterNodesErrorCode, BatchReplaceClusterNodesErrorCode, BatchStrategy, CandidateStatus, CandidateStepType, CapacityReservationType, CapacitySizeType, CaptureMode, ClarifyFeatureType, ClarifyTextGranularity, ClarifyTextLanguage, ClusterAutoScalerType, ClusterAutoScalingMode, ClusterAutoScalingStatus, ClusterCapacityType, ClusterConfigMode, ClusterEventLevel, ClusterEventResourceType, ClusterFSxLustreDeletionPolicy, ClusterImageVersionStatus, ClusterInstanceStatus, ClusterInstanceType, ClusterInterfaceType, ClusterKubernetesTaintEffect, ClusterPatchingStrategy, ClusterSlurmConfigStrategy, ClusterSlurmNodeType, ClusterStatus, CompressionType, DataSourceName, DeepHealthCheckType, DetailedAlgorithmStatus, FeatureStatus, FileSystemAccessMode, FileSystemType, FillingType, InstanceGroupStatus, LifecycleManagement, MetricSetSource, MIGProfileType, ModelApprovalStatus, ModelCompressionType, ModelPackageRegistrationType, ModelPackageStatus, NodeUnavailabilityType, ObjectiveStatus, OutputCompressionType, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, RecordWrapper, S3DataDistribution, S3DataType, S3ModelDataType, SchedulerResourceStatus, SoftwareUpdateStatus, SplitType, TrafficRoutingConfigType, TrainingInputMode, TrainingInstanceType, TrainingRepositoryAccessMode, TransformInstanceType, VolumeAttachmentStatus } from "./enums";
2
2
  /**
3
3
  * <p>Configuration for allocating accelerator partitions.</p>
4
4
  * @public
@@ -5112,6 +5112,112 @@ export interface ClarifyExplainerConfig {
5112
5112
  */
5113
5113
  ShapConfig: ClarifyShapConfig | undefined;
5114
5114
  }
5115
+ /**
5116
+ * <p>The configurations that SageMaker uses when updating the AMI versions.</p>
5117
+ * @public
5118
+ */
5119
+ export interface RollingDeploymentPolicy {
5120
+ /**
5121
+ * <p>The maximum amount of instances in the cluster that SageMaker can update at a time.</p>
5122
+ * @public
5123
+ */
5124
+ MaximumBatchSize: CapacitySizeConfig | undefined;
5125
+ /**
5126
+ * <p>The maximum amount of instances in the cluster that SageMaker can roll back at a time.</p>
5127
+ * @public
5128
+ */
5129
+ RollbackMaximumBatchSize?: CapacitySizeConfig | undefined;
5130
+ }
5131
+ /**
5132
+ * <p>The configuration to use when updating the AMI versions.</p>
5133
+ * @public
5134
+ */
5135
+ export interface DeploymentConfiguration {
5136
+ /**
5137
+ * <p>The policy that SageMaker uses when updating the AMI versions of the cluster. </p>
5138
+ * @public
5139
+ */
5140
+ RollingUpdatePolicy?: RollingDeploymentPolicy | undefined;
5141
+ /**
5142
+ * <p>The duration in seconds that SageMaker waits before updating more instances in the cluster.</p>
5143
+ * @public
5144
+ */
5145
+ WaitIntervalInSeconds?: number | undefined;
5146
+ /**
5147
+ * <p>An array that contains the alarms that SageMaker monitors to know whether to roll back the AMI update.</p>
5148
+ * @public
5149
+ */
5150
+ AutoRollbackConfiguration?: AlarmDetails[] | undefined;
5151
+ }
5152
+ /**
5153
+ * <p>The schedule configuration for automatic patching.</p>
5154
+ * @public
5155
+ */
5156
+ export interface ClusterPatchSchedule {
5157
+ /**
5158
+ * <p>The date and time of the next scheduled automatic patch. The system sets this automatically when a patch is detected. Use this field to reschedule the patch to a different date.</p>
5159
+ * @public
5160
+ */
5161
+ NextPatchDate?: Date | undefined;
5162
+ }
5163
+ /**
5164
+ * <p>The configuration for automatic patching of the instance group. When configured, the system automatically applies security patch AMI updates to the instance group.</p>
5165
+ * @public
5166
+ */
5167
+ export interface ClusterAutoPatchConfig {
5168
+ /**
5169
+ * <p>The strategy for applying patches to instances in the group.</p>
5170
+ * @public
5171
+ */
5172
+ PatchingStrategy: ClusterPatchingStrategy | undefined;
5173
+ /**
5174
+ * <p>The schedule for automatic patching, including the next patch date.</p>
5175
+ * @public
5176
+ */
5177
+ PatchSchedule?: ClusterPatchSchedule | undefined;
5178
+ /**
5179
+ * <p>The deployment configuration for rolling patch updates, including rollback settings and batch sizes. Only applicable when using a rolling patching strategy.</p>
5180
+ * @public
5181
+ */
5182
+ DeploymentConfig?: DeploymentConfiguration | undefined;
5183
+ }
5184
+ /**
5185
+ * <p>The schedule details for automatic patching, including the next scheduled patch date.</p>
5186
+ * @public
5187
+ */
5188
+ export interface ClusterPatchScheduleDetails {
5189
+ /**
5190
+ * <p>The date and time of the next scheduled automatic patch.</p>
5191
+ * @public
5192
+ */
5193
+ NextPatchDate?: Date | undefined;
5194
+ }
5195
+ /**
5196
+ * <p>The auto-patching configuration details for the instance group, including the patching strategy and schedule.</p>
5197
+ * @public
5198
+ */
5199
+ export interface ClusterAutoPatchConfigDetails {
5200
+ /**
5201
+ * <p>The strategy used for applying patches to instances in the group.</p>
5202
+ * @public
5203
+ */
5204
+ PatchingStrategy?: ClusterPatchingStrategy | undefined;
5205
+ /**
5206
+ * <p>The currently active patch schedule that the system will execute.</p>
5207
+ * @public
5208
+ */
5209
+ CurrentPatchSchedule?: ClusterPatchScheduleDetails | undefined;
5210
+ /**
5211
+ * <p>The requested patch schedule. Differs from CurrentPatchSchedule when a reschedule request is pending.</p>
5212
+ * @public
5213
+ */
5214
+ DesiredPatchSchedule?: ClusterPatchScheduleDetails | undefined;
5215
+ /**
5216
+ * <p>The deployment configuration for rolling patch updates.</p>
5217
+ * @public
5218
+ */
5219
+ DeploymentConfig?: DeploymentConfiguration | undefined;
5220
+ }
5115
5221
  /**
5116
5222
  * <p>Specifies the autoscaling configuration for a HyperPod cluster.</p>
5117
5223
  * @public
@@ -5573,43 +5679,6 @@ export interface ClusterFsxOpenZfsConfig {
5573
5679
  */
5574
5680
  MountPath?: string | undefined;
5575
5681
  }
5576
- /**
5577
- * <p>The configurations that SageMaker uses when updating the AMI versions.</p>
5578
- * @public
5579
- */
5580
- export interface RollingDeploymentPolicy {
5581
- /**
5582
- * <p>The maximum amount of instances in the cluster that SageMaker can update at a time.</p>
5583
- * @public
5584
- */
5585
- MaximumBatchSize: CapacitySizeConfig | undefined;
5586
- /**
5587
- * <p>The maximum amount of instances in the cluster that SageMaker can roll back at a time.</p>
5588
- * @public
5589
- */
5590
- RollbackMaximumBatchSize?: CapacitySizeConfig | undefined;
5591
- }
5592
- /**
5593
- * <p>The configuration to use when updating the AMI versions.</p>
5594
- * @public
5595
- */
5596
- export interface DeploymentConfiguration {
5597
- /**
5598
- * <p>The policy that SageMaker uses when updating the AMI versions of the cluster. </p>
5599
- * @public
5600
- */
5601
- RollingUpdatePolicy?: RollingDeploymentPolicy | undefined;
5602
- /**
5603
- * <p>The duration in seconds that SageMaker waits before updating more instances in the cluster.</p>
5604
- * @public
5605
- */
5606
- WaitIntervalInSeconds?: number | undefined;
5607
- /**
5608
- * <p>An array that contains the alarms that SageMaker monitors to know whether to roll back the AMI update.</p>
5609
- * @public
5610
- */
5611
- AutoRollbackConfiguration?: AlarmDetails[] | undefined;
5612
- }
5613
5682
  /**
5614
5683
  * <p>The instance requirement details for a flexible instance group, including the current and desired instance types.</p>
5615
5684
  * @public
@@ -5907,6 +5976,11 @@ export interface ClusterInstanceGroupDetails {
5907
5976
  * @public
5908
5977
  */
5909
5978
  ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
5979
+ /**
5980
+ * <p>The auto-patching configuration for the instance group, including the current patching strategy and next scheduled patch date.</p>
5981
+ * @public
5982
+ */
5983
+ AutoPatchConfig?: ClusterAutoPatchConfigDetails | undefined;
5910
5984
  /**
5911
5985
  * <p>The ID of the Amazon Machine Image (AMI) currently in use by the instance group.</p>
5912
5986
  * @public
@@ -5917,6 +5991,16 @@ export interface ClusterInstanceGroupDetails {
5917
5991
  * @public
5918
5992
  */
5919
5993
  DesiredImageId?: string | undefined;
5994
+ /**
5995
+ * <p>The version of the HyperPod-managed AMI currently running on the instance group.</p>
5996
+ * @public
5997
+ */
5998
+ CurrentImageReleaseVersion?: string | undefined;
5999
+ /**
6000
+ * <p>The desired version of the HyperPod-managed AMI for the instance group. This may differ from the current version when an update is pending.</p>
6001
+ * @public
6002
+ */
6003
+ DesiredImageReleaseVersion?: string | undefined;
5920
6004
  /**
5921
6005
  * <p>The status of the image version for the instance group. Indicates whether the instance group is running the latest image version or if an update is available.</p>
5922
6006
  * @public
@@ -6092,6 +6176,16 @@ export interface ClusterInstanceGroupSpecification {
6092
6176
  * @public
6093
6177
  */
6094
6178
  ImageId?: string | undefined;
6179
+ /**
6180
+ * <p>The configuration for automatic OS security patching. If present, the system automatically applies PATCH AMI updates to this instance group.</p>
6181
+ * @public
6182
+ */
6183
+ AutoPatchConfig?: ClusterAutoPatchConfig | undefined;
6184
+ /**
6185
+ * <p>The version of the HyperPod-managed AMI to use for the instance group. Uses semantic versioning in the format <code>MAJOR.MINOR.PATCH</code> (for example, <code>1.2.3</code>). If omitted, the latest available version is used.</p>
6186
+ * @public
6187
+ */
6188
+ ImageReleaseVersion?: string | undefined;
6095
6189
  /**
6096
6190
  * <p>Specifies the Kubernetes configuration for the instance group. You describe what you want the labels and taints to look like, and the cluster works to reconcile the actual state with the declared state for nodes in this instance group. </p>
6097
6191
  * @public
@@ -6277,6 +6371,16 @@ export interface ClusterNodeDetails {
6277
6371
  * @public
6278
6372
  */
6279
6373
  DesiredImageId?: string | undefined;
6374
+ /**
6375
+ * <p>The version of the HyperPod-managed AMI currently running on the node.</p>
6376
+ * @public
6377
+ */
6378
+ CurrentImageReleaseVersion?: string | undefined;
6379
+ /**
6380
+ * <p>The desired version of the HyperPod-managed AMI for the node. This may differ from the current version when an update is pending.</p>
6381
+ * @public
6382
+ */
6383
+ DesiredImageReleaseVersion?: string | undefined;
6280
6384
  /**
6281
6385
  * <p>The status of the image version for the cluster node.</p>
6282
6386
  * @public
@@ -6353,6 +6457,11 @@ export interface ClusterNodeSummary {
6353
6457
  * @public
6354
6458
  */
6355
6459
  PrivateDnsHostname?: string | undefined;
6460
+ /**
6461
+ * <p>The version of the HyperPod-managed AMI currently running on the node.</p>
6462
+ * @public
6463
+ */
6464
+ CurrentImageReleaseVersion?: string | undefined;
6356
6465
  /**
6357
6466
  * <p>The status of the image version for the cluster node.</p>
6358
6467
  * @public
@@ -6717,6 +6826,11 @@ export interface ClusterSummary {
6717
6826
  * @public
6718
6827
  */
6719
6828
  TrainingPlanArns?: string[] | undefined;
6829
+ /**
6830
+ * <p>The aggregate status of the image version across the cluster's instance groups.</p>
6831
+ * @public
6832
+ */
6833
+ ImageVersionStatus?: ClusterImageVersionStatus | undefined;
6720
6834
  }
6721
6835
  /**
6722
6836
  * <p>Defines the configuration for managed tier checkpointing in a HyperPod cluster. Managed tier checkpointing uses multiple storage tiers, including cluster CPU memory, to provide faster checkpoint operations and improved fault tolerance for large-scale model training. The system automatically saves checkpoints at high frequency to memory and periodically persists them to durable storage, like Amazon S3.</p>
@@ -6930,122 +7044,3 @@ export declare namespace CollectionConfig {
6930
7044
  _: (name: string, value: any) => T;
6931
7045
  }
6932
7046
  }
6933
- /**
6934
- * <p>Configuration information for the Amazon SageMaker Debugger output tensor collections.</p>
6935
- * @public
6936
- */
6937
- export interface CollectionConfiguration {
6938
- /**
6939
- * <p>The name of the tensor collection. The name must be unique relative to other rule configuration names.</p>
6940
- * @public
6941
- */
6942
- CollectionName?: string | undefined;
6943
- /**
6944
- * <p>Parameter values for the tensor collection. The allowed parameters are <code>"name"</code>, <code>"include_regex"</code>, <code>"reduction_config"</code>, <code>"save_config"</code>, <code>"tensor_names"</code>, and <code>"save_histogram"</code>.</p>
6945
- * @public
6946
- */
6947
- CollectionParameters?: Record<string, string> | undefined;
6948
- }
6949
- /**
6950
- * <p>A summary of a model compilation job.</p>
6951
- * @public
6952
- */
6953
- export interface CompilationJobSummary {
6954
- /**
6955
- * <p>The name of the model compilation job that you want a summary for.</p>
6956
- * @public
6957
- */
6958
- CompilationJobName: string | undefined;
6959
- /**
6960
- * <p>The Amazon Resource Name (ARN) of the model compilation job.</p>
6961
- * @public
6962
- */
6963
- CompilationJobArn: string | undefined;
6964
- /**
6965
- * <p>The time when the model compilation job was created.</p>
6966
- * @public
6967
- */
6968
- CreationTime: Date | undefined;
6969
- /**
6970
- * <p>The time when the model compilation job started.</p>
6971
- * @public
6972
- */
6973
- CompilationStartTime?: Date | undefined;
6974
- /**
6975
- * <p>The time when the model compilation job completed.</p>
6976
- * @public
6977
- */
6978
- CompilationEndTime?: Date | undefined;
6979
- /**
6980
- * <p>The type of device that the model will run on after the compilation job has completed.</p>
6981
- * @public
6982
- */
6983
- CompilationTargetDevice?: TargetDevice | undefined;
6984
- /**
6985
- * <p>The type of OS that the model will run on after the compilation job has completed.</p>
6986
- * @public
6987
- */
6988
- CompilationTargetPlatformOs?: TargetPlatformOs | undefined;
6989
- /**
6990
- * <p>The type of architecture that the model will run on after the compilation job has completed.</p>
6991
- * @public
6992
- */
6993
- CompilationTargetPlatformArch?: TargetPlatformArch | undefined;
6994
- /**
6995
- * <p>The type of accelerator that the model will run on after the compilation job has completed.</p>
6996
- * @public
6997
- */
6998
- CompilationTargetPlatformAccelerator?: TargetPlatformAccelerator | undefined;
6999
- /**
7000
- * <p>The time when the model compilation job was last modified.</p>
7001
- * @public
7002
- */
7003
- LastModifiedTime?: Date | undefined;
7004
- /**
7005
- * <p>The status of the model compilation job.</p>
7006
- * @public
7007
- */
7008
- CompilationJobStatus: CompilationJobStatus | undefined;
7009
- }
7010
- /**
7011
- * <p>Resource sharing configuration.</p>
7012
- * @public
7013
- */
7014
- export interface ResourceSharingConfig {
7015
- /**
7016
- * <p>The strategy of how idle compute is shared within the cluster. The following are the options of strategies.</p> <ul> <li> <p> <code>DontLend</code>: entities do not lend idle compute.</p> </li> <li> <p> <code>Lend</code>: entities can lend idle compute to entities that can borrow.</p> </li> <li> <p> <code>LendandBorrow</code>: entities can lend idle compute and borrow idle compute from other entities.</p> </li> </ul> <p>Default is <code>LendandBorrow</code>.</p>
7017
- * @public
7018
- */
7019
- Strategy: ResourceSharingStrategy | undefined;
7020
- /**
7021
- * <p>The limit on how much idle compute can be borrowed.The values can be 1 - 500 percent of idle compute that the team is allowed to borrow.</p> <p>Default is <code>50</code>.</p>
7022
- * @public
7023
- */
7024
- BorrowLimit?: number | undefined;
7025
- /**
7026
- * <p>The absolute limits on compute resources that can be borrowed from idle compute. When specified, these limits define the maximum amount of specific resource types (such as accelerators, vCPU, or memory) that an entity can borrow, regardless of the percentage-based <code>BorrowLimit</code>.</p>
7027
- * @public
7028
- */
7029
- AbsoluteBorrowLimits?: ComputeQuotaResourceConfig[] | undefined;
7030
- }
7031
- /**
7032
- * <p>Configuration of the compute allocation definition for an entity. This includes the resource sharing option and the setting to preempt low priority tasks.</p>
7033
- * @public
7034
- */
7035
- export interface ComputeQuotaConfig {
7036
- /**
7037
- * <p>Allocate compute resources by instance types.</p>
7038
- * @public
7039
- */
7040
- ComputeQuotaResources?: ComputeQuotaResourceConfig[] | undefined;
7041
- /**
7042
- * <p>Resource sharing configuration. This defines how an entity can lend and borrow idle compute with other entities within the cluster.</p>
7043
- * @public
7044
- */
7045
- ResourceSharingConfig?: ResourceSharingConfig | undefined;
7046
- /**
7047
- * <p>Allows workloads from within an entity to preempt same-team workloads. When set to <code>LowerPriority</code>, the entity's lower priority tasks are preempted by their own higher priority tasks.</p> <p>Default is <code>LowerPriority</code>.</p>
7048
- * @public
7049
- */
7050
- PreemptTeamTasks?: PreemptTeamTasks | undefined;
7051
- }