aws-sdk-sagemaker 1.374.0 → 1.375.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +71 -4
- data/lib/aws-sdk-sagemaker/client_api.rb +33 -0
- data/lib/aws-sdk-sagemaker/types.rb +157 -2
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/params.rbs +10 -0
- data/sig/types.rbs +38 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b8f4ef31ab0e9d8d9aa631a8374f1da30fdfcf4859aa9d2fbaa1957041e67f33
|
|
4
|
+
data.tar.gz: be9d18723dfc49d3aa2dd0034ef260185877e0ea71be8f89dd0568f4a12275c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9db58289bd8b0d3c5b0b5ec45a57dac43350340f4b2241d148e1e72cd1d169e41aff09a65ac53c4ff9e31e755f884432e47d29b8c9c2fe285ee5bd8fd55db208
|
|
7
|
+
data.tar.gz: ca721af612b442ad7f7e04f2a48980888f79129255bc2c9bfde67d74363ce26dfd112291daf78c4d23f8b01796a210c4dcdde5911e8ef8d0478dd72e7346c217
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.375.0 (2026-06-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for automatic AMI patching on HyperPod clusters. Customers can configure patching strategies to automatically apply security patch with zero job termination. Customers can also specify an AMI version at instance group level and update cluster software to a certain AMI version.
|
|
8
|
+
|
|
4
9
|
1.374.0 (2026-06-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.375.0
|
|
@@ -2846,6 +2846,31 @@ module Aws::SageMaker
|
|
|
2846
2846
|
# },
|
|
2847
2847
|
# },
|
|
2848
2848
|
# image_id: "ImageId",
|
|
2849
|
+
# auto_patch_config: {
|
|
2850
|
+
# patching_strategy: "WhenIdle", # required, accepts WhenIdle, WhenAllIdle
|
|
2851
|
+
# patch_schedule: {
|
|
2852
|
+
# next_patch_date: Time.now,
|
|
2853
|
+
# },
|
|
2854
|
+
# deployment_config: {
|
|
2855
|
+
# rolling_update_policy: {
|
|
2856
|
+
# maximum_batch_size: { # required
|
|
2857
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
|
2858
|
+
# value: 1, # required
|
|
2859
|
+
# },
|
|
2860
|
+
# rollback_maximum_batch_size: {
|
|
2861
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
|
2862
|
+
# value: 1, # required
|
|
2863
|
+
# },
|
|
2864
|
+
# },
|
|
2865
|
+
# wait_interval_in_seconds: 1,
|
|
2866
|
+
# auto_rollback_configuration: [
|
|
2867
|
+
# {
|
|
2868
|
+
# alarm_name: "AlarmName", # required
|
|
2869
|
+
# },
|
|
2870
|
+
# ],
|
|
2871
|
+
# },
|
|
2872
|
+
# },
|
|
2873
|
+
# image_release_version: "ImageReleaseVersion",
|
|
2849
2874
|
# kubernetes_config: {
|
|
2850
2875
|
# labels: {
|
|
2851
2876
|
# "ClusterKubernetesLabelKey" => "ClusterKubernetesLabelValue",
|
|
@@ -14968,9 +14993,21 @@ module Aws::SageMaker
|
|
|
14968
14993
|
# resp.instance_groups[0].scheduled_update_config.deployment_config.wait_interval_in_seconds #=> Integer
|
|
14969
14994
|
# resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration #=> Array
|
|
14970
14995
|
# resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration[0].alarm_name #=> String
|
|
14996
|
+
# resp.instance_groups[0].auto_patch_config.patching_strategy #=> String, one of "WhenIdle", "WhenAllIdle"
|
|
14997
|
+
# resp.instance_groups[0].auto_patch_config.current_patch_schedule.next_patch_date #=> Time
|
|
14998
|
+
# resp.instance_groups[0].auto_patch_config.desired_patch_schedule.next_patch_date #=> Time
|
|
14999
|
+
# resp.instance_groups[0].auto_patch_config.deployment_config.rolling_update_policy.maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
|
|
15000
|
+
# resp.instance_groups[0].auto_patch_config.deployment_config.rolling_update_policy.maximum_batch_size.value #=> Integer
|
|
15001
|
+
# resp.instance_groups[0].auto_patch_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
|
|
15002
|
+
# resp.instance_groups[0].auto_patch_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.value #=> Integer
|
|
15003
|
+
# resp.instance_groups[0].auto_patch_config.deployment_config.wait_interval_in_seconds #=> Integer
|
|
15004
|
+
# resp.instance_groups[0].auto_patch_config.deployment_config.auto_rollback_configuration #=> Array
|
|
15005
|
+
# resp.instance_groups[0].auto_patch_config.deployment_config.auto_rollback_configuration[0].alarm_name #=> String
|
|
14971
15006
|
# resp.instance_groups[0].current_image_id #=> String
|
|
14972
15007
|
# resp.instance_groups[0].desired_image_id #=> String
|
|
14973
|
-
# resp.instance_groups[0].
|
|
15008
|
+
# resp.instance_groups[0].current_image_release_version #=> String
|
|
15009
|
+
# resp.instance_groups[0].desired_image_release_version #=> String
|
|
15010
|
+
# resp.instance_groups[0].image_version_status #=> String, one of "UpToDate", "UpdateAvailable", "SecurityUpdateRequired", "EndOfLife"
|
|
14974
15011
|
# resp.instance_groups[0].active_operations #=> Hash
|
|
14975
15012
|
# resp.instance_groups[0].active_operations["ActiveClusterOperationName"] #=> Integer
|
|
14976
15013
|
# resp.instance_groups[0].kubernetes_config.current_labels #=> Hash
|
|
@@ -15199,7 +15236,9 @@ module Aws::SageMaker
|
|
|
15199
15236
|
# resp.node_details.placement.availability_zone_id #=> String
|
|
15200
15237
|
# resp.node_details.current_image_id #=> String
|
|
15201
15238
|
# resp.node_details.desired_image_id #=> String
|
|
15202
|
-
# resp.node_details.
|
|
15239
|
+
# resp.node_details.current_image_release_version #=> String
|
|
15240
|
+
# resp.node_details.desired_image_release_version #=> String
|
|
15241
|
+
# resp.node_details.image_version_status #=> String, one of "UpToDate", "UpdateAvailable", "SecurityUpdateRequired", "EndOfLife"
|
|
15203
15242
|
# resp.node_details.ultra_server_info.id #=> String
|
|
15204
15243
|
# resp.node_details.ultra_server_info.type #=> String
|
|
15205
15244
|
# resp.node_details.kubernetes_config.current_labels #=> Hash
|
|
@@ -22669,7 +22708,8 @@ module Aws::SageMaker
|
|
|
22669
22708
|
# resp.cluster_node_summaries[0].ultra_server_info.id #=> String
|
|
22670
22709
|
# resp.cluster_node_summaries[0].ultra_server_info.type #=> String
|
|
22671
22710
|
# resp.cluster_node_summaries[0].private_dns_hostname #=> String
|
|
22672
|
-
# resp.cluster_node_summaries[0].
|
|
22711
|
+
# resp.cluster_node_summaries[0].current_image_release_version #=> String
|
|
22712
|
+
# resp.cluster_node_summaries[0].image_version_status #=> String, one of "UpToDate", "UpdateAvailable", "SecurityUpdateRequired", "EndOfLife"
|
|
22673
22713
|
#
|
|
22674
22714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodes AWS API Documentation
|
|
22675
22715
|
#
|
|
@@ -22867,6 +22907,7 @@ module Aws::SageMaker
|
|
|
22867
22907
|
# resp.cluster_summaries[0].cluster_status #=> String, one of "Creating", "Deleting", "Failed", "InService", "RollingBack", "SystemUpdating", "Updating"
|
|
22868
22908
|
# resp.cluster_summaries[0].training_plan_arns #=> Array
|
|
22869
22909
|
# resp.cluster_summaries[0].training_plan_arns[0] #=> String
|
|
22910
|
+
# resp.cluster_summaries[0].image_version_status #=> String, one of "UpToDate", "UpdateAvailable", "SecurityUpdateRequired", "EndOfLife"
|
|
22870
22911
|
#
|
|
22871
22912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusters AWS API Documentation
|
|
22872
22913
|
#
|
|
@@ -30410,6 +30451,31 @@ module Aws::SageMaker
|
|
|
30410
30451
|
# },
|
|
30411
30452
|
# },
|
|
30412
30453
|
# image_id: "ImageId",
|
|
30454
|
+
# auto_patch_config: {
|
|
30455
|
+
# patching_strategy: "WhenIdle", # required, accepts WhenIdle, WhenAllIdle
|
|
30456
|
+
# patch_schedule: {
|
|
30457
|
+
# next_patch_date: Time.now,
|
|
30458
|
+
# },
|
|
30459
|
+
# deployment_config: {
|
|
30460
|
+
# rolling_update_policy: {
|
|
30461
|
+
# maximum_batch_size: { # required
|
|
30462
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
|
30463
|
+
# value: 1, # required
|
|
30464
|
+
# },
|
|
30465
|
+
# rollback_maximum_batch_size: {
|
|
30466
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
|
30467
|
+
# value: 1, # required
|
|
30468
|
+
# },
|
|
30469
|
+
# },
|
|
30470
|
+
# wait_interval_in_seconds: 1,
|
|
30471
|
+
# auto_rollback_configuration: [
|
|
30472
|
+
# {
|
|
30473
|
+
# alarm_name: "AlarmName", # required
|
|
30474
|
+
# },
|
|
30475
|
+
# ],
|
|
30476
|
+
# },
|
|
30477
|
+
# },
|
|
30478
|
+
# image_release_version: "ImageReleaseVersion",
|
|
30413
30479
|
# kubernetes_config: {
|
|
30414
30480
|
# labels: {
|
|
30415
30481
|
# "ClusterKubernetesLabelKey" => "ClusterKubernetesLabelValue",
|
|
@@ -30653,6 +30719,7 @@ module Aws::SageMaker
|
|
|
30653
30719
|
# instance_groups: [
|
|
30654
30720
|
# {
|
|
30655
30721
|
# instance_group_name: "ClusterInstanceGroupName", # required
|
|
30722
|
+
# image_release_version: "ImageReleaseVersion",
|
|
30656
30723
|
# },
|
|
30657
30724
|
# ],
|
|
30658
30725
|
# deployment_config: {
|
|
@@ -34439,7 +34506,7 @@ module Aws::SageMaker
|
|
|
34439
34506
|
tracer: tracer
|
|
34440
34507
|
)
|
|
34441
34508
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
34442
|
-
context[:gem_version] = '1.
|
|
34509
|
+
context[:gem_version] = '1.375.0'
|
|
34443
34510
|
Seahorse::Client::Request.new(handlers, context)
|
|
34444
34511
|
end
|
|
34445
34512
|
|
|
@@ -418,6 +418,8 @@ module Aws::SageMaker
|
|
|
418
418
|
ClientSecret = Shapes::StringShape.new(name: 'ClientSecret')
|
|
419
419
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
420
420
|
ClusterArn = Shapes::StringShape.new(name: 'ClusterArn')
|
|
421
|
+
ClusterAutoPatchConfig = Shapes::StructureShape.new(name: 'ClusterAutoPatchConfig')
|
|
422
|
+
ClusterAutoPatchConfigDetails = Shapes::StructureShape.new(name: 'ClusterAutoPatchConfigDetails')
|
|
421
423
|
ClusterAutoScalerType = Shapes::StringShape.new(name: 'ClusterAutoScalerType')
|
|
422
424
|
ClusterAutoScalingConfig = Shapes::StructureShape.new(name: 'ClusterAutoScalingConfig')
|
|
423
425
|
ClusterAutoScalingConfigOutput = Shapes::StructureShape.new(name: 'ClusterAutoScalingConfigOutput')
|
|
@@ -498,6 +500,9 @@ module Aws::SageMaker
|
|
|
498
500
|
ClusterOrchestratorSlurmConfig = Shapes::StructureShape.new(name: 'ClusterOrchestratorSlurmConfig')
|
|
499
501
|
ClusterPartitionName = Shapes::StringShape.new(name: 'ClusterPartitionName')
|
|
500
502
|
ClusterPartitionNames = Shapes::ListShape.new(name: 'ClusterPartitionNames')
|
|
503
|
+
ClusterPatchSchedule = Shapes::StructureShape.new(name: 'ClusterPatchSchedule')
|
|
504
|
+
ClusterPatchScheduleDetails = Shapes::StructureShape.new(name: 'ClusterPatchScheduleDetails')
|
|
505
|
+
ClusterPatchingStrategy = Shapes::StringShape.new(name: 'ClusterPatchingStrategy')
|
|
501
506
|
ClusterPrivateDnsHostname = Shapes::StringShape.new(name: 'ClusterPrivateDnsHostname')
|
|
502
507
|
ClusterPrivatePrimaryIp = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIp')
|
|
503
508
|
ClusterPrivatePrimaryIpv6 = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIpv6')
|
|
@@ -1431,6 +1436,7 @@ module Aws::SageMaker
|
|
|
1431
1436
|
ImageId = Shapes::StringShape.new(name: 'ImageId')
|
|
1432
1437
|
ImageName = Shapes::StringShape.new(name: 'ImageName')
|
|
1433
1438
|
ImageNameContains = Shapes::StringShape.new(name: 'ImageNameContains')
|
|
1439
|
+
ImageReleaseVersion = Shapes::StringShape.new(name: 'ImageReleaseVersion')
|
|
1434
1440
|
ImageSortBy = Shapes::StringShape.new(name: 'ImageSortBy')
|
|
1435
1441
|
ImageSortOrder = Shapes::StringShape.new(name: 'ImageSortOrder')
|
|
1436
1442
|
ImageStatus = Shapes::StringShape.new(name: 'ImageStatus')
|
|
@@ -4014,6 +4020,17 @@ module Aws::SageMaker
|
|
|
4014
4020
|
ClarifyTextConfig.add_member(:granularity, Shapes::ShapeRef.new(shape: ClarifyTextGranularity, required: true, location_name: "Granularity"))
|
|
4015
4021
|
ClarifyTextConfig.struct_class = Types::ClarifyTextConfig
|
|
4016
4022
|
|
|
4023
|
+
ClusterAutoPatchConfig.add_member(:patching_strategy, Shapes::ShapeRef.new(shape: ClusterPatchingStrategy, required: true, location_name: "PatchingStrategy"))
|
|
4024
|
+
ClusterAutoPatchConfig.add_member(:patch_schedule, Shapes::ShapeRef.new(shape: ClusterPatchSchedule, location_name: "PatchSchedule"))
|
|
4025
|
+
ClusterAutoPatchConfig.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfiguration, location_name: "DeploymentConfig"))
|
|
4026
|
+
ClusterAutoPatchConfig.struct_class = Types::ClusterAutoPatchConfig
|
|
4027
|
+
|
|
4028
|
+
ClusterAutoPatchConfigDetails.add_member(:patching_strategy, Shapes::ShapeRef.new(shape: ClusterPatchingStrategy, location_name: "PatchingStrategy"))
|
|
4029
|
+
ClusterAutoPatchConfigDetails.add_member(:current_patch_schedule, Shapes::ShapeRef.new(shape: ClusterPatchScheduleDetails, location_name: "CurrentPatchSchedule"))
|
|
4030
|
+
ClusterAutoPatchConfigDetails.add_member(:desired_patch_schedule, Shapes::ShapeRef.new(shape: ClusterPatchScheduleDetails, location_name: "DesiredPatchSchedule"))
|
|
4031
|
+
ClusterAutoPatchConfigDetails.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfiguration, location_name: "DeploymentConfig"))
|
|
4032
|
+
ClusterAutoPatchConfigDetails.struct_class = Types::ClusterAutoPatchConfigDetails
|
|
4033
|
+
|
|
4017
4034
|
ClusterAutoScalingConfig.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterAutoScalingMode, required: true, location_name: "Mode"))
|
|
4018
4035
|
ClusterAutoScalingConfig.add_member(:auto_scaler_type, Shapes::ShapeRef.new(shape: ClusterAutoScalerType, location_name: "AutoScalerType"))
|
|
4019
4036
|
ClusterAutoScalingConfig.struct_class = Types::ClusterAutoScalingConfig
|
|
@@ -4086,8 +4103,11 @@ module Aws::SageMaker
|
|
|
4086
4103
|
ClusterInstanceGroupDetails.add_member(:training_plan_status, Shapes::ShapeRef.new(shape: InstanceGroupTrainingPlanStatus, location_name: "TrainingPlanStatus"))
|
|
4087
4104
|
ClusterInstanceGroupDetails.add_member(:override_vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "OverrideVpcConfig"))
|
|
4088
4105
|
ClusterInstanceGroupDetails.add_member(:scheduled_update_config, Shapes::ShapeRef.new(shape: ScheduledUpdateConfig, location_name: "ScheduledUpdateConfig"))
|
|
4106
|
+
ClusterInstanceGroupDetails.add_member(:auto_patch_config, Shapes::ShapeRef.new(shape: ClusterAutoPatchConfigDetails, location_name: "AutoPatchConfig"))
|
|
4089
4107
|
ClusterInstanceGroupDetails.add_member(:current_image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "CurrentImageId"))
|
|
4090
4108
|
ClusterInstanceGroupDetails.add_member(:desired_image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "DesiredImageId"))
|
|
4109
|
+
ClusterInstanceGroupDetails.add_member(:current_image_release_version, Shapes::ShapeRef.new(shape: ImageReleaseVersion, location_name: "CurrentImageReleaseVersion"))
|
|
4110
|
+
ClusterInstanceGroupDetails.add_member(:desired_image_release_version, Shapes::ShapeRef.new(shape: ImageReleaseVersion, location_name: "DesiredImageReleaseVersion"))
|
|
4091
4111
|
ClusterInstanceGroupDetails.add_member(:image_version_status, Shapes::ShapeRef.new(shape: ClusterImageVersionStatus, location_name: "ImageVersionStatus"))
|
|
4092
4112
|
ClusterInstanceGroupDetails.add_member(:active_operations, Shapes::ShapeRef.new(shape: ActiveOperations, location_name: "ActiveOperations"))
|
|
4093
4113
|
ClusterInstanceGroupDetails.add_member(:kubernetes_config, Shapes::ShapeRef.new(shape: ClusterKubernetesConfigDetails, location_name: "KubernetesConfig"))
|
|
@@ -4115,6 +4135,8 @@ module Aws::SageMaker
|
|
|
4115
4135
|
ClusterInstanceGroupSpecification.add_member(:override_vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "OverrideVpcConfig"))
|
|
4116
4136
|
ClusterInstanceGroupSpecification.add_member(:scheduled_update_config, Shapes::ShapeRef.new(shape: ScheduledUpdateConfig, location_name: "ScheduledUpdateConfig"))
|
|
4117
4137
|
ClusterInstanceGroupSpecification.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
|
|
4138
|
+
ClusterInstanceGroupSpecification.add_member(:auto_patch_config, Shapes::ShapeRef.new(shape: ClusterAutoPatchConfig, location_name: "AutoPatchConfig"))
|
|
4139
|
+
ClusterInstanceGroupSpecification.add_member(:image_release_version, Shapes::ShapeRef.new(shape: ImageReleaseVersion, location_name: "ImageReleaseVersion"))
|
|
4118
4140
|
ClusterInstanceGroupSpecification.add_member(:kubernetes_config, Shapes::ShapeRef.new(shape: ClusterKubernetesConfig, location_name: "KubernetesConfig"))
|
|
4119
4141
|
ClusterInstanceGroupSpecification.add_member(:slurm_config, Shapes::ShapeRef.new(shape: ClusterSlurmConfig, location_name: "SlurmConfig"))
|
|
4120
4142
|
ClusterInstanceGroupSpecification.add_member(:capacity_requirements, Shapes::ShapeRef.new(shape: ClusterCapacityRequirements, location_name: "CapacityRequirements"))
|
|
@@ -4220,6 +4242,8 @@ module Aws::SageMaker
|
|
|
4220
4242
|
ClusterNodeDetails.add_member(:placement, Shapes::ShapeRef.new(shape: ClusterInstancePlacement, location_name: "Placement"))
|
|
4221
4243
|
ClusterNodeDetails.add_member(:current_image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "CurrentImageId"))
|
|
4222
4244
|
ClusterNodeDetails.add_member(:desired_image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "DesiredImageId"))
|
|
4245
|
+
ClusterNodeDetails.add_member(:current_image_release_version, Shapes::ShapeRef.new(shape: ImageReleaseVersion, location_name: "CurrentImageReleaseVersion"))
|
|
4246
|
+
ClusterNodeDetails.add_member(:desired_image_release_version, Shapes::ShapeRef.new(shape: ImageReleaseVersion, location_name: "DesiredImageReleaseVersion"))
|
|
4223
4247
|
ClusterNodeDetails.add_member(:image_version_status, Shapes::ShapeRef.new(shape: ClusterImageVersionStatus, location_name: "ImageVersionStatus"))
|
|
4224
4248
|
ClusterNodeDetails.add_member(:ultra_server_info, Shapes::ShapeRef.new(shape: UltraServerInfo, location_name: "UltraServerInfo"))
|
|
4225
4249
|
ClusterNodeDetails.add_member(:kubernetes_config, Shapes::ShapeRef.new(shape: ClusterKubernetesConfigNodeDetails, location_name: "KubernetesConfig"))
|
|
@@ -4242,6 +4266,7 @@ module Aws::SageMaker
|
|
|
4242
4266
|
ClusterNodeSummary.add_member(:instance_status, Shapes::ShapeRef.new(shape: ClusterInstanceStatusDetails, required: true, location_name: "InstanceStatus"))
|
|
4243
4267
|
ClusterNodeSummary.add_member(:ultra_server_info, Shapes::ShapeRef.new(shape: UltraServerInfo, location_name: "UltraServerInfo"))
|
|
4244
4268
|
ClusterNodeSummary.add_member(:private_dns_hostname, Shapes::ShapeRef.new(shape: ClusterPrivateDnsHostname, location_name: "PrivateDnsHostname"))
|
|
4269
|
+
ClusterNodeSummary.add_member(:current_image_release_version, Shapes::ShapeRef.new(shape: ImageReleaseVersion, location_name: "CurrentImageReleaseVersion"))
|
|
4245
4270
|
ClusterNodeSummary.add_member(:image_version_status, Shapes::ShapeRef.new(shape: ClusterImageVersionStatus, location_name: "ImageVersionStatus"))
|
|
4246
4271
|
ClusterNodeSummary.struct_class = Types::ClusterNodeSummary
|
|
4247
4272
|
|
|
@@ -4259,6 +4284,12 @@ module Aws::SageMaker
|
|
|
4259
4284
|
|
|
4260
4285
|
ClusterPartitionNames.member = Shapes::ShapeRef.new(shape: ClusterPartitionName)
|
|
4261
4286
|
|
|
4287
|
+
ClusterPatchSchedule.add_member(:next_patch_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "NextPatchDate"))
|
|
4288
|
+
ClusterPatchSchedule.struct_class = Types::ClusterPatchSchedule
|
|
4289
|
+
|
|
4290
|
+
ClusterPatchScheduleDetails.add_member(:next_patch_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "NextPatchDate"))
|
|
4291
|
+
ClusterPatchScheduleDetails.struct_class = Types::ClusterPatchScheduleDetails
|
|
4292
|
+
|
|
4262
4293
|
ClusterRestrictedInstanceGroupDetails.add_member(:current_count, Shapes::ShapeRef.new(shape: ClusterNonNegativeInstanceCount, location_name: "CurrentCount"))
|
|
4263
4294
|
ClusterRestrictedInstanceGroupDetails.add_member(:target_count, Shapes::ShapeRef.new(shape: ClusterInstanceCount, location_name: "TargetCount"))
|
|
4264
4295
|
ClusterRestrictedInstanceGroupDetails.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, location_name: "InstanceGroupName"))
|
|
@@ -4337,6 +4368,7 @@ module Aws::SageMaker
|
|
|
4337
4368
|
ClusterSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
|
4338
4369
|
ClusterSummary.add_member(:cluster_status, Shapes::ShapeRef.new(shape: ClusterStatus, required: true, location_name: "ClusterStatus"))
|
|
4339
4370
|
ClusterSummary.add_member(:training_plan_arns, Shapes::ShapeRef.new(shape: TrainingPlanArns, location_name: "TrainingPlanArns"))
|
|
4371
|
+
ClusterSummary.add_member(:image_version_status, Shapes::ShapeRef.new(shape: ClusterImageVersionStatus, location_name: "ImageVersionStatus"))
|
|
4340
4372
|
ClusterSummary.struct_class = Types::ClusterSummary
|
|
4341
4373
|
|
|
4342
4374
|
ClusterTieredStorageConfig.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterConfigMode, required: true, location_name: "Mode"))
|
|
@@ -12738,6 +12770,7 @@ module Aws::SageMaker
|
|
|
12738
12770
|
UpdateClusterSchedulerConfigResponse.struct_class = Types::UpdateClusterSchedulerConfigResponse
|
|
12739
12771
|
|
|
12740
12772
|
UpdateClusterSoftwareInstanceGroupSpecification.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, required: true, location_name: "InstanceGroupName"))
|
|
12773
|
+
UpdateClusterSoftwareInstanceGroupSpecification.add_member(:image_release_version, Shapes::ShapeRef.new(shape: ImageReleaseVersion, location_name: "ImageReleaseVersion"))
|
|
12741
12774
|
UpdateClusterSoftwareInstanceGroupSpecification.struct_class = Types::UpdateClusterSoftwareInstanceGroupSpecification
|
|
12742
12775
|
|
|
12743
12776
|
UpdateClusterSoftwareInstanceGroups.member = Shapes::ShapeRef.new(shape: UpdateClusterSoftwareInstanceGroupSpecification)
|
|
@@ -5949,6 +5949,65 @@ module Aws::SageMaker
|
|
|
5949
5949
|
include Aws::Structure
|
|
5950
5950
|
end
|
|
5951
5951
|
|
|
5952
|
+
# The configuration for automatic patching of the instance group. When
|
|
5953
|
+
# configured, the system automatically applies security patch AMI
|
|
5954
|
+
# updates to the instance group.
|
|
5955
|
+
#
|
|
5956
|
+
# @!attribute [rw] patching_strategy
|
|
5957
|
+
# The strategy for applying patches to instances in the group.
|
|
5958
|
+
# @return [String]
|
|
5959
|
+
#
|
|
5960
|
+
# @!attribute [rw] patch_schedule
|
|
5961
|
+
# The schedule for automatic patching, including the next patch date.
|
|
5962
|
+
# @return [Types::ClusterPatchSchedule]
|
|
5963
|
+
#
|
|
5964
|
+
# @!attribute [rw] deployment_config
|
|
5965
|
+
# The deployment configuration for rolling patch updates, including
|
|
5966
|
+
# rollback settings and batch sizes. Only applicable when using a
|
|
5967
|
+
# rolling patching strategy.
|
|
5968
|
+
# @return [Types::DeploymentConfiguration]
|
|
5969
|
+
#
|
|
5970
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterAutoPatchConfig AWS API Documentation
|
|
5971
|
+
#
|
|
5972
|
+
class ClusterAutoPatchConfig < Struct.new(
|
|
5973
|
+
:patching_strategy,
|
|
5974
|
+
:patch_schedule,
|
|
5975
|
+
:deployment_config)
|
|
5976
|
+
SENSITIVE = []
|
|
5977
|
+
include Aws::Structure
|
|
5978
|
+
end
|
|
5979
|
+
|
|
5980
|
+
# The auto-patching configuration details for the instance group,
|
|
5981
|
+
# including the patching strategy and schedule.
|
|
5982
|
+
#
|
|
5983
|
+
# @!attribute [rw] patching_strategy
|
|
5984
|
+
# The strategy used for applying patches to instances in the group.
|
|
5985
|
+
# @return [String]
|
|
5986
|
+
#
|
|
5987
|
+
# @!attribute [rw] current_patch_schedule
|
|
5988
|
+
# The currently active patch schedule that the system will execute.
|
|
5989
|
+
# @return [Types::ClusterPatchScheduleDetails]
|
|
5990
|
+
#
|
|
5991
|
+
# @!attribute [rw] desired_patch_schedule
|
|
5992
|
+
# The requested patch schedule. Differs from CurrentPatchSchedule when
|
|
5993
|
+
# a reschedule request is pending.
|
|
5994
|
+
# @return [Types::ClusterPatchScheduleDetails]
|
|
5995
|
+
#
|
|
5996
|
+
# @!attribute [rw] deployment_config
|
|
5997
|
+
# The deployment configuration for rolling patch updates.
|
|
5998
|
+
# @return [Types::DeploymentConfiguration]
|
|
5999
|
+
#
|
|
6000
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterAutoPatchConfigDetails AWS API Documentation
|
|
6001
|
+
#
|
|
6002
|
+
class ClusterAutoPatchConfigDetails < Struct.new(
|
|
6003
|
+
:patching_strategy,
|
|
6004
|
+
:current_patch_schedule,
|
|
6005
|
+
:desired_patch_schedule,
|
|
6006
|
+
:deployment_config)
|
|
6007
|
+
SENSITIVE = []
|
|
6008
|
+
include Aws::Structure
|
|
6009
|
+
end
|
|
6010
|
+
|
|
5952
6011
|
# Specifies the autoscaling configuration for a HyperPod cluster.
|
|
5953
6012
|
#
|
|
5954
6013
|
# @!attribute [rw] mode
|
|
@@ -6369,6 +6428,11 @@ module Aws::SageMaker
|
|
|
6369
6428
|
# updating the AMI.
|
|
6370
6429
|
# @return [Types::ScheduledUpdateConfig]
|
|
6371
6430
|
#
|
|
6431
|
+
# @!attribute [rw] auto_patch_config
|
|
6432
|
+
# The auto-patching configuration for the instance group, including
|
|
6433
|
+
# the current patching strategy and next scheduled patch date.
|
|
6434
|
+
# @return [Types::ClusterAutoPatchConfigDetails]
|
|
6435
|
+
#
|
|
6372
6436
|
# @!attribute [rw] current_image_id
|
|
6373
6437
|
# The ID of the Amazon Machine Image (AMI) currently in use by the
|
|
6374
6438
|
# instance group.
|
|
@@ -6379,6 +6443,17 @@ module Aws::SageMaker
|
|
|
6379
6443
|
# group.
|
|
6380
6444
|
# @return [String]
|
|
6381
6445
|
#
|
|
6446
|
+
# @!attribute [rw] current_image_release_version
|
|
6447
|
+
# The version of the HyperPod-managed AMI currently running on the
|
|
6448
|
+
# instance group.
|
|
6449
|
+
# @return [String]
|
|
6450
|
+
#
|
|
6451
|
+
# @!attribute [rw] desired_image_release_version
|
|
6452
|
+
# The desired version of the HyperPod-managed AMI for the instance
|
|
6453
|
+
# group. This may differ from the current version when an update is
|
|
6454
|
+
# pending.
|
|
6455
|
+
# @return [String]
|
|
6456
|
+
#
|
|
6382
6457
|
# @!attribute [rw] image_version_status
|
|
6383
6458
|
# The status of the image version for the instance group. Indicates
|
|
6384
6459
|
# whether the instance group is running the latest image version or if
|
|
@@ -6466,8 +6541,11 @@ module Aws::SageMaker
|
|
|
6466
6541
|
:training_plan_status,
|
|
6467
6542
|
:override_vpc_config,
|
|
6468
6543
|
:scheduled_update_config,
|
|
6544
|
+
:auto_patch_config,
|
|
6469
6545
|
:current_image_id,
|
|
6470
6546
|
:desired_image_id,
|
|
6547
|
+
:current_image_release_version,
|
|
6548
|
+
:desired_image_release_version,
|
|
6471
6549
|
:image_version_status,
|
|
6472
6550
|
:active_operations,
|
|
6473
6551
|
:kubernetes_config,
|
|
@@ -6632,6 +6710,19 @@ module Aws::SageMaker
|
|
|
6632
6710
|
# patched with the specified image.
|
|
6633
6711
|
# @return [String]
|
|
6634
6712
|
#
|
|
6713
|
+
# @!attribute [rw] auto_patch_config
|
|
6714
|
+
# The configuration for automatic OS security patching. If present,
|
|
6715
|
+
# the system automatically applies PATCH AMI updates to this instance
|
|
6716
|
+
# group.
|
|
6717
|
+
# @return [Types::ClusterAutoPatchConfig]
|
|
6718
|
+
#
|
|
6719
|
+
# @!attribute [rw] image_release_version
|
|
6720
|
+
# The version of the HyperPod-managed AMI to use for the instance
|
|
6721
|
+
# group. Uses semantic versioning in the format `MAJOR.MINOR.PATCH`
|
|
6722
|
+
# (for example, `1.2.3`). If omitted, the latest available version is
|
|
6723
|
+
# used.
|
|
6724
|
+
# @return [String]
|
|
6725
|
+
#
|
|
6635
6726
|
# @!attribute [rw] kubernetes_config
|
|
6636
6727
|
# Specifies the Kubernetes configuration for the instance group. You
|
|
6637
6728
|
# describe what you want the labels and taints to look like, and the
|
|
@@ -6668,6 +6759,8 @@ module Aws::SageMaker
|
|
|
6668
6759
|
:override_vpc_config,
|
|
6669
6760
|
:scheduled_update_config,
|
|
6670
6761
|
:image_id,
|
|
6762
|
+
:auto_patch_config,
|
|
6763
|
+
:image_release_version,
|
|
6671
6764
|
:kubernetes_config,
|
|
6672
6765
|
:slurm_config,
|
|
6673
6766
|
:capacity_requirements,
|
|
@@ -7138,6 +7231,16 @@ module Aws::SageMaker
|
|
|
7138
7231
|
# The ID of the Amazon Machine Image (AMI) desired for the node.
|
|
7139
7232
|
# @return [String]
|
|
7140
7233
|
#
|
|
7234
|
+
# @!attribute [rw] current_image_release_version
|
|
7235
|
+
# The version of the HyperPod-managed AMI currently running on the
|
|
7236
|
+
# node.
|
|
7237
|
+
# @return [String]
|
|
7238
|
+
#
|
|
7239
|
+
# @!attribute [rw] desired_image_release_version
|
|
7240
|
+
# The desired version of the HyperPod-managed AMI for the node. This
|
|
7241
|
+
# may differ from the current version when an update is pending.
|
|
7242
|
+
# @return [String]
|
|
7243
|
+
#
|
|
7141
7244
|
# @!attribute [rw] image_version_status
|
|
7142
7245
|
# The status of the image version for the cluster node.
|
|
7143
7246
|
# @return [String]
|
|
@@ -7183,6 +7286,8 @@ module Aws::SageMaker
|
|
|
7183
7286
|
:placement,
|
|
7184
7287
|
:current_image_id,
|
|
7185
7288
|
:desired_image_id,
|
|
7289
|
+
:current_image_release_version,
|
|
7290
|
+
:desired_image_release_version,
|
|
7186
7291
|
:image_version_status,
|
|
7187
7292
|
:ultra_server_info,
|
|
7188
7293
|
:kubernetes_config,
|
|
@@ -7237,6 +7342,11 @@ module Aws::SageMaker
|
|
|
7237
7342
|
# The private DNS hostname of the SageMaker HyperPod cluster node.
|
|
7238
7343
|
# @return [String]
|
|
7239
7344
|
#
|
|
7345
|
+
# @!attribute [rw] current_image_release_version
|
|
7346
|
+
# The version of the HyperPod-managed AMI currently running on the
|
|
7347
|
+
# node.
|
|
7348
|
+
# @return [String]
|
|
7349
|
+
#
|
|
7240
7350
|
# @!attribute [rw] image_version_status
|
|
7241
7351
|
# The status of the image version for the cluster node.
|
|
7242
7352
|
# @return [String]
|
|
@@ -7253,6 +7363,7 @@ module Aws::SageMaker
|
|
|
7253
7363
|
:instance_status,
|
|
7254
7364
|
:ultra_server_info,
|
|
7255
7365
|
:private_dns_hostname,
|
|
7366
|
+
:current_image_release_version,
|
|
7256
7367
|
:image_version_status)
|
|
7257
7368
|
SENSITIVE = []
|
|
7258
7369
|
include Aws::Structure
|
|
@@ -7319,6 +7430,37 @@ module Aws::SageMaker
|
|
|
7319
7430
|
include Aws::Structure
|
|
7320
7431
|
end
|
|
7321
7432
|
|
|
7433
|
+
# The schedule configuration for automatic patching.
|
|
7434
|
+
#
|
|
7435
|
+
# @!attribute [rw] next_patch_date
|
|
7436
|
+
# The date and time of the next scheduled automatic patch. The system
|
|
7437
|
+
# sets this automatically when a patch is detected. Use this field to
|
|
7438
|
+
# reschedule the patch to a different date.
|
|
7439
|
+
# @return [Time]
|
|
7440
|
+
#
|
|
7441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterPatchSchedule AWS API Documentation
|
|
7442
|
+
#
|
|
7443
|
+
class ClusterPatchSchedule < Struct.new(
|
|
7444
|
+
:next_patch_date)
|
|
7445
|
+
SENSITIVE = []
|
|
7446
|
+
include Aws::Structure
|
|
7447
|
+
end
|
|
7448
|
+
|
|
7449
|
+
# The schedule details for automatic patching, including the next
|
|
7450
|
+
# scheduled patch date.
|
|
7451
|
+
#
|
|
7452
|
+
# @!attribute [rw] next_patch_date
|
|
7453
|
+
# The date and time of the next scheduled automatic patch.
|
|
7454
|
+
# @return [Time]
|
|
7455
|
+
#
|
|
7456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterPatchScheduleDetails AWS API Documentation
|
|
7457
|
+
#
|
|
7458
|
+
class ClusterPatchScheduleDetails < Struct.new(
|
|
7459
|
+
:next_patch_date)
|
|
7460
|
+
SENSITIVE = []
|
|
7461
|
+
include Aws::Structure
|
|
7462
|
+
end
|
|
7463
|
+
|
|
7322
7464
|
# The instance group details of the restricted instance group (RIG).
|
|
7323
7465
|
#
|
|
7324
7466
|
# @!attribute [rw] current_count
|
|
@@ -7751,6 +7893,11 @@ module Aws::SageMaker
|
|
|
7751
7893
|
# see ` CreateTrainingPlan `.
|
|
7752
7894
|
# @return [Array<String>]
|
|
7753
7895
|
#
|
|
7896
|
+
# @!attribute [rw] image_version_status
|
|
7897
|
+
# The aggregate status of the image version across the cluster's
|
|
7898
|
+
# instance groups.
|
|
7899
|
+
# @return [String]
|
|
7900
|
+
#
|
|
7754
7901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterSummary AWS API Documentation
|
|
7755
7902
|
#
|
|
7756
7903
|
class ClusterSummary < Struct.new(
|
|
@@ -7758,7 +7905,8 @@ module Aws::SageMaker
|
|
|
7758
7905
|
:cluster_name,
|
|
7759
7906
|
:creation_time,
|
|
7760
7907
|
:cluster_status,
|
|
7761
|
-
:training_plan_arns
|
|
7908
|
+
:training_plan_arns,
|
|
7909
|
+
:image_version_status)
|
|
7762
7910
|
SENSITIVE = []
|
|
7763
7911
|
include Aws::Structure
|
|
7764
7912
|
end
|
|
@@ -56184,10 +56332,17 @@ module Aws::SageMaker
|
|
|
56184
56332
|
# The name of the instance group to update.
|
|
56185
56333
|
# @return [String]
|
|
56186
56334
|
#
|
|
56335
|
+
# @!attribute [rw] image_release_version
|
|
56336
|
+
# The version of the HyperPod-managed AMI to update to for the
|
|
56337
|
+
# instance group. Uses semantic versioning in the format
|
|
56338
|
+
# `MAJOR.MINOR.PATCH`.
|
|
56339
|
+
# @return [String]
|
|
56340
|
+
#
|
|
56187
56341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSoftwareInstanceGroupSpecification AWS API Documentation
|
|
56188
56342
|
#
|
|
56189
56343
|
class UpdateClusterSoftwareInstanceGroupSpecification < Struct.new(
|
|
56190
|
-
:instance_group_name
|
|
56344
|
+
:instance_group_name,
|
|
56345
|
+
:image_release_version)
|
|
56191
56346
|
SENSITIVE = []
|
|
56192
56347
|
include Aws::Structure
|
|
56193
56348
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -7474,7 +7474,8 @@ module Aws
|
|
|
7474
7474
|
cluster_name: ::String,
|
|
7475
7475
|
?instance_groups: Array[
|
|
7476
7476
|
{
|
|
7477
|
-
instance_group_name: ::String
|
|
7477
|
+
instance_group_name: ::String,
|
|
7478
|
+
image_release_version: ::String?
|
|
7478
7479
|
}
|
|
7479
7480
|
],
|
|
7480
7481
|
?deployment_config: Params::deployment_configuration,
|
data/sig/params.rbs
CHANGED
|
@@ -254,6 +254,14 @@ module Aws
|
|
|
254
254
|
deployment_config: Params::deployment_configuration?
|
|
255
255
|
}
|
|
256
256
|
|
|
257
|
+
type cluster_auto_patch_config = {
|
|
258
|
+
patching_strategy: ("WhenIdle" | "WhenAllIdle"),
|
|
259
|
+
patch_schedule: {
|
|
260
|
+
next_patch_date: ::Time?
|
|
261
|
+
}?,
|
|
262
|
+
deployment_config: Params::deployment_configuration?
|
|
263
|
+
}
|
|
264
|
+
|
|
257
265
|
type cluster_kubernetes_config = {
|
|
258
266
|
labels: Hash[::String, ::String]?,
|
|
259
267
|
taints: Array[
|
|
@@ -291,6 +299,8 @@ module Aws
|
|
|
291
299
|
}?,
|
|
292
300
|
scheduled_update_config: Params::scheduled_update_config?,
|
|
293
301
|
image_id: ::String?,
|
|
302
|
+
auto_patch_config: Params::cluster_auto_patch_config?,
|
|
303
|
+
image_release_version: ::String?,
|
|
294
304
|
kubernetes_config: Params::cluster_kubernetes_config?,
|
|
295
305
|
slurm_config: {
|
|
296
306
|
node_type: ("Controller" | "Login" | "Compute"),
|
data/sig/types.rbs
CHANGED
|
@@ -1178,6 +1178,21 @@ module Aws::SageMaker
|
|
|
1178
1178
|
SENSITIVE: []
|
|
1179
1179
|
end
|
|
1180
1180
|
|
|
1181
|
+
class ClusterAutoPatchConfig
|
|
1182
|
+
attr_accessor patching_strategy: ("WhenIdle" | "WhenAllIdle")
|
|
1183
|
+
attr_accessor patch_schedule: Types::ClusterPatchSchedule
|
|
1184
|
+
attr_accessor deployment_config: Types::DeploymentConfiguration
|
|
1185
|
+
SENSITIVE: []
|
|
1186
|
+
end
|
|
1187
|
+
|
|
1188
|
+
class ClusterAutoPatchConfigDetails
|
|
1189
|
+
attr_accessor patching_strategy: ("WhenIdle" | "WhenAllIdle")
|
|
1190
|
+
attr_accessor current_patch_schedule: Types::ClusterPatchScheduleDetails
|
|
1191
|
+
attr_accessor desired_patch_schedule: Types::ClusterPatchScheduleDetails
|
|
1192
|
+
attr_accessor deployment_config: Types::DeploymentConfiguration
|
|
1193
|
+
SENSITIVE: []
|
|
1194
|
+
end
|
|
1195
|
+
|
|
1181
1196
|
class ClusterAutoScalingConfig
|
|
1182
1197
|
attr_accessor mode: ("Enable" | "Disable")
|
|
1183
1198
|
attr_accessor auto_scaler_type: ("Karpenter")
|
|
@@ -1263,9 +1278,12 @@ module Aws::SageMaker
|
|
|
1263
1278
|
attr_accessor training_plan_status: ::String
|
|
1264
1279
|
attr_accessor override_vpc_config: Types::VpcConfig
|
|
1265
1280
|
attr_accessor scheduled_update_config: Types::ScheduledUpdateConfig
|
|
1281
|
+
attr_accessor auto_patch_config: Types::ClusterAutoPatchConfigDetails
|
|
1266
1282
|
attr_accessor current_image_id: ::String
|
|
1267
1283
|
attr_accessor desired_image_id: ::String
|
|
1268
|
-
attr_accessor
|
|
1284
|
+
attr_accessor current_image_release_version: ::String
|
|
1285
|
+
attr_accessor desired_image_release_version: ::String
|
|
1286
|
+
attr_accessor image_version_status: ("UpToDate" | "UpdateAvailable" | "SecurityUpdateRequired" | "EndOfLife")
|
|
1269
1287
|
attr_accessor active_operations: ::Hash[("Scaling"), ::Integer]
|
|
1270
1288
|
attr_accessor kubernetes_config: Types::ClusterKubernetesConfigDetails
|
|
1271
1289
|
attr_accessor capacity_requirements: Types::ClusterCapacityRequirements
|
|
@@ -1292,6 +1310,8 @@ module Aws::SageMaker
|
|
|
1292
1310
|
attr_accessor override_vpc_config: Types::VpcConfig
|
|
1293
1311
|
attr_accessor scheduled_update_config: Types::ScheduledUpdateConfig
|
|
1294
1312
|
attr_accessor image_id: ::String
|
|
1313
|
+
attr_accessor auto_patch_config: Types::ClusterAutoPatchConfig
|
|
1314
|
+
attr_accessor image_release_version: ::String
|
|
1295
1315
|
attr_accessor kubernetes_config: Types::ClusterKubernetesConfig
|
|
1296
1316
|
attr_accessor slurm_config: Types::ClusterSlurmConfig
|
|
1297
1317
|
attr_accessor capacity_requirements: Types::ClusterCapacityRequirements
|
|
@@ -1417,7 +1437,9 @@ module Aws::SageMaker
|
|
|
1417
1437
|
attr_accessor placement: Types::ClusterInstancePlacement
|
|
1418
1438
|
attr_accessor current_image_id: ::String
|
|
1419
1439
|
attr_accessor desired_image_id: ::String
|
|
1420
|
-
attr_accessor
|
|
1440
|
+
attr_accessor current_image_release_version: ::String
|
|
1441
|
+
attr_accessor desired_image_release_version: ::String
|
|
1442
|
+
attr_accessor image_version_status: ("UpToDate" | "UpdateAvailable" | "SecurityUpdateRequired" | "EndOfLife")
|
|
1421
1443
|
attr_accessor ultra_server_info: Types::UltraServerInfo
|
|
1422
1444
|
attr_accessor kubernetes_config: Types::ClusterKubernetesConfigNodeDetails
|
|
1423
1445
|
attr_accessor capacity_type: ("Spot" | "OnDemand")
|
|
@@ -1435,7 +1457,8 @@ module Aws::SageMaker
|
|
|
1435
1457
|
attr_accessor instance_status: Types::ClusterInstanceStatusDetails
|
|
1436
1458
|
attr_accessor ultra_server_info: Types::UltraServerInfo
|
|
1437
1459
|
attr_accessor private_dns_hostname: ::String
|
|
1438
|
-
attr_accessor
|
|
1460
|
+
attr_accessor current_image_release_version: ::String
|
|
1461
|
+
attr_accessor image_version_status: ("UpToDate" | "UpdateAvailable" | "SecurityUpdateRequired" | "EndOfLife")
|
|
1439
1462
|
SENSITIVE: []
|
|
1440
1463
|
end
|
|
1441
1464
|
|
|
@@ -1458,6 +1481,16 @@ module Aws::SageMaker
|
|
|
1458
1481
|
SENSITIVE: []
|
|
1459
1482
|
end
|
|
1460
1483
|
|
|
1484
|
+
class ClusterPatchSchedule
|
|
1485
|
+
attr_accessor next_patch_date: ::Time
|
|
1486
|
+
SENSITIVE: []
|
|
1487
|
+
end
|
|
1488
|
+
|
|
1489
|
+
class ClusterPatchScheduleDetails
|
|
1490
|
+
attr_accessor next_patch_date: ::Time
|
|
1491
|
+
SENSITIVE: []
|
|
1492
|
+
end
|
|
1493
|
+
|
|
1461
1494
|
class ClusterRestrictedInstanceGroupDetails
|
|
1462
1495
|
attr_accessor current_count: ::Integer
|
|
1463
1496
|
attr_accessor target_count: ::Integer
|
|
@@ -1548,6 +1581,7 @@ module Aws::SageMaker
|
|
|
1548
1581
|
attr_accessor creation_time: ::Time
|
|
1549
1582
|
attr_accessor cluster_status: ("Creating" | "Deleting" | "Failed" | "InService" | "RollingBack" | "SystemUpdating" | "Updating")
|
|
1550
1583
|
attr_accessor training_plan_arns: ::Array[::String]
|
|
1584
|
+
attr_accessor image_version_status: ("UpToDate" | "UpdateAvailable" | "SecurityUpdateRequired" | "EndOfLife")
|
|
1551
1585
|
SENSITIVE: []
|
|
1552
1586
|
end
|
|
1553
1587
|
|
|
@@ -11881,6 +11915,7 @@ module Aws::SageMaker
|
|
|
11881
11915
|
|
|
11882
11916
|
class UpdateClusterSoftwareInstanceGroupSpecification
|
|
11883
11917
|
attr_accessor instance_group_name: ::String
|
|
11918
|
+
attr_accessor image_release_version: ::String
|
|
11884
11919
|
SENSITIVE: []
|
|
11885
11920
|
end
|
|
11886
11921
|
|