aws-sdk-sagemaker 1.326.0 → 1.328.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +106 -27
- data/lib/aws-sdk-sagemaker/client_api.rb +35 -0
- data/lib/aws-sdk-sagemaker/types.rb +205 -11
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +34 -10
- data/sig/types.rbs +39 -7
- metadata +1 -1
@@ -313,8 +313,14 @@ 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')
|
323
|
+
ClusterConfigMode = Shapes::StringShape.new(name: 'ClusterConfigMode')
|
318
324
|
ClusterEbsVolumeConfig = Shapes::StructureShape.new(name: 'ClusterEbsVolumeConfig')
|
319
325
|
ClusterEbsVolumeSizeInGB = Shapes::IntegerShape.new(name: 'ClusterEbsVolumeSizeInGB')
|
320
326
|
ClusterEventDetail = Shapes::StructureShape.new(name: 'ClusterEventDetail')
|
@@ -329,6 +335,7 @@ module Aws::SageMaker
|
|
329
335
|
ClusterInstanceGroupSpecification = Shapes::StructureShape.new(name: 'ClusterInstanceGroupSpecification')
|
330
336
|
ClusterInstanceGroupSpecifications = Shapes::ListShape.new(name: 'ClusterInstanceGroupSpecifications')
|
331
337
|
ClusterInstanceGroupsToDelete = Shapes::ListShape.new(name: 'ClusterInstanceGroupsToDelete')
|
338
|
+
ClusterInstanceMemoryAllocationPercentage = Shapes::IntegerShape.new(name: 'ClusterInstanceMemoryAllocationPercentage')
|
332
339
|
ClusterInstancePlacement = Shapes::StructureShape.new(name: 'ClusterInstancePlacement')
|
333
340
|
ClusterInstanceStatus = Shapes::StringShape.new(name: 'ClusterInstanceStatus')
|
334
341
|
ClusterInstanceStatusDetails = Shapes::StructureShape.new(name: 'ClusterInstanceStatusDetails')
|
@@ -369,6 +376,7 @@ module Aws::SageMaker
|
|
369
376
|
ClusterSummaries = Shapes::ListShape.new(name: 'ClusterSummaries')
|
370
377
|
ClusterSummary = Shapes::StructureShape.new(name: 'ClusterSummary')
|
371
378
|
ClusterThreadsPerCore = Shapes::IntegerShape.new(name: 'ClusterThreadsPerCore')
|
379
|
+
ClusterTieredStorageConfig = Shapes::StructureShape.new(name: 'ClusterTieredStorageConfig')
|
372
380
|
CodeEditorAppImageConfig = Shapes::StructureShape.new(name: 'CodeEditorAppImageConfig')
|
373
381
|
CodeEditorAppSettings = Shapes::StructureShape.new(name: 'CodeEditorAppSettings')
|
374
382
|
CodeRepositories = Shapes::ListShape.new(name: 'CodeRepositories')
|
@@ -1194,6 +1202,7 @@ module Aws::SageMaker
|
|
1194
1202
|
HyperbandStrategyConfig = Shapes::StructureShape.new(name: 'HyperbandStrategyConfig')
|
1195
1203
|
HyperbandStrategyMaxResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMaxResource')
|
1196
1204
|
HyperbandStrategyMinResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMinResource')
|
1205
|
+
IPAddressType = Shapes::StringShape.new(name: 'IPAddressType')
|
1197
1206
|
IamIdentity = Shapes::StructureShape.new(name: 'IamIdentity')
|
1198
1207
|
IamPolicyConstraints = Shapes::StructureShape.new(name: 'IamPolicyConstraints')
|
1199
1208
|
IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
|
@@ -3391,6 +3400,16 @@ module Aws::SageMaker
|
|
3391
3400
|
ClarifyTextConfig.add_member(:granularity, Shapes::ShapeRef.new(shape: ClarifyTextGranularity, required: true, location_name: "Granularity"))
|
3392
3401
|
ClarifyTextConfig.struct_class = Types::ClarifyTextConfig
|
3393
3402
|
|
3403
|
+
ClusterAutoScalingConfig.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterAutoScalingMode, required: true, location_name: "Mode"))
|
3404
|
+
ClusterAutoScalingConfig.add_member(:auto_scaler_type, Shapes::ShapeRef.new(shape: ClusterAutoScalerType, location_name: "AutoScalerType"))
|
3405
|
+
ClusterAutoScalingConfig.struct_class = Types::ClusterAutoScalingConfig
|
3406
|
+
|
3407
|
+
ClusterAutoScalingConfigOutput.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterAutoScalingMode, required: true, location_name: "Mode"))
|
3408
|
+
ClusterAutoScalingConfigOutput.add_member(:auto_scaler_type, Shapes::ShapeRef.new(shape: ClusterAutoScalerType, location_name: "AutoScalerType"))
|
3409
|
+
ClusterAutoScalingConfigOutput.add_member(:status, Shapes::ShapeRef.new(shape: ClusterAutoScalingStatus, required: true, location_name: "Status"))
|
3410
|
+
ClusterAutoScalingConfigOutput.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
|
3411
|
+
ClusterAutoScalingConfigOutput.struct_class = Types::ClusterAutoScalingConfigOutput
|
3412
|
+
|
3394
3413
|
ClusterEbsVolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: ClusterEbsVolumeSizeInGB, location_name: "VolumeSizeInGB"))
|
3395
3414
|
ClusterEbsVolumeConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
3396
3415
|
ClusterEbsVolumeConfig.add_member(:root_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "RootVolume", metadata: {"box" => true}))
|
@@ -3578,6 +3597,10 @@ module Aws::SageMaker
|
|
3578
3597
|
ClusterSummary.add_member(:training_plan_arns, Shapes::ShapeRef.new(shape: TrainingPlanArns, location_name: "TrainingPlanArns"))
|
3579
3598
|
ClusterSummary.struct_class = Types::ClusterSummary
|
3580
3599
|
|
3600
|
+
ClusterTieredStorageConfig.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterConfigMode, required: true, location_name: "Mode"))
|
3601
|
+
ClusterTieredStorageConfig.add_member(:instance_memory_allocation_percentage, Shapes::ShapeRef.new(shape: ClusterInstanceMemoryAllocationPercentage, location_name: "InstanceMemoryAllocationPercentage"))
|
3602
|
+
ClusterTieredStorageConfig.struct_class = Types::ClusterTieredStorageConfig
|
3603
|
+
|
3581
3604
|
CodeEditorAppImageConfig.add_member(:file_system_config, Shapes::ShapeRef.new(shape: FileSystemConfig, location_name: "FileSystemConfig"))
|
3582
3605
|
CodeEditorAppImageConfig.add_member(:container_config, Shapes::ShapeRef.new(shape: ContainerConfig, location_name: "ContainerConfig"))
|
3583
3606
|
CodeEditorAppImageConfig.struct_class = Types::CodeEditorAppImageConfig
|
@@ -3838,7 +3861,10 @@ module Aws::SageMaker
|
|
3838
3861
|
CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3839
3862
|
CreateClusterRequest.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
|
3840
3863
|
CreateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
3864
|
+
CreateClusterRequest.add_member(:tiered_storage_config, Shapes::ShapeRef.new(shape: ClusterTieredStorageConfig, location_name: "TieredStorageConfig"))
|
3841
3865
|
CreateClusterRequest.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
|
3866
|
+
CreateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
|
3867
|
+
CreateClusterRequest.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfig, location_name: "AutoScaling"))
|
3842
3868
|
CreateClusterRequest.struct_class = Types::CreateClusterRequest
|
3843
3869
|
|
3844
3870
|
CreateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
|
@@ -4302,6 +4328,7 @@ module Aws::SageMaker
|
|
4302
4328
|
CreateNotebookInstanceInput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "InstanceType"))
|
4303
4329
|
CreateNotebookInstanceInput.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
4304
4330
|
CreateNotebookInstanceInput.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
4331
|
+
CreateNotebookInstanceInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
|
4305
4332
|
CreateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
4306
4333
|
CreateNotebookInstanceInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
4307
4334
|
CreateNotebookInstanceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
@@ -5175,8 +5202,11 @@ module Aws::SageMaker
|
|
5175
5202
|
DescribeClusterResponse.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupDetailsList, location_name: "RestrictedInstanceGroups"))
|
5176
5203
|
DescribeClusterResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
5177
5204
|
DescribeClusterResponse.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
|
5205
|
+
DescribeClusterResponse.add_member(:tiered_storage_config, Shapes::ShapeRef.new(shape: ClusterTieredStorageConfig, location_name: "TieredStorageConfig"))
|
5178
5206
|
DescribeClusterResponse.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
5179
5207
|
DescribeClusterResponse.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
|
5208
|
+
DescribeClusterResponse.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
|
5209
|
+
DescribeClusterResponse.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfigOutput, location_name: "AutoScaling"))
|
5180
5210
|
DescribeClusterResponse.struct_class = Types::DescribeClusterResponse
|
5181
5211
|
|
5182
5212
|
DescribeClusterSchedulerConfigRequest.add_member(:cluster_scheduler_config_id, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigId, required: true, location_name: "ClusterSchedulerConfigId"))
|
@@ -5887,6 +5917,7 @@ module Aws::SageMaker
|
|
5887
5917
|
DescribeNotebookInstanceOutput.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
|
5888
5918
|
DescribeNotebookInstanceOutput.add_member(:url, Shapes::ShapeRef.new(shape: NotebookInstanceUrl, location_name: "Url"))
|
5889
5919
|
DescribeNotebookInstanceOutput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
|
5920
|
+
DescribeNotebookInstanceOutput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
|
5890
5921
|
DescribeNotebookInstanceOutput.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
5891
5922
|
DescribeNotebookInstanceOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroups"))
|
5892
5923
|
DescribeNotebookInstanceOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
@@ -11285,8 +11316,11 @@ module Aws::SageMaker
|
|
11285
11316
|
UpdateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
11286
11317
|
UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, location_name: "InstanceGroups"))
|
11287
11318
|
UpdateClusterRequest.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupSpecifications, location_name: "RestrictedInstanceGroups"))
|
11319
|
+
UpdateClusterRequest.add_member(:tiered_storage_config, Shapes::ShapeRef.new(shape: ClusterTieredStorageConfig, location_name: "TieredStorageConfig"))
|
11288
11320
|
UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
11289
11321
|
UpdateClusterRequest.add_member(:instance_groups_to_delete, Shapes::ShapeRef.new(shape: ClusterInstanceGroupsToDelete, location_name: "InstanceGroupsToDelete"))
|
11322
|
+
UpdateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
|
11323
|
+
UpdateClusterRequest.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfig, location_name: "AutoScaling"))
|
11290
11324
|
UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
|
11291
11325
|
|
11292
11326
|
UpdateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
|
@@ -11551,6 +11585,7 @@ module Aws::SageMaker
|
|
11551
11585
|
|
11552
11586
|
UpdateNotebookInstanceInput.add_member(:notebook_instance_name, Shapes::ShapeRef.new(shape: NotebookInstanceName, required: true, location_name: "NotebookInstanceName"))
|
11553
11587
|
UpdateNotebookInstanceInput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
|
11588
|
+
UpdateNotebookInstanceInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
|
11554
11589
|
UpdateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
11555
11590
|
UpdateNotebookInstanceInput.add_member(:lifecycle_config_name, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigName, location_name: "LifecycleConfigName"))
|
11556
11591
|
UpdateNotebookInstanceInput.add_member(:disassociate_lifecycle_config, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceLifecycleConfig, location_name: "DisassociateLifecycleConfig", metadata: {"box" => true}))
|
@@ -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
|
@@ -5794,6 +5848,36 @@ module Aws::SageMaker
|
|
5794
5848
|
include Aws::Structure
|
5795
5849
|
end
|
5796
5850
|
|
5851
|
+
# Defines the configuration for managed tier checkpointing in a HyperPod
|
5852
|
+
# cluster. Managed tier checkpointing uses multiple storage tiers,
|
5853
|
+
# including cluster CPU memory, to provide faster checkpoint operations
|
5854
|
+
# and improved fault tolerance for large-scale model training. The
|
5855
|
+
# system automatically saves checkpoints at high frequency to memory and
|
5856
|
+
# periodically persists them to durable storage, like Amazon S3.
|
5857
|
+
#
|
5858
|
+
# @!attribute [rw] mode
|
5859
|
+
# Specifies whether managed tier checkpointing is enabled or disabled
|
5860
|
+
# for the HyperPod cluster. When set to `Enable`, the system installs
|
5861
|
+
# a memory management daemon that provides disaggregated memory as a
|
5862
|
+
# service for checkpoint storage. When set to `Disable`, the feature
|
5863
|
+
# is turned off and the memory management daemon is removed from the
|
5864
|
+
# cluster.
|
5865
|
+
# @return [String]
|
5866
|
+
#
|
5867
|
+
# @!attribute [rw] instance_memory_allocation_percentage
|
5868
|
+
# The percentage (int) of cluster memory to allocate for
|
5869
|
+
# checkpointing.
|
5870
|
+
# @return [Integer]
|
5871
|
+
#
|
5872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterTieredStorageConfig AWS API Documentation
|
5873
|
+
#
|
5874
|
+
class ClusterTieredStorageConfig < Struct.new(
|
5875
|
+
:mode,
|
5876
|
+
:instance_memory_allocation_percentage)
|
5877
|
+
SENSITIVE = []
|
5878
|
+
include Aws::Structure
|
5879
|
+
end
|
5880
|
+
|
5797
5881
|
# The configuration for the file system and kernels in a SageMaker image
|
5798
5882
|
# running as a Code Editor app. The `FileSystemConfig` object is not
|
5799
5883
|
# supported.
|
@@ -7312,6 +7396,13 @@ module Aws::SageMaker
|
|
7312
7396
|
# cluster instances.
|
7313
7397
|
# @return [String]
|
7314
7398
|
#
|
7399
|
+
# @!attribute [rw] tiered_storage_config
|
7400
|
+
# The configuration for managed tier checkpointing on the HyperPod
|
7401
|
+
# cluster. When enabled, this feature uses a multi-tier storage
|
7402
|
+
# approach for storing model checkpoints, providing faster checkpoint
|
7403
|
+
# operations and improved fault tolerance across cluster nodes.
|
7404
|
+
# @return [Types::ClusterTieredStorageConfig]
|
7405
|
+
#
|
7315
7406
|
# @!attribute [rw] node_provisioning_mode
|
7316
7407
|
# The mode for provisioning nodes in the cluster. You can specify the
|
7317
7408
|
# following modes:
|
@@ -7327,6 +7418,21 @@ module Aws::SageMaker
|
|
7327
7418
|
# ^
|
7328
7419
|
# @return [String]
|
7329
7420
|
#
|
7421
|
+
# @!attribute [rw] cluster_role
|
7422
|
+
# The Amazon Resource Name (ARN) of the IAM role that HyperPod assumes
|
7423
|
+
# to perform cluster autoscaling operations. This role must have
|
7424
|
+
# permissions for `sagemaker:BatchAddClusterNodes` and
|
7425
|
+
# `sagemaker:BatchDeleteClusterNodes`. This is only required when
|
7426
|
+
# autoscaling is enabled and when HyperPod is performing autoscaling
|
7427
|
+
# operations.
|
7428
|
+
# @return [String]
|
7429
|
+
#
|
7430
|
+
# @!attribute [rw] auto_scaling
|
7431
|
+
# The autoscaling configuration for the cluster. Enables automatic
|
7432
|
+
# scaling of cluster nodes based on workload demand using a
|
7433
|
+
# Karpenter-based system.
|
7434
|
+
# @return [Types::ClusterAutoScalingConfig]
|
7435
|
+
#
|
7330
7436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterRequest AWS API Documentation
|
7331
7437
|
#
|
7332
7438
|
class CreateClusterRequest < Struct.new(
|
@@ -7337,7 +7443,10 @@ module Aws::SageMaker
|
|
7337
7443
|
:tags,
|
7338
7444
|
:orchestrator,
|
7339
7445
|
:node_recovery,
|
7340
|
-
:
|
7446
|
+
:tiered_storage_config,
|
7447
|
+
:node_provisioning_mode,
|
7448
|
+
:cluster_role,
|
7449
|
+
:auto_scaling)
|
7341
7450
|
SENSITIVE = []
|
7342
7451
|
include Aws::Structure
|
7343
7452
|
end
|
@@ -9352,13 +9461,14 @@ module Aws::SageMaker
|
|
9352
9461
|
#
|
9353
9462
|
# * The name can't end with "-metadata".
|
9354
9463
|
#
|
9355
|
-
# * If you are using one of the
|
9356
|
-
# the attribute name *must* end with "-ref".
|
9357
|
-
# are using is not listed below, the attribute name *must not* end
|
9358
|
-
# with "-ref".
|
9464
|
+
# * If you are using one of the [built-in task types][1] or one of the
|
9465
|
+
# following, the attribute name *must* end with "-ref".
|
9359
9466
|
#
|
9360
|
-
# *
|
9361
|
-
#
|
9467
|
+
# * Image semantic segmentation (`SemanticSegmentation)` and
|
9468
|
+
# adjustment (`AdjustmentSemanticSegmentation`) labeling jobs for
|
9469
|
+
# this task type. One exception is that verification
|
9470
|
+
# (`VerificationSemanticSegmentation`) *must not* end with
|
9471
|
+
# -"ref".
|
9362
9472
|
#
|
9363
9473
|
# * Video frame object detection (`VideoObjectDetection`), and
|
9364
9474
|
# adjustment and verification (`AdjustmentVideoObjectDetection`)
|
@@ -10390,6 +10500,13 @@ module Aws::SageMaker
|
|
10390
10500
|
# groups must be for the same VPC as specified in the subnet.
|
10391
10501
|
# @return [Array<String>]
|
10392
10502
|
#
|
10503
|
+
# @!attribute [rw] ip_address_type
|
10504
|
+
# The IP address type for the notebook instance. Specify `ipv4` for
|
10505
|
+
# IPv4-only connectivity or `dualstack` for both IPv4 and IPv6
|
10506
|
+
# connectivity. When you specify `dualstack`, the subnet must support
|
10507
|
+
# IPv6 CIDR blocks. If not specified, defaults to `ipv4`.
|
10508
|
+
# @return [String]
|
10509
|
+
#
|
10393
10510
|
# @!attribute [rw] role_arn
|
10394
10511
|
# When you send any requests to Amazon Web Services resources from the
|
10395
10512
|
# notebook instance, SageMaker AI assumes this role to perform tasks
|
@@ -10532,6 +10649,7 @@ module Aws::SageMaker
|
|
10532
10649
|
:instance_type,
|
10533
10650
|
:subnet_id,
|
10534
10651
|
:security_group_ids,
|
10652
|
+
:ip_address_type,
|
10535
10653
|
:role_arn,
|
10536
10654
|
:kms_key_id,
|
10537
10655
|
:tags,
|
@@ -15028,6 +15146,13 @@ module Aws::SageMaker
|
|
15028
15146
|
# The type of orchestrator used for the SageMaker HyperPod cluster.
|
15029
15147
|
# @return [Types::ClusterOrchestrator]
|
15030
15148
|
#
|
15149
|
+
# @!attribute [rw] tiered_storage_config
|
15150
|
+
# The current configuration for managed tier checkpointing on the
|
15151
|
+
# HyperPod cluster. For example, this shows whether the feature is
|
15152
|
+
# enabled and the percentage of cluster memory allocated for
|
15153
|
+
# checkpoint storage.
|
15154
|
+
# @return [Types::ClusterTieredStorageConfig]
|
15155
|
+
#
|
15031
15156
|
# @!attribute [rw] node_recovery
|
15032
15157
|
# The node recovery mode configured for the SageMaker HyperPod
|
15033
15158
|
# cluster.
|
@@ -15037,6 +15162,15 @@ module Aws::SageMaker
|
|
15037
15162
|
# The mode used for provisioning nodes in the cluster.
|
15038
15163
|
# @return [String]
|
15039
15164
|
#
|
15165
|
+
# @!attribute [rw] cluster_role
|
15166
|
+
# The Amazon Resource Name (ARN) of the IAM role that HyperPod uses
|
15167
|
+
# for cluster autoscaling operations.
|
15168
|
+
# @return [String]
|
15169
|
+
#
|
15170
|
+
# @!attribute [rw] auto_scaling
|
15171
|
+
# The current autoscaling configuration and status for the autoscaler.
|
15172
|
+
# @return [Types::ClusterAutoScalingConfigOutput]
|
15173
|
+
#
|
15040
15174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterResponse AWS API Documentation
|
15041
15175
|
#
|
15042
15176
|
class DescribeClusterResponse < Struct.new(
|
@@ -15049,8 +15183,11 @@ module Aws::SageMaker
|
|
15049
15183
|
:restricted_instance_groups,
|
15050
15184
|
:vpc_config,
|
15051
15185
|
:orchestrator,
|
15186
|
+
:tiered_storage_config,
|
15052
15187
|
:node_recovery,
|
15053
|
-
:node_provisioning_mode
|
15188
|
+
:node_provisioning_mode,
|
15189
|
+
:cluster_role,
|
15190
|
+
:auto_scaling)
|
15054
15191
|
SENSITIVE = []
|
15055
15192
|
include Aws::Structure
|
15056
15193
|
end
|
@@ -18940,6 +19077,12 @@ module Aws::SageMaker
|
|
18940
19077
|
# The type of ML compute instance running on the notebook instance.
|
18941
19078
|
# @return [String]
|
18942
19079
|
#
|
19080
|
+
# @!attribute [rw] ip_address_type
|
19081
|
+
# The IP address type configured for the notebook instance. Returns
|
19082
|
+
# `ipv4` for IPv4-only connectivity or `dualstack` for both IPv4 and
|
19083
|
+
# IPv6 connectivity.
|
19084
|
+
# @return [String]
|
19085
|
+
#
|
18943
19086
|
# @!attribute [rw] subnet_id
|
18944
19087
|
# The ID of the VPC subnet.
|
18945
19088
|
# @return [String]
|
@@ -19073,6 +19216,7 @@ module Aws::SageMaker
|
|
19073
19216
|
:failure_reason,
|
19074
19217
|
:url,
|
19075
19218
|
:instance_type,
|
19219
|
+
:ip_address_type,
|
19076
19220
|
:subnet_id,
|
19077
19221
|
:security_groups,
|
19078
19222
|
:role_arn,
|
@@ -19249,6 +19393,27 @@ module Aws::SageMaker
|
|
19249
19393
|
#
|
19250
19394
|
# @!attribute [rw] status
|
19251
19395
|
# The status of the SageMaker Partner AI App.
|
19396
|
+
#
|
19397
|
+
# * Creating: SageMaker AI is creating the partner AI app. The partner
|
19398
|
+
# AI app is not available during creation.
|
19399
|
+
#
|
19400
|
+
# * Updating: SageMaker AI is updating the partner AI app. The partner
|
19401
|
+
# AI app is not available when updating.
|
19402
|
+
#
|
19403
|
+
# * Deleting: SageMaker AI is deleting the partner AI app. The partner
|
19404
|
+
# AI app is not available during deletion.
|
19405
|
+
#
|
19406
|
+
# * Available: The partner AI app is provisioned and accessible.
|
19407
|
+
#
|
19408
|
+
# * Failed: The partner AI app is in a failed state and isn't
|
19409
|
+
# available. SageMaker AI is investigating the issue. For further
|
19410
|
+
# guidance, contact Amazon Web Services Support.
|
19411
|
+
#
|
19412
|
+
# * UpdateFailed: The partner AI app couldn't be updated but is
|
19413
|
+
# available.
|
19414
|
+
#
|
19415
|
+
# * Deleted: The partner AI app is permanently deleted and not
|
19416
|
+
# available.
|
19252
19417
|
# @return [String]
|
19253
19418
|
#
|
19254
19419
|
# @!attribute [rw] creation_time
|
@@ -21483,8 +21648,7 @@ module Aws::SageMaker
|
|
21483
21648
|
# @return [Array<String>]
|
21484
21649
|
#
|
21485
21650
|
# @!attribute [rw] rootless_docker
|
21486
|
-
# Indicates whether to use rootless Docker.
|
21487
|
-
# `DISABLED`.
|
21651
|
+
# Indicates whether to use rootless Docker.
|
21488
21652
|
# @return [String]
|
21489
21653
|
#
|
21490
21654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DockerSettings AWS API Documentation
|
@@ -50541,6 +50705,13 @@ module Aws::SageMaker
|
|
50541
50705
|
# to be created in the SageMaker HyperPod cluster.
|
50542
50706
|
# @return [Array<Types::ClusterRestrictedInstanceGroupSpecification>]
|
50543
50707
|
#
|
50708
|
+
# @!attribute [rw] tiered_storage_config
|
50709
|
+
# Updates the configuration for managed tier checkpointing on the
|
50710
|
+
# HyperPod cluster. For example, you can enable or disable the feature
|
50711
|
+
# and modify the percentage of cluster memory allocated for checkpoint
|
50712
|
+
# storage.
|
50713
|
+
# @return [Types::ClusterTieredStorageConfig]
|
50714
|
+
#
|
50544
50715
|
# @!attribute [rw] node_recovery
|
50545
50716
|
# The node recovery mode to be applied to the SageMaker HyperPod
|
50546
50717
|
# cluster.
|
@@ -50551,14 +50722,28 @@ module Aws::SageMaker
|
|
50551
50722
|
# as the separator between multiple names.
|
50552
50723
|
# @return [Array<String>]
|
50553
50724
|
#
|
50725
|
+
# @!attribute [rw] cluster_role
|
50726
|
+
# The Amazon Resource Name (ARN) of the IAM role that HyperPod assumes
|
50727
|
+
# for cluster autoscaling operations. Cannot be updated while
|
50728
|
+
# autoscaling is enabled.
|
50729
|
+
# @return [String]
|
50730
|
+
#
|
50731
|
+
# @!attribute [rw] auto_scaling
|
50732
|
+
# Updates the autoscaling configuration for the cluster. Use to enable
|
50733
|
+
# or disable automatic node scaling.
|
50734
|
+
# @return [Types::ClusterAutoScalingConfig]
|
50735
|
+
#
|
50554
50736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterRequest AWS API Documentation
|
50555
50737
|
#
|
50556
50738
|
class UpdateClusterRequest < Struct.new(
|
50557
50739
|
:cluster_name,
|
50558
50740
|
:instance_groups,
|
50559
50741
|
:restricted_instance_groups,
|
50742
|
+
:tiered_storage_config,
|
50560
50743
|
:node_recovery,
|
50561
|
-
:instance_groups_to_delete
|
50744
|
+
:instance_groups_to_delete,
|
50745
|
+
:cluster_role,
|
50746
|
+
:auto_scaling)
|
50562
50747
|
SENSITIVE = []
|
50563
50748
|
include Aws::Structure
|
50564
50749
|
end
|
@@ -51934,6 +52119,14 @@ module Aws::SageMaker
|
|
51934
52119
|
# The Amazon ML compute instance type.
|
51935
52120
|
# @return [String]
|
51936
52121
|
#
|
52122
|
+
# @!attribute [rw] ip_address_type
|
52123
|
+
# The IP address type for the notebook instance. Specify `ipv4` for
|
52124
|
+
# IPv4-only connectivity or `dualstack` for both IPv4 and IPv6
|
52125
|
+
# connectivity. The notebook instance must be stopped before updating
|
52126
|
+
# this setting. When you specify `dualstack`, the subnet must support
|
52127
|
+
# IPv6 addressing.
|
52128
|
+
# @return [String]
|
52129
|
+
#
|
51937
52130
|
# @!attribute [rw] role_arn
|
51938
52131
|
# The Amazon Resource Name (ARN) of the IAM role that SageMaker AI can
|
51939
52132
|
# assume to access the notebook instance. For more information, see
|
@@ -52060,6 +52253,7 @@ module Aws::SageMaker
|
|
52060
52253
|
class UpdateNotebookInstanceInput < Struct.new(
|
52061
52254
|
:notebook_instance_name,
|
52062
52255
|
:instance_type,
|
52256
|
+
:ip_address_type,
|
52063
52257
|
:role_arn,
|
52064
52258
|
:lifecycle_config_name,
|
52065
52259
|
:disassociate_lifecycle_config,
|