aws-sdk-sagemaker 1.325.0 → 1.327.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e0fd5a3c71a6d8ebdc289aa141b78218ca3bbab318a434cd4a736a13869f20f
4
- data.tar.gz: 11298715f292bd7b23ffb66c5ebd226bd0a06b09a77be8a555abdfe40f386667
3
+ metadata.gz: 0bee812efbe5ee702d42623686fd646e90072d3c4fde0c823381a4803163c8cb
4
+ data.tar.gz: '059980cd5ea5d459e6567c6dbdd335074cc987d9849943118e208f2005354975'
5
5
  SHA512:
6
- metadata.gz: 3d5363a8918fbde9fc25710fc982f238529c8e2408196000bd1c0570e3eb9ec3cb855faa74b7bba2e3f7da69d9794512322254dcf40be265a0b0bf69e8567df8
7
- data.tar.gz: 5904e25e5948c2e80be9cb686c24c0ad29ce010334b6ebd0f5085eb5ddbc5b9e963ef54fe0fe87c543cac83a86def1da6e37b989e93b6e0bb9088144de6375dd
6
+ metadata.gz: c3220eea4a80c32a6a514e53d8210b744df644d97ef8f4956b78e9f8c52e0781848afc49f4aa0107acbeb88efa4556d004929d5d8497afa8f9f7946f26554686
7
+ data.tar.gz: 1b54c918434e029514886d223d98729498c3ec3bd94c49ee922d0acd9ce98547e99edd98336491ca52dc87b1dc7672c7b6eb84c7d5158b331decfcc20d57331d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.327.0 (2025-08-27)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for AutoScaling on SageMaker HyperPod.
8
+
9
+ 1.326.0 (2025-08-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.325.0 (2025-08-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.325.0
1
+ 1.327.0
@@ -2213,6 +2213,19 @@ module Aws::SageMaker
2213
2213
  #
2214
2214
  # ^
2215
2215
  #
2216
+ # @option params [String] :cluster_role
2217
+ # The Amazon Resource Name (ARN) of the IAM role that HyperPod assumes
2218
+ # to perform cluster autoscaling operations. This role must have
2219
+ # permissions for `sagemaker:BatchAddClusterNodes` and
2220
+ # `sagemaker:BatchDeleteClusterNodes`. This is only required when
2221
+ # autoscaling is enabled and when HyperPod is performing autoscaling
2222
+ # operations.
2223
+ #
2224
+ # @option params [Types::ClusterAutoScalingConfig] :auto_scaling
2225
+ # The autoscaling configuration for the cluster. Enables automatic
2226
+ # scaling of cluster nodes based on workload demand using a
2227
+ # Karpenter-based system.
2228
+ #
2216
2229
  # @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2217
2230
  #
2218
2231
  # * {Types::CreateClusterResponse#cluster_arn #cluster_arn} => String
@@ -2339,6 +2352,11 @@ module Aws::SageMaker
2339
2352
  # },
2340
2353
  # node_recovery: "Automatic", # accepts Automatic, None
2341
2354
  # node_provisioning_mode: "Continuous", # accepts Continuous
2355
+ # cluster_role: "RoleArn",
2356
+ # auto_scaling: {
2357
+ # mode: "Enable", # required, accepts Enable, Disable
2358
+ # auto_scaler_type: "Karpenter", # accepts Karpenter
2359
+ # },
2342
2360
  # })
2343
2361
  #
2344
2362
  # @example Response structure
@@ -13304,6 +13322,8 @@ module Aws::SageMaker
13304
13322
  # * {Types::DescribeClusterResponse#orchestrator #orchestrator} => Types::ClusterOrchestrator
13305
13323
  # * {Types::DescribeClusterResponse#node_recovery #node_recovery} => String
13306
13324
  # * {Types::DescribeClusterResponse#node_provisioning_mode #node_provisioning_mode} => String
13325
+ # * {Types::DescribeClusterResponse#cluster_role #cluster_role} => String
13326
+ # * {Types::DescribeClusterResponse#auto_scaling #auto_scaling} => Types::ClusterAutoScalingConfigOutput
13307
13327
  #
13308
13328
  # @example Request syntax with placeholder values
13309
13329
  #
@@ -13388,6 +13408,11 @@ module Aws::SageMaker
13388
13408
  # resp.orchestrator.eks.cluster_arn #=> String
13389
13409
  # resp.node_recovery #=> String, one of "Automatic", "None"
13390
13410
  # resp.node_provisioning_mode #=> String, one of "Continuous"
13411
+ # resp.cluster_role #=> String
13412
+ # resp.auto_scaling.mode #=> String, one of "Enable", "Disable"
13413
+ # resp.auto_scaling.auto_scaler_type #=> String, one of "Karpenter"
13414
+ # resp.auto_scaling.status #=> String, one of "InService", "Failed", "Creating", "Deleting"
13415
+ # resp.auto_scaling.failure_message #=> String
13391
13416
  #
13392
13417
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCluster AWS API Documentation
13393
13418
  #
@@ -27395,6 +27420,15 @@ module Aws::SageMaker
27395
27420
  # Specify the names of the instance groups to delete. Use a single `,`
27396
27421
  # as the separator between multiple names.
27397
27422
  #
27423
+ # @option params [String] :cluster_role
27424
+ # The Amazon Resource Name (ARN) of the IAM role that HyperPod assumes
27425
+ # for cluster autoscaling operations. Cannot be updated while
27426
+ # autoscaling is enabled.
27427
+ #
27428
+ # @option params [Types::ClusterAutoScalingConfig] :auto_scaling
27429
+ # Updates the autoscaling configuration for the cluster. Use to enable
27430
+ # or disable automatic node scaling.
27431
+ #
27398
27432
  # @return [Types::UpdateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
27399
27433
  #
27400
27434
  # * {Types::UpdateClusterResponse#cluster_arn #cluster_arn} => String
@@ -27506,6 +27540,11 @@ module Aws::SageMaker
27506
27540
  # ],
27507
27541
  # node_recovery: "Automatic", # accepts Automatic, None
27508
27542
  # instance_groups_to_delete: ["ClusterInstanceGroupName"],
27543
+ # cluster_role: "RoleArn",
27544
+ # auto_scaling: {
27545
+ # mode: "Enable", # required, accepts Enable, Disable
27546
+ # auto_scaler_type: "Karpenter", # accepts Karpenter
27547
+ # },
27509
27548
  # })
27510
27549
  #
27511
27550
  # @example Response structure
@@ -31114,7 +31153,7 @@ module Aws::SageMaker
31114
31153
  tracer: tracer
31115
31154
  )
31116
31155
  context[:gem_name] = 'aws-sdk-sagemaker'
31117
- context[:gem_version] = '1.325.0'
31156
+ context[:gem_version] = '1.327.0'
31118
31157
  Seahorse::Client::Request.new(handlers, context)
31119
31158
  end
31120
31159
 
@@ -313,6 +313,11 @@ module Aws::SageMaker
313
313
  ClientSecret = Shapes::StringShape.new(name: 'ClientSecret')
314
314
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
315
315
  ClusterArn = Shapes::StringShape.new(name: 'ClusterArn')
316
+ ClusterAutoScalerType = Shapes::StringShape.new(name: 'ClusterAutoScalerType')
317
+ ClusterAutoScalingConfig = Shapes::StructureShape.new(name: 'ClusterAutoScalingConfig')
318
+ ClusterAutoScalingConfigOutput = Shapes::StructureShape.new(name: 'ClusterAutoScalingConfigOutput')
319
+ ClusterAutoScalingMode = Shapes::StringShape.new(name: 'ClusterAutoScalingMode')
320
+ ClusterAutoScalingStatus = Shapes::StringShape.new(name: 'ClusterAutoScalingStatus')
316
321
  ClusterAvailabilityZone = Shapes::StringShape.new(name: 'ClusterAvailabilityZone')
317
322
  ClusterAvailabilityZoneId = Shapes::StringShape.new(name: 'ClusterAvailabilityZoneId')
318
323
  ClusterEbsVolumeConfig = Shapes::StructureShape.new(name: 'ClusterEbsVolumeConfig')
@@ -3391,6 +3396,16 @@ module Aws::SageMaker
3391
3396
  ClarifyTextConfig.add_member(:granularity, Shapes::ShapeRef.new(shape: ClarifyTextGranularity, required: true, location_name: "Granularity"))
3392
3397
  ClarifyTextConfig.struct_class = Types::ClarifyTextConfig
3393
3398
 
3399
+ ClusterAutoScalingConfig.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterAutoScalingMode, required: true, location_name: "Mode"))
3400
+ ClusterAutoScalingConfig.add_member(:auto_scaler_type, Shapes::ShapeRef.new(shape: ClusterAutoScalerType, location_name: "AutoScalerType"))
3401
+ ClusterAutoScalingConfig.struct_class = Types::ClusterAutoScalingConfig
3402
+
3403
+ ClusterAutoScalingConfigOutput.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterAutoScalingMode, required: true, location_name: "Mode"))
3404
+ ClusterAutoScalingConfigOutput.add_member(:auto_scaler_type, Shapes::ShapeRef.new(shape: ClusterAutoScalerType, location_name: "AutoScalerType"))
3405
+ ClusterAutoScalingConfigOutput.add_member(:status, Shapes::ShapeRef.new(shape: ClusterAutoScalingStatus, required: true, location_name: "Status"))
3406
+ ClusterAutoScalingConfigOutput.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
3407
+ ClusterAutoScalingConfigOutput.struct_class = Types::ClusterAutoScalingConfigOutput
3408
+
3394
3409
  ClusterEbsVolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: ClusterEbsVolumeSizeInGB, location_name: "VolumeSizeInGB"))
3395
3410
  ClusterEbsVolumeConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
3396
3411
  ClusterEbsVolumeConfig.add_member(:root_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "RootVolume", metadata: {"box" => true}))
@@ -3839,6 +3854,8 @@ module Aws::SageMaker
3839
3854
  CreateClusterRequest.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
3840
3855
  CreateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
3841
3856
  CreateClusterRequest.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
3857
+ CreateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
3858
+ CreateClusterRequest.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfig, location_name: "AutoScaling"))
3842
3859
  CreateClusterRequest.struct_class = Types::CreateClusterRequest
3843
3860
 
3844
3861
  CreateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
@@ -5177,6 +5194,8 @@ module Aws::SageMaker
5177
5194
  DescribeClusterResponse.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
5178
5195
  DescribeClusterResponse.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
5179
5196
  DescribeClusterResponse.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
5197
+ DescribeClusterResponse.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
5198
+ DescribeClusterResponse.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfigOutput, location_name: "AutoScaling"))
5180
5199
  DescribeClusterResponse.struct_class = Types::DescribeClusterResponse
5181
5200
 
5182
5201
  DescribeClusterSchedulerConfigRequest.add_member(:cluster_scheduler_config_id, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigId, required: true, location_name: "ClusterSchedulerConfigId"))
@@ -11287,6 +11306,8 @@ module Aws::SageMaker
11287
11306
  UpdateClusterRequest.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupSpecifications, location_name: "RestrictedInstanceGroups"))
11288
11307
  UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
11289
11308
  UpdateClusterRequest.add_member(:instance_groups_to_delete, Shapes::ShapeRef.new(shape: ClusterInstanceGroupsToDelete, location_name: "InstanceGroupsToDelete"))
11309
+ UpdateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
11310
+ UpdateClusterRequest.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfig, location_name: "AutoScaling"))
11290
11311
  UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
11291
11312
 
11292
11313
  UpdateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
@@ -4700,6 +4700,60 @@ module Aws::SageMaker
4700
4700
  include Aws::Structure
4701
4701
  end
4702
4702
 
4703
+ # Specifies the autoscaling configuration for a HyperPod cluster.
4704
+ #
4705
+ # @!attribute [rw] mode
4706
+ # Describes whether autoscaling is enabled or disabled for the
4707
+ # cluster. Valid values are `Enable` and `Disable`.
4708
+ # @return [String]
4709
+ #
4710
+ # @!attribute [rw] auto_scaler_type
4711
+ # The type of autoscaler to use. Currently supported value is
4712
+ # `Karpenter`.
4713
+ # @return [String]
4714
+ #
4715
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterAutoScalingConfig AWS API Documentation
4716
+ #
4717
+ class ClusterAutoScalingConfig < Struct.new(
4718
+ :mode,
4719
+ :auto_scaler_type)
4720
+ SENSITIVE = []
4721
+ include Aws::Structure
4722
+ end
4723
+
4724
+ # The autoscaling configuration and status information for a HyperPod
4725
+ # cluster.
4726
+ #
4727
+ # @!attribute [rw] mode
4728
+ # Describes whether autoscaling is enabled or disabled for the
4729
+ # cluster.
4730
+ # @return [String]
4731
+ #
4732
+ # @!attribute [rw] auto_scaler_type
4733
+ # The type of autoscaler configured for the cluster.
4734
+ # @return [String]
4735
+ #
4736
+ # @!attribute [rw] status
4737
+ # The current status of the autoscaling configuration. Valid values
4738
+ # are `InService`, `Failed`, `Creating`, and `Deleting`.
4739
+ # @return [String]
4740
+ #
4741
+ # @!attribute [rw] failure_message
4742
+ # If the autoscaling status is `Failed`, this field contains a message
4743
+ # describing the failure.
4744
+ # @return [String]
4745
+ #
4746
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterAutoScalingConfigOutput AWS API Documentation
4747
+ #
4748
+ class ClusterAutoScalingConfigOutput < Struct.new(
4749
+ :mode,
4750
+ :auto_scaler_type,
4751
+ :status,
4752
+ :failure_message)
4753
+ SENSITIVE = []
4754
+ include Aws::Structure
4755
+ end
4756
+
4703
4757
  # Defines the configuration for attaching an additional Amazon Elastic
4704
4758
  # Block Store (EBS) volume to each instance of the SageMaker HyperPod
4705
4759
  # cluster instance group. To learn more, see [SageMaker HyperPod release
@@ -7327,6 +7381,21 @@ module Aws::SageMaker
7327
7381
  # ^
7328
7382
  # @return [String]
7329
7383
  #
7384
+ # @!attribute [rw] cluster_role
7385
+ # The Amazon Resource Name (ARN) of the IAM role that HyperPod assumes
7386
+ # to perform cluster autoscaling operations. This role must have
7387
+ # permissions for `sagemaker:BatchAddClusterNodes` and
7388
+ # `sagemaker:BatchDeleteClusterNodes`. This is only required when
7389
+ # autoscaling is enabled and when HyperPod is performing autoscaling
7390
+ # operations.
7391
+ # @return [String]
7392
+ #
7393
+ # @!attribute [rw] auto_scaling
7394
+ # The autoscaling configuration for the cluster. Enables automatic
7395
+ # scaling of cluster nodes based on workload demand using a
7396
+ # Karpenter-based system.
7397
+ # @return [Types::ClusterAutoScalingConfig]
7398
+ #
7330
7399
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterRequest AWS API Documentation
7331
7400
  #
7332
7401
  class CreateClusterRequest < Struct.new(
@@ -7337,7 +7406,9 @@ module Aws::SageMaker
7337
7406
  :tags,
7338
7407
  :orchestrator,
7339
7408
  :node_recovery,
7340
- :node_provisioning_mode)
7409
+ :node_provisioning_mode,
7410
+ :cluster_role,
7411
+ :auto_scaling)
7341
7412
  SENSITIVE = []
7342
7413
  include Aws::Structure
7343
7414
  end
@@ -15037,6 +15108,15 @@ module Aws::SageMaker
15037
15108
  # The mode used for provisioning nodes in the cluster.
15038
15109
  # @return [String]
15039
15110
  #
15111
+ # @!attribute [rw] cluster_role
15112
+ # The Amazon Resource Name (ARN) of the IAM role that HyperPod uses
15113
+ # for cluster autoscaling operations.
15114
+ # @return [String]
15115
+ #
15116
+ # @!attribute [rw] auto_scaling
15117
+ # The current autoscaling configuration and status for the autoscaler.
15118
+ # @return [Types::ClusterAutoScalingConfigOutput]
15119
+ #
15040
15120
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterResponse AWS API Documentation
15041
15121
  #
15042
15122
  class DescribeClusterResponse < Struct.new(
@@ -15050,7 +15130,9 @@ module Aws::SageMaker
15050
15130
  :vpc_config,
15051
15131
  :orchestrator,
15052
15132
  :node_recovery,
15053
- :node_provisioning_mode)
15133
+ :node_provisioning_mode,
15134
+ :cluster_role,
15135
+ :auto_scaling)
15054
15136
  SENSITIVE = []
15055
15137
  include Aws::Structure
15056
15138
  end
@@ -50551,6 +50633,17 @@ module Aws::SageMaker
50551
50633
  # as the separator between multiple names.
50552
50634
  # @return [Array<String>]
50553
50635
  #
50636
+ # @!attribute [rw] cluster_role
50637
+ # The Amazon Resource Name (ARN) of the IAM role that HyperPod assumes
50638
+ # for cluster autoscaling operations. Cannot be updated while
50639
+ # autoscaling is enabled.
50640
+ # @return [String]
50641
+ #
50642
+ # @!attribute [rw] auto_scaling
50643
+ # Updates the autoscaling configuration for the cluster. Use to enable
50644
+ # or disable automatic node scaling.
50645
+ # @return [Types::ClusterAutoScalingConfig]
50646
+ #
50554
50647
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterRequest AWS API Documentation
50555
50648
  #
50556
50649
  class UpdateClusterRequest < Struct.new(
@@ -50558,7 +50651,9 @@ module Aws::SageMaker
50558
50651
  :instance_groups,
50559
50652
  :restricted_instance_groups,
50560
50653
  :node_recovery,
50561
- :instance_groups_to_delete)
50654
+ :instance_groups_to_delete,
50655
+ :cluster_role,
50656
+ :auto_scaling)
50562
50657
  SENSITIVE = []
50563
50658
  include Aws::Structure
50564
50659
  end
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.325.0'
58
+ GEM_VERSION = '1.327.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -890,7 +890,12 @@ module Aws
890
890
  }
891
891
  },
892
892
  ?node_recovery: ("Automatic" | "None"),
893
- ?node_provisioning_mode: ("Continuous")
893
+ ?node_provisioning_mode: ("Continuous"),
894
+ ?cluster_role: ::String,
895
+ ?auto_scaling: {
896
+ mode: ("Enable" | "Disable"),
897
+ auto_scaler_type: ("Karpenter")?
898
+ }
894
899
  ) -> _CreateClusterResponseSuccess
895
900
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
896
901
 
@@ -5416,6 +5421,8 @@ module Aws
5416
5421
  def orchestrator: () -> Types::ClusterOrchestrator
5417
5422
  def node_recovery: () -> ("Automatic" | "None")
5418
5423
  def node_provisioning_mode: () -> ("Continuous")
5424
+ def cluster_role: () -> ::String
5425
+ def auto_scaling: () -> Types::ClusterAutoScalingConfigOutput
5419
5426
  end
5420
5427
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster-instance_method
5421
5428
  def describe_cluster: (
@@ -9003,7 +9010,12 @@ module Aws
9003
9010
  },
9004
9011
  ],
9005
9012
  ?node_recovery: ("Automatic" | "None"),
9006
- ?instance_groups_to_delete: Array[::String]
9013
+ ?instance_groups_to_delete: Array[::String],
9014
+ ?cluster_role: ::String,
9015
+ ?auto_scaling: {
9016
+ mode: ("Enable" | "Disable"),
9017
+ auto_scaler_type: ("Karpenter")?
9018
+ }
9007
9019
  ) -> _UpdateClusterResponseSuccess
9008
9020
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterResponseSuccess
9009
9021
 
data/sig/types.rbs CHANGED
@@ -847,6 +847,20 @@ module Aws::SageMaker
847
847
  SENSITIVE: []
848
848
  end
849
849
 
850
+ class ClusterAutoScalingConfig
851
+ attr_accessor mode: ("Enable" | "Disable")
852
+ attr_accessor auto_scaler_type: ("Karpenter")
853
+ SENSITIVE: []
854
+ end
855
+
856
+ class ClusterAutoScalingConfigOutput
857
+ attr_accessor mode: ("Enable" | "Disable")
858
+ attr_accessor auto_scaler_type: ("Karpenter")
859
+ attr_accessor status: ("InService" | "Failed" | "Creating" | "Deleting")
860
+ attr_accessor failure_message: ::String
861
+ SENSITIVE: []
862
+ end
863
+
850
864
  class ClusterEbsVolumeConfig
851
865
  attr_accessor volume_size_in_gb: ::Integer
852
866
  attr_accessor volume_kms_key_id: ::String
@@ -1355,6 +1369,8 @@ module Aws::SageMaker
1355
1369
  attr_accessor orchestrator: Types::ClusterOrchestrator
1356
1370
  attr_accessor node_recovery: ("Automatic" | "None")
1357
1371
  attr_accessor node_provisioning_mode: ("Continuous")
1372
+ attr_accessor cluster_role: ::String
1373
+ attr_accessor auto_scaling: Types::ClusterAutoScalingConfig
1358
1374
  SENSITIVE: []
1359
1375
  end
1360
1376
 
@@ -3139,6 +3155,8 @@ module Aws::SageMaker
3139
3155
  attr_accessor orchestrator: Types::ClusterOrchestrator
3140
3156
  attr_accessor node_recovery: ("Automatic" | "None")
3141
3157
  attr_accessor node_provisioning_mode: ("Continuous")
3158
+ attr_accessor cluster_role: ::String
3159
+ attr_accessor auto_scaling: Types::ClusterAutoScalingConfigOutput
3142
3160
  SENSITIVE: []
3143
3161
  end
3144
3162
 
@@ -10538,6 +10556,8 @@ module Aws::SageMaker
10538
10556
  attr_accessor restricted_instance_groups: ::Array[Types::ClusterRestrictedInstanceGroupSpecification]
10539
10557
  attr_accessor node_recovery: ("Automatic" | "None")
10540
10558
  attr_accessor instance_groups_to_delete: ::Array[::String]
10559
+ attr_accessor cluster_role: ::String
10560
+ attr_accessor auto_scaling: Types::ClusterAutoScalingConfig
10541
10561
  SENSITIVE: []
10542
10562
  end
10543
10563
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.325.0
4
+ version: 1.327.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.228.0
21
+ version: 3.231.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.228.0
31
+ version: 3.231.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement