aws-sdk-sagemaker 1.259.0 → 1.260.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d2515128ef79ca8ccf13a36a69ecc525ff9d79545bc9c455dc987af7a50cb60
4
- data.tar.gz: 55514ebf0ac1ec80f0ac2c955ad30620ee4e6fbdd3fde34758f0800c342cbb97
3
+ metadata.gz: 2589d5cd4826661e7504b3ed54c6b9c455b07260d4ef28a4d2c176815e45c729
4
+ data.tar.gz: db5af3252d504b04fcf42e843d05d102e42b8c9f1227e84bfab957af0f787d5c
5
5
  SHA512:
6
- metadata.gz: e0a8efa87315e0c8000f61ecbb54bf0b9990ca020a81e8bf290982ae6144cc655992b7fbe541839e8eec27436953d6254c82488cd575266fa9868afac4c7f5fd
7
- data.tar.gz: bc5f713b51325fc5af5336f96094638baf939c792f31cd1cbceae40068356547bd4608b12d169e6ae706874a2f656974db3d8e5bd25e5bdc0bb4d64aa3db99e2
6
+ metadata.gz: 1fcd84da3dc70c36b6ea187764b4df34bd4a6579e52ca87c27b574e62542300e52a7775af2b422c8b98cbf8b8d9a955d8a1cd13402f7d437eab0a7c6c7e2f796
7
+ data.tar.gz: b84e0ba2ee87e940bac12b21cb53d154afcc3865fc02baa8160c71984cdf4330fb80454f3f6914d3fffc5eb65c12ca21a3bfaa390727570b461928d44aa3ac68
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.260.0 (2024-09-09)
5
+ ------------------
6
+
7
+ * Feature - Amazon Sagemaker supports orchestrating SageMaker HyperPod clusters with Amazon EKS
8
+
4
9
  1.259.0 (2024-09-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.259.0
1
+ 1.260.0
@@ -1873,6 +1873,18 @@ module Aws::SageMaker
1873
1873
  #
1874
1874
  # [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
1875
1875
  #
1876
+ # @option params [Types::ClusterOrchestrator] :orchestrator
1877
+ # The type of orchestrator to use for the SageMaker HyperPod cluster.
1878
+ # Currently, the only supported value is `"eks"`, which is to use an
1879
+ # Amazon Elastic Kubernetes Service (EKS) cluster as the orchestrator.
1880
+ #
1881
+ # @option params [String] :node_recovery
1882
+ # The node recovery mode for the SageMaker HyperPod cluster. When set to
1883
+ # `Automatic`, SageMaker HyperPod will automatically reboot or replace
1884
+ # faulty nodes when issues are detected. When set to `None`, cluster
1885
+ # administrators will need to manually manage any faulty cluster
1886
+ # instances.
1887
+ #
1876
1888
  # @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1877
1889
  #
1878
1890
  # * {Types::CreateClusterResponse#cluster_arn #cluster_arn} => String
@@ -1890,7 +1902,7 @@ module Aws::SageMaker
1890
1902
  # source_s3_uri: "S3Uri", # required
1891
1903
  # on_create: "ClusterLifeCycleConfigFileName", # required
1892
1904
  # },
1893
- # execution_role: "IAMRoleArn", # required
1905
+ # execution_role: "RoleArn", # required
1894
1906
  # threads_per_core: 1,
1895
1907
  # instance_storage_configs: [
1896
1908
  # {
@@ -1899,6 +1911,7 @@ module Aws::SageMaker
1899
1911
  # },
1900
1912
  # },
1901
1913
  # ],
1914
+ # on_start_deep_health_checks: ["InstanceStress"], # accepts InstanceStress, InstanceConnectivity
1902
1915
  # },
1903
1916
  # ],
1904
1917
  # vpc_config: {
@@ -1911,6 +1924,12 @@ module Aws::SageMaker
1911
1924
  # value: "TagValue", # required
1912
1925
  # },
1913
1926
  # ],
1927
+ # orchestrator: {
1928
+ # eks: { # required
1929
+ # cluster_arn: "EksClusterArn", # required
1930
+ # },
1931
+ # },
1932
+ # node_recovery: "Automatic", # accepts Automatic, None
1914
1933
  # })
1915
1934
  #
1916
1935
  # @example Response structure
@@ -12062,6 +12081,8 @@ module Aws::SageMaker
12062
12081
  # * {Types::DescribeClusterResponse#failure_message #failure_message} => String
12063
12082
  # * {Types::DescribeClusterResponse#instance_groups #instance_groups} => Array<Types::ClusterInstanceGroupDetails>
12064
12083
  # * {Types::DescribeClusterResponse#vpc_config #vpc_config} => Types::VpcConfig
12084
+ # * {Types::DescribeClusterResponse#orchestrator #orchestrator} => Types::ClusterOrchestrator
12085
+ # * {Types::DescribeClusterResponse#node_recovery #node_recovery} => String
12065
12086
  #
12066
12087
  # @example Request syntax with placeholder values
12067
12088
  #
@@ -12087,10 +12108,14 @@ module Aws::SageMaker
12087
12108
  # resp.instance_groups[0].threads_per_core #=> Integer
12088
12109
  # resp.instance_groups[0].instance_storage_configs #=> Array
12089
12110
  # resp.instance_groups[0].instance_storage_configs[0].ebs_volume_config.volume_size_in_gb #=> Integer
12111
+ # resp.instance_groups[0].on_start_deep_health_checks #=> Array
12112
+ # resp.instance_groups[0].on_start_deep_health_checks[0] #=> String, one of "InstanceStress", "InstanceConnectivity"
12090
12113
  # resp.vpc_config.security_group_ids #=> Array
12091
12114
  # resp.vpc_config.security_group_ids[0] #=> String
12092
12115
  # resp.vpc_config.subnets #=> Array
12093
12116
  # resp.vpc_config.subnets[0] #=> String
12117
+ # resp.orchestrator.eks.cluster_arn #=> String
12118
+ # resp.node_recovery #=> String, one of "Automatic", "None"
12094
12119
  #
12095
12120
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCluster AWS API Documentation
12096
12121
  #
@@ -12126,7 +12151,7 @@ module Aws::SageMaker
12126
12151
  #
12127
12152
  # resp.node_details.instance_group_name #=> String
12128
12153
  # resp.node_details.instance_id #=> String
12129
- # resp.node_details.instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating"
12154
+ # resp.node_details.instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating", "DeepHealthCheckInProgress"
12130
12155
  # resp.node_details.instance_status.message #=> String
12131
12156
  # resp.node_details.instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.c5n.large", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge"
12132
12157
  # resp.node_details.launch_time #=> Time
@@ -18137,7 +18162,7 @@ module Aws::SageMaker
18137
18162
  # resp.cluster_node_summaries[0].instance_id #=> String
18138
18163
  # resp.cluster_node_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.c5n.large", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge"
18139
18164
  # resp.cluster_node_summaries[0].launch_time #=> Time
18140
- # resp.cluster_node_summaries[0].instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating"
18165
+ # resp.cluster_node_summaries[0].instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating", "DeepHealthCheckInProgress"
18141
18166
  # resp.cluster_node_summaries[0].instance_status.message #=> String
18142
18167
  #
18143
18168
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodes AWS API Documentation
@@ -24719,6 +24744,10 @@ module Aws::SageMaker
24719
24744
  # @option params [required, Array<Types::ClusterInstanceGroupSpecification>] :instance_groups
24720
24745
  # Specify the instance groups to update.
24721
24746
  #
24747
+ # @option params [String] :node_recovery
24748
+ # The node recovery mode to be applied to the SageMaker HyperPod
24749
+ # cluster.
24750
+ #
24722
24751
  # @return [Types::UpdateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
24723
24752
  #
24724
24753
  # * {Types::UpdateClusterResponse#cluster_arn #cluster_arn} => String
@@ -24736,7 +24765,7 @@ module Aws::SageMaker
24736
24765
  # source_s3_uri: "S3Uri", # required
24737
24766
  # on_create: "ClusterLifeCycleConfigFileName", # required
24738
24767
  # },
24739
- # execution_role: "IAMRoleArn", # required
24768
+ # execution_role: "RoleArn", # required
24740
24769
  # threads_per_core: 1,
24741
24770
  # instance_storage_configs: [
24742
24771
  # {
@@ -24745,8 +24774,10 @@ module Aws::SageMaker
24745
24774
  # },
24746
24775
  # },
24747
24776
  # ],
24777
+ # on_start_deep_health_checks: ["InstanceStress"], # accepts InstanceStress, InstanceConnectivity
24748
24778
  # },
24749
24779
  # ],
24780
+ # node_recovery: "Automatic", # accepts Automatic, None
24750
24781
  # })
24751
24782
  #
24752
24783
  # @example Response structure
@@ -27737,7 +27768,7 @@ module Aws::SageMaker
27737
27768
  tracer: tracer
27738
27769
  )
27739
27770
  context[:gem_name] = 'aws-sdk-sagemaker'
27740
- context[:gem_version] = '1.259.0'
27771
+ context[:gem_version] = '1.260.0'
27741
27772
  Seahorse::Client::Request.new(handlers, context)
27742
27773
  end
27743
27774
 
@@ -283,9 +283,12 @@ module Aws::SageMaker
283
283
  ClusterNameOrArn = Shapes::StringShape.new(name: 'ClusterNameOrArn')
284
284
  ClusterNodeDetails = Shapes::StructureShape.new(name: 'ClusterNodeDetails')
285
285
  ClusterNodeId = Shapes::StringShape.new(name: 'ClusterNodeId')
286
+ ClusterNodeRecovery = Shapes::StringShape.new(name: 'ClusterNodeRecovery')
286
287
  ClusterNodeSummaries = Shapes::ListShape.new(name: 'ClusterNodeSummaries')
287
288
  ClusterNodeSummary = Shapes::StructureShape.new(name: 'ClusterNodeSummary')
288
289
  ClusterNonNegativeInstanceCount = Shapes::IntegerShape.new(name: 'ClusterNonNegativeInstanceCount')
290
+ ClusterOrchestrator = Shapes::StructureShape.new(name: 'ClusterOrchestrator')
291
+ ClusterOrchestratorEksConfig = Shapes::StructureShape.new(name: 'ClusterOrchestratorEksConfig')
289
292
  ClusterPrivateDnsHostname = Shapes::StringShape.new(name: 'ClusterPrivateDnsHostname')
290
293
  ClusterPrivatePrimaryIp = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIp')
291
294
  ClusterSortBy = Shapes::StringShape.new(name: 'ClusterSortBy')
@@ -510,6 +513,7 @@ module Aws::SageMaker
510
513
  DebugRuleConfigurations = Shapes::ListShape.new(name: 'DebugRuleConfigurations')
511
514
  DebugRuleEvaluationStatus = Shapes::StructureShape.new(name: 'DebugRuleEvaluationStatus')
512
515
  DebugRuleEvaluationStatuses = Shapes::ListShape.new(name: 'DebugRuleEvaluationStatuses')
516
+ DeepHealthCheckType = Shapes::StringShape.new(name: 'DeepHealthCheckType')
513
517
  DefaultEbsStorageSettings = Shapes::StructureShape.new(name: 'DefaultEbsStorageSettings')
514
518
  DefaultGid = Shapes::IntegerShape.new(name: 'DefaultGid')
515
519
  DefaultSpaceSettings = Shapes::StructureShape.new(name: 'DefaultSpaceSettings')
@@ -812,6 +816,7 @@ module Aws::SageMaker
812
816
  EdgeVersion = Shapes::StringShape.new(name: 'EdgeVersion')
813
817
  Edges = Shapes::ListShape.new(name: 'Edges')
814
818
  EfsUid = Shapes::StringShape.new(name: 'EfsUid')
819
+ EksClusterArn = Shapes::StringShape.new(name: 'EksClusterArn')
815
820
  EmrServerlessComputeConfig = Shapes::StructureShape.new(name: 'EmrServerlessComputeConfig')
816
821
  EmrServerlessSettings = Shapes::StructureShape.new(name: 'EmrServerlessSettings')
817
822
  EmrSettings = Shapes::StructureShape.new(name: 'EmrSettings')
@@ -1048,7 +1053,6 @@ module Aws::SageMaker
1048
1053
  HyperbandStrategyConfig = Shapes::StructureShape.new(name: 'HyperbandStrategyConfig')
1049
1054
  HyperbandStrategyMaxResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMaxResource')
1050
1055
  HyperbandStrategyMinResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMinResource')
1051
- IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
1052
1056
  IamIdentity = Shapes::StructureShape.new(name: 'IamIdentity')
1053
1057
  IamPolicyConstraints = Shapes::StructureShape.new(name: 'IamPolicyConstraints')
1054
1058
  IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
@@ -1638,6 +1642,7 @@ module Aws::SageMaker
1638
1642
  OidcConfigForResponse = Shapes::StructureShape.new(name: 'OidcConfigForResponse')
1639
1643
  OidcEndpoint = Shapes::StringShape.new(name: 'OidcEndpoint')
1640
1644
  OidcMemberDefinition = Shapes::StructureShape.new(name: 'OidcMemberDefinition')
1645
+ OnStartDeepHealthChecks = Shapes::ListShape.new(name: 'OnStartDeepHealthChecks')
1641
1646
  OnlineStoreConfig = Shapes::StructureShape.new(name: 'OnlineStoreConfig')
1642
1647
  OnlineStoreConfigUpdate = Shapes::StructureShape.new(name: 'OnlineStoreConfigUpdate')
1643
1648
  OnlineStoreSecurityConfig = Shapes::StructureShape.new(name: 'OnlineStoreSecurityConfig')
@@ -2962,9 +2967,10 @@ module Aws::SageMaker
2962
2967
  ClusterInstanceGroupDetails.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, location_name: "InstanceGroupName"))
2963
2968
  ClusterInstanceGroupDetails.add_member(:instance_type, Shapes::ShapeRef.new(shape: ClusterInstanceType, location_name: "InstanceType"))
2964
2969
  ClusterInstanceGroupDetails.add_member(:life_cycle_config, Shapes::ShapeRef.new(shape: ClusterLifeCycleConfig, location_name: "LifeCycleConfig"))
2965
- ClusterInstanceGroupDetails.add_member(:execution_role, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "ExecutionRole"))
2970
+ ClusterInstanceGroupDetails.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ExecutionRole"))
2966
2971
  ClusterInstanceGroupDetails.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: ClusterThreadsPerCore, location_name: "ThreadsPerCore"))
2967
2972
  ClusterInstanceGroupDetails.add_member(:instance_storage_configs, Shapes::ShapeRef.new(shape: ClusterInstanceStorageConfigs, location_name: "InstanceStorageConfigs"))
2973
+ ClusterInstanceGroupDetails.add_member(:on_start_deep_health_checks, Shapes::ShapeRef.new(shape: OnStartDeepHealthChecks, location_name: "OnStartDeepHealthChecks"))
2968
2974
  ClusterInstanceGroupDetails.struct_class = Types::ClusterInstanceGroupDetails
2969
2975
 
2970
2976
  ClusterInstanceGroupDetailsList.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupDetails)
@@ -2973,9 +2979,10 @@ module Aws::SageMaker
2973
2979
  ClusterInstanceGroupSpecification.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, required: true, location_name: "InstanceGroupName"))
2974
2980
  ClusterInstanceGroupSpecification.add_member(:instance_type, Shapes::ShapeRef.new(shape: ClusterInstanceType, required: true, location_name: "InstanceType"))
2975
2981
  ClusterInstanceGroupSpecification.add_member(:life_cycle_config, Shapes::ShapeRef.new(shape: ClusterLifeCycleConfig, required: true, location_name: "LifeCycleConfig"))
2976
- ClusterInstanceGroupSpecification.add_member(:execution_role, Shapes::ShapeRef.new(shape: IAMRoleArn, required: true, location_name: "ExecutionRole"))
2982
+ ClusterInstanceGroupSpecification.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "ExecutionRole"))
2977
2983
  ClusterInstanceGroupSpecification.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: ClusterThreadsPerCore, location_name: "ThreadsPerCore"))
2978
2984
  ClusterInstanceGroupSpecification.add_member(:instance_storage_configs, Shapes::ShapeRef.new(shape: ClusterInstanceStorageConfigs, location_name: "InstanceStorageConfigs"))
2985
+ ClusterInstanceGroupSpecification.add_member(:on_start_deep_health_checks, Shapes::ShapeRef.new(shape: OnStartDeepHealthChecks, location_name: "OnStartDeepHealthChecks"))
2979
2986
  ClusterInstanceGroupSpecification.struct_class = Types::ClusterInstanceGroupSpecification
2980
2987
 
2981
2988
  ClusterInstanceGroupSpecifications.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecification)
@@ -3022,6 +3029,12 @@ module Aws::SageMaker
3022
3029
  ClusterNodeSummary.add_member(:instance_status, Shapes::ShapeRef.new(shape: ClusterInstanceStatusDetails, required: true, location_name: "InstanceStatus"))
3023
3030
  ClusterNodeSummary.struct_class = Types::ClusterNodeSummary
3024
3031
 
3032
+ ClusterOrchestrator.add_member(:eks, Shapes::ShapeRef.new(shape: ClusterOrchestratorEksConfig, required: true, location_name: "Eks"))
3033
+ ClusterOrchestrator.struct_class = Types::ClusterOrchestrator
3034
+
3035
+ ClusterOrchestratorEksConfig.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: EksClusterArn, required: true, location_name: "ClusterArn"))
3036
+ ClusterOrchestratorEksConfig.struct_class = Types::ClusterOrchestratorEksConfig
3037
+
3025
3038
  ClusterSummaries.member = Shapes::ShapeRef.new(shape: ClusterSummary)
3026
3039
 
3027
3040
  ClusterSummary.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
@@ -3252,6 +3265,8 @@ module Aws::SageMaker
3252
3265
  CreateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, required: true, location_name: "InstanceGroups"))
3253
3266
  CreateClusterRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
3254
3267
  CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
3268
+ CreateClusterRequest.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
3269
+ CreateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
3255
3270
  CreateClusterRequest.struct_class = Types::CreateClusterRequest
3256
3271
 
3257
3272
  CreateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
@@ -4468,6 +4483,8 @@ module Aws::SageMaker
4468
4483
  DescribeClusterResponse.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
4469
4484
  DescribeClusterResponse.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupDetailsList, required: true, location_name: "InstanceGroups"))
4470
4485
  DescribeClusterResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
4486
+ DescribeClusterResponse.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
4487
+ DescribeClusterResponse.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
4471
4488
  DescribeClusterResponse.struct_class = Types::DescribeClusterResponse
4472
4489
 
4473
4490
  DescribeCodeRepositoryInput.add_member(:code_repository_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CodeRepositoryName"))
@@ -8389,6 +8406,8 @@ module Aws::SageMaker
8389
8406
  OidcMemberDefinition.add_member(:groups, Shapes::ShapeRef.new(shape: Groups, location_name: "Groups"))
8390
8407
  OidcMemberDefinition.struct_class = Types::OidcMemberDefinition
8391
8408
 
8409
+ OnStartDeepHealthChecks.member = Shapes::ShapeRef.new(shape: DeepHealthCheckType)
8410
+
8392
8411
  OnlineStoreConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: OnlineStoreSecurityConfig, location_name: "SecurityConfig"))
8393
8412
  OnlineStoreConfig.add_member(:enable_online_store, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableOnlineStore"))
8394
8413
  OnlineStoreConfig.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
@@ -9968,6 +9987,7 @@ module Aws::SageMaker
9968
9987
 
9969
9988
  UpdateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
9970
9989
  UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, required: true, location_name: "InstanceGroups"))
9990
+ UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
9971
9991
  UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
9972
9992
 
9973
9993
  UpdateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
@@ -4157,6 +4157,11 @@ module Aws::SageMaker
4157
4157
  # SageMaker HyperPod cluster instance group.
4158
4158
  # @return [Array<Types::ClusterInstanceStorageConfig>]
4159
4159
  #
4160
+ # @!attribute [rw] on_start_deep_health_checks
4161
+ # A flag indicating whether deep health checks should be performed
4162
+ # when the cluster instance group is created or updated.
4163
+ # @return [Array<String>]
4164
+ #
4160
4165
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
4161
4166
  #
4162
4167
  class ClusterInstanceGroupDetails < Struct.new(
@@ -4167,7 +4172,8 @@ module Aws::SageMaker
4167
4172
  :life_cycle_config,
4168
4173
  :execution_role,
4169
4174
  :threads_per_core,
4170
- :instance_storage_configs)
4175
+ :instance_storage_configs,
4176
+ :on_start_deep_health_checks)
4171
4177
  SENSITIVE = []
4172
4178
  include Aws::Structure
4173
4179
  end
@@ -4214,6 +4220,11 @@ module Aws::SageMaker
4214
4220
  # the SageMaker HyperPod cluster instance group.
4215
4221
  # @return [Array<Types::ClusterInstanceStorageConfig>]
4216
4222
  #
4223
+ # @!attribute [rw] on_start_deep_health_checks
4224
+ # A flag indicating whether deep health checks should be performed
4225
+ # when the cluster instance group is created or updated.
4226
+ # @return [Array<String>]
4227
+ #
4217
4228
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
4218
4229
  #
4219
4230
  class ClusterInstanceGroupSpecification < Struct.new(
@@ -4223,7 +4234,8 @@ module Aws::SageMaker
4223
4234
  :life_cycle_config,
4224
4235
  :execution_role,
4225
4236
  :threads_per_core,
4226
- :instance_storage_configs)
4237
+ :instance_storage_configs,
4238
+ :on_start_deep_health_checks)
4227
4239
  SENSITIVE = []
4228
4240
  include Aws::Structure
4229
4241
  end
@@ -4436,6 +4448,37 @@ module Aws::SageMaker
4436
4448
  include Aws::Structure
4437
4449
  end
4438
4450
 
4451
+ # The type of orchestrator used for the SageMaker HyperPod cluster.
4452
+ #
4453
+ # @!attribute [rw] eks
4454
+ # The Amazon EKS cluster used as the orchestrator for the SageMaker
4455
+ # HyperPod cluster.
4456
+ # @return [Types::ClusterOrchestratorEksConfig]
4457
+ #
4458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterOrchestrator AWS API Documentation
4459
+ #
4460
+ class ClusterOrchestrator < Struct.new(
4461
+ :eks)
4462
+ SENSITIVE = []
4463
+ include Aws::Structure
4464
+ end
4465
+
4466
+ # The configuration settings for the Amazon EKS cluster used as the
4467
+ # orchestrator for the SageMaker HyperPod cluster.
4468
+ #
4469
+ # @!attribute [rw] cluster_arn
4470
+ # The Amazon Resource Name (ARN) of the Amazon EKS cluster associated
4471
+ # with the SageMaker HyperPod cluster.
4472
+ # @return [String]
4473
+ #
4474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterOrchestratorEksConfig AWS API Documentation
4475
+ #
4476
+ class ClusterOrchestratorEksConfig < Struct.new(
4477
+ :cluster_arn)
4478
+ SENSITIVE = []
4479
+ include Aws::Structure
4480
+ end
4481
+
4439
4482
  # Lists a summary of the properties of a SageMaker HyperPod cluster.
4440
4483
  #
4441
4484
  # @!attribute [rw] cluster_arn
@@ -5738,13 +5781,29 @@ module Aws::SageMaker
5738
5781
  # [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
5739
5782
  # @return [Array<Types::Tag>]
5740
5783
  #
5784
+ # @!attribute [rw] orchestrator
5785
+ # The type of orchestrator to use for the SageMaker HyperPod cluster.
5786
+ # Currently, the only supported value is `"eks"`, which is to use an
5787
+ # Amazon Elastic Kubernetes Service (EKS) cluster as the orchestrator.
5788
+ # @return [Types::ClusterOrchestrator]
5789
+ #
5790
+ # @!attribute [rw] node_recovery
5791
+ # The node recovery mode for the SageMaker HyperPod cluster. When set
5792
+ # to `Automatic`, SageMaker HyperPod will automatically reboot or
5793
+ # replace faulty nodes when issues are detected. When set to `None`,
5794
+ # cluster administrators will need to manually manage any faulty
5795
+ # cluster instances.
5796
+ # @return [String]
5797
+ #
5741
5798
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterRequest AWS API Documentation
5742
5799
  #
5743
5800
  class CreateClusterRequest < Struct.new(
5744
5801
  :cluster_name,
5745
5802
  :instance_groups,
5746
5803
  :vpc_config,
5747
- :tags)
5804
+ :tags,
5805
+ :orchestrator,
5806
+ :node_recovery)
5748
5807
  SENSITIVE = []
5749
5808
  include Aws::Structure
5750
5809
  end
@@ -12807,6 +12866,15 @@ module Aws::SageMaker
12807
12866
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
12808
12867
  # @return [Types::VpcConfig]
12809
12868
  #
12869
+ # @!attribute [rw] orchestrator
12870
+ # The type of orchestrator used for the SageMaker HyperPod cluster.
12871
+ # @return [Types::ClusterOrchestrator]
12872
+ #
12873
+ # @!attribute [rw] node_recovery
12874
+ # The node recovery mode configured for the SageMaker HyperPod
12875
+ # cluster.
12876
+ # @return [String]
12877
+ #
12810
12878
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterResponse AWS API Documentation
12811
12879
  #
12812
12880
  class DescribeClusterResponse < Struct.new(
@@ -12816,7 +12884,9 @@ module Aws::SageMaker
12816
12884
  :creation_time,
12817
12885
  :failure_message,
12818
12886
  :instance_groups,
12819
- :vpc_config)
12887
+ :vpc_config,
12888
+ :orchestrator,
12889
+ :node_recovery)
12820
12890
  SENSITIVE = []
12821
12891
  include Aws::Structure
12822
12892
  end
@@ -44979,11 +45049,17 @@ module Aws::SageMaker
44979
45049
  # Specify the instance groups to update.
44980
45050
  # @return [Array<Types::ClusterInstanceGroupSpecification>]
44981
45051
  #
45052
+ # @!attribute [rw] node_recovery
45053
+ # The node recovery mode to be applied to the SageMaker HyperPod
45054
+ # cluster.
45055
+ # @return [String]
45056
+ #
44982
45057
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterRequest AWS API Documentation
44983
45058
  #
44984
45059
  class UpdateClusterRequest < Struct.new(
44985
45060
  :cluster_name,
44986
- :instance_groups)
45061
+ :instance_groups,
45062
+ :node_recovery)
44987
45063
  SENSITIVE = []
44988
45064
  include Aws::Structure
44989
45065
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.259.0'
56
+ GEM_VERSION = '1.260.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -712,7 +712,8 @@ module Aws
712
712
  volume_size_in_gb: ::Integer
713
713
  }?
714
714
  },
715
- ]?
715
+ ]?,
716
+ on_start_deep_health_checks: Array[("InstanceStress" | "InstanceConnectivity")]?
716
717
  },
717
718
  ],
718
719
  ?vpc_config: {
@@ -724,7 +725,13 @@ module Aws
724
725
  key: ::String,
725
726
  value: ::String
726
727
  },
727
- ]
728
+ ],
729
+ ?orchestrator: {
730
+ eks: {
731
+ cluster_arn: ::String
732
+ }
733
+ },
734
+ ?node_recovery: ("Automatic" | "None")
728
735
  ) -> _CreateClusterResponseSuccess
729
736
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
730
737
 
@@ -4889,6 +4896,8 @@ module Aws
4889
4896
  def failure_message: () -> ::String
4890
4897
  def instance_groups: () -> ::Array[Types::ClusterInstanceGroupDetails]
4891
4898
  def vpc_config: () -> Types::VpcConfig
4899
+ def orchestrator: () -> Types::ClusterOrchestrator
4900
+ def node_recovery: () -> ("Automatic" | "None")
4892
4901
  end
4893
4902
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster-instance_method
4894
4903
  def describe_cluster: (
@@ -8075,9 +8084,11 @@ module Aws
8075
8084
  volume_size_in_gb: ::Integer
8076
8085
  }?
8077
8086
  },
8078
- ]?
8087
+ ]?,
8088
+ on_start_deep_health_checks: Array[("InstanceStress" | "InstanceConnectivity")]?
8079
8089
  },
8080
- ]
8090
+ ],
8091
+ ?node_recovery: ("Automatic" | "None")
8081
8092
  ) -> _UpdateClusterResponseSuccess
8082
8093
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterResponseSuccess
8083
8094
 
data/sig/types.rbs CHANGED
@@ -710,6 +710,7 @@ module Aws::SageMaker
710
710
  attr_accessor execution_role: ::String
711
711
  attr_accessor threads_per_core: ::Integer
712
712
  attr_accessor instance_storage_configs: ::Array[Types::ClusterInstanceStorageConfig]
713
+ attr_accessor on_start_deep_health_checks: ::Array[("InstanceStress" | "InstanceConnectivity")]
713
714
  SENSITIVE: []
714
715
  end
715
716
 
@@ -721,6 +722,7 @@ module Aws::SageMaker
721
722
  attr_accessor execution_role: ::String
722
723
  attr_accessor threads_per_core: ::Integer
723
724
  attr_accessor instance_storage_configs: ::Array[Types::ClusterInstanceStorageConfig]
725
+ attr_accessor on_start_deep_health_checks: ::Array[("InstanceStress" | "InstanceConnectivity")]
724
726
  SENSITIVE: []
725
727
  end
726
728
 
@@ -731,7 +733,7 @@ module Aws::SageMaker
731
733
  end
732
734
 
733
735
  class ClusterInstanceStatusDetails
734
- attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating")
736
+ attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating" | "DeepHealthCheckInProgress")
735
737
  attr_accessor message: ::String
736
738
  SENSITIVE: []
737
739
  end
@@ -777,6 +779,16 @@ module Aws::SageMaker
777
779
  SENSITIVE: []
778
780
  end
779
781
 
782
+ class ClusterOrchestrator
783
+ attr_accessor eks: Types::ClusterOrchestratorEksConfig
784
+ SENSITIVE: []
785
+ end
786
+
787
+ class ClusterOrchestratorEksConfig
788
+ attr_accessor cluster_arn: ::String
789
+ SENSITIVE: []
790
+ end
791
+
780
792
  class ClusterSummary
781
793
  attr_accessor cluster_arn: ::String
782
794
  attr_accessor cluster_name: ::String
@@ -1048,6 +1060,8 @@ module Aws::SageMaker
1048
1060
  attr_accessor instance_groups: ::Array[Types::ClusterInstanceGroupSpecification]
1049
1061
  attr_accessor vpc_config: Types::VpcConfig
1050
1062
  attr_accessor tags: ::Array[Types::Tag]
1063
+ attr_accessor orchestrator: Types::ClusterOrchestrator
1064
+ attr_accessor node_recovery: ("Automatic" | "None")
1051
1065
  SENSITIVE: []
1052
1066
  end
1053
1067
 
@@ -2668,6 +2682,8 @@ module Aws::SageMaker
2668
2682
  attr_accessor failure_message: ::String
2669
2683
  attr_accessor instance_groups: ::Array[Types::ClusterInstanceGroupDetails]
2670
2684
  attr_accessor vpc_config: Types::VpcConfig
2685
+ attr_accessor orchestrator: Types::ClusterOrchestrator
2686
+ attr_accessor node_recovery: ("Automatic" | "None")
2671
2687
  SENSITIVE: []
2672
2688
  end
2673
2689
 
@@ -9337,6 +9353,7 @@ module Aws::SageMaker
9337
9353
  class UpdateClusterRequest
9338
9354
  attr_accessor cluster_name: ::String
9339
9355
  attr_accessor instance_groups: ::Array[Types::ClusterInstanceGroupSpecification]
9356
+ attr_accessor node_recovery: ("Automatic" | "None")
9340
9357
  SENSITIVE: []
9341
9358
  end
9342
9359
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.259.0
4
+ version: 1.260.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-05 00:00:00.000000000 Z
11
+ date: 2024-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core