aws-sdk-sagemaker 1.327.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +67 -27
- data/lib/aws-sdk-sagemaker/client_api.rb +14 -0
- data/lib/aws-sdk-sagemaker/types.rb +107 -8
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +20 -8
- data/sig/types.rbs +19 -7
- metadata +1 -1
@@ -320,6 +320,7 @@ module Aws::SageMaker
|
|
320
320
|
ClusterAutoScalingStatus = Shapes::StringShape.new(name: 'ClusterAutoScalingStatus')
|
321
321
|
ClusterAvailabilityZone = Shapes::StringShape.new(name: 'ClusterAvailabilityZone')
|
322
322
|
ClusterAvailabilityZoneId = Shapes::StringShape.new(name: 'ClusterAvailabilityZoneId')
|
323
|
+
ClusterConfigMode = Shapes::StringShape.new(name: 'ClusterConfigMode')
|
323
324
|
ClusterEbsVolumeConfig = Shapes::StructureShape.new(name: 'ClusterEbsVolumeConfig')
|
324
325
|
ClusterEbsVolumeSizeInGB = Shapes::IntegerShape.new(name: 'ClusterEbsVolumeSizeInGB')
|
325
326
|
ClusterEventDetail = Shapes::StructureShape.new(name: 'ClusterEventDetail')
|
@@ -334,6 +335,7 @@ module Aws::SageMaker
|
|
334
335
|
ClusterInstanceGroupSpecification = Shapes::StructureShape.new(name: 'ClusterInstanceGroupSpecification')
|
335
336
|
ClusterInstanceGroupSpecifications = Shapes::ListShape.new(name: 'ClusterInstanceGroupSpecifications')
|
336
337
|
ClusterInstanceGroupsToDelete = Shapes::ListShape.new(name: 'ClusterInstanceGroupsToDelete')
|
338
|
+
ClusterInstanceMemoryAllocationPercentage = Shapes::IntegerShape.new(name: 'ClusterInstanceMemoryAllocationPercentage')
|
337
339
|
ClusterInstancePlacement = Shapes::StructureShape.new(name: 'ClusterInstancePlacement')
|
338
340
|
ClusterInstanceStatus = Shapes::StringShape.new(name: 'ClusterInstanceStatus')
|
339
341
|
ClusterInstanceStatusDetails = Shapes::StructureShape.new(name: 'ClusterInstanceStatusDetails')
|
@@ -374,6 +376,7 @@ module Aws::SageMaker
|
|
374
376
|
ClusterSummaries = Shapes::ListShape.new(name: 'ClusterSummaries')
|
375
377
|
ClusterSummary = Shapes::StructureShape.new(name: 'ClusterSummary')
|
376
378
|
ClusterThreadsPerCore = Shapes::IntegerShape.new(name: 'ClusterThreadsPerCore')
|
379
|
+
ClusterTieredStorageConfig = Shapes::StructureShape.new(name: 'ClusterTieredStorageConfig')
|
377
380
|
CodeEditorAppImageConfig = Shapes::StructureShape.new(name: 'CodeEditorAppImageConfig')
|
378
381
|
CodeEditorAppSettings = Shapes::StructureShape.new(name: 'CodeEditorAppSettings')
|
379
382
|
CodeRepositories = Shapes::ListShape.new(name: 'CodeRepositories')
|
@@ -1199,6 +1202,7 @@ module Aws::SageMaker
|
|
1199
1202
|
HyperbandStrategyConfig = Shapes::StructureShape.new(name: 'HyperbandStrategyConfig')
|
1200
1203
|
HyperbandStrategyMaxResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMaxResource')
|
1201
1204
|
HyperbandStrategyMinResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMinResource')
|
1205
|
+
IPAddressType = Shapes::StringShape.new(name: 'IPAddressType')
|
1202
1206
|
IamIdentity = Shapes::StructureShape.new(name: 'IamIdentity')
|
1203
1207
|
IamPolicyConstraints = Shapes::StructureShape.new(name: 'IamPolicyConstraints')
|
1204
1208
|
IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
|
@@ -3593,6 +3597,10 @@ module Aws::SageMaker
|
|
3593
3597
|
ClusterSummary.add_member(:training_plan_arns, Shapes::ShapeRef.new(shape: TrainingPlanArns, location_name: "TrainingPlanArns"))
|
3594
3598
|
ClusterSummary.struct_class = Types::ClusterSummary
|
3595
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
|
+
|
3596
3604
|
CodeEditorAppImageConfig.add_member(:file_system_config, Shapes::ShapeRef.new(shape: FileSystemConfig, location_name: "FileSystemConfig"))
|
3597
3605
|
CodeEditorAppImageConfig.add_member(:container_config, Shapes::ShapeRef.new(shape: ContainerConfig, location_name: "ContainerConfig"))
|
3598
3606
|
CodeEditorAppImageConfig.struct_class = Types::CodeEditorAppImageConfig
|
@@ -3853,6 +3861,7 @@ module Aws::SageMaker
|
|
3853
3861
|
CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3854
3862
|
CreateClusterRequest.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
|
3855
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"))
|
3856
3865
|
CreateClusterRequest.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
|
3857
3866
|
CreateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
|
3858
3867
|
CreateClusterRequest.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfig, location_name: "AutoScaling"))
|
@@ -4319,6 +4328,7 @@ module Aws::SageMaker
|
|
4319
4328
|
CreateNotebookInstanceInput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "InstanceType"))
|
4320
4329
|
CreateNotebookInstanceInput.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
4321
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"))
|
4322
4332
|
CreateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
4323
4333
|
CreateNotebookInstanceInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
4324
4334
|
CreateNotebookInstanceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
@@ -5192,6 +5202,7 @@ module Aws::SageMaker
|
|
5192
5202
|
DescribeClusterResponse.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupDetailsList, location_name: "RestrictedInstanceGroups"))
|
5193
5203
|
DescribeClusterResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
5194
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"))
|
5195
5206
|
DescribeClusterResponse.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
5196
5207
|
DescribeClusterResponse.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
|
5197
5208
|
DescribeClusterResponse.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
|
@@ -5906,6 +5917,7 @@ module Aws::SageMaker
|
|
5906
5917
|
DescribeNotebookInstanceOutput.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
|
5907
5918
|
DescribeNotebookInstanceOutput.add_member(:url, Shapes::ShapeRef.new(shape: NotebookInstanceUrl, location_name: "Url"))
|
5908
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"))
|
5909
5921
|
DescribeNotebookInstanceOutput.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
5910
5922
|
DescribeNotebookInstanceOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroups"))
|
5911
5923
|
DescribeNotebookInstanceOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
@@ -11304,6 +11316,7 @@ module Aws::SageMaker
|
|
11304
11316
|
UpdateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
11305
11317
|
UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, location_name: "InstanceGroups"))
|
11306
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"))
|
11307
11320
|
UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
11308
11321
|
UpdateClusterRequest.add_member(:instance_groups_to_delete, Shapes::ShapeRef.new(shape: ClusterInstanceGroupsToDelete, location_name: "InstanceGroupsToDelete"))
|
11309
11322
|
UpdateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
|
@@ -11572,6 +11585,7 @@ module Aws::SageMaker
|
|
11572
11585
|
|
11573
11586
|
UpdateNotebookInstanceInput.add_member(:notebook_instance_name, Shapes::ShapeRef.new(shape: NotebookInstanceName, required: true, location_name: "NotebookInstanceName"))
|
11574
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"))
|
11575
11589
|
UpdateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
11576
11590
|
UpdateNotebookInstanceInput.add_member(:lifecycle_config_name, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigName, location_name: "LifecycleConfigName"))
|
11577
11591
|
UpdateNotebookInstanceInput.add_member(:disassociate_lifecycle_config, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceLifecycleConfig, location_name: "DisassociateLifecycleConfig", metadata: {"box" => true}))
|
@@ -5848,6 +5848,36 @@ module Aws::SageMaker
|
|
5848
5848
|
include Aws::Structure
|
5849
5849
|
end
|
5850
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
|
+
|
5851
5881
|
# The configuration for the file system and kernels in a SageMaker image
|
5852
5882
|
# running as a Code Editor app. The `FileSystemConfig` object is not
|
5853
5883
|
# supported.
|
@@ -7366,6 +7396,13 @@ module Aws::SageMaker
|
|
7366
7396
|
# cluster instances.
|
7367
7397
|
# @return [String]
|
7368
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
|
+
#
|
7369
7406
|
# @!attribute [rw] node_provisioning_mode
|
7370
7407
|
# The mode for provisioning nodes in the cluster. You can specify the
|
7371
7408
|
# following modes:
|
@@ -7406,6 +7443,7 @@ module Aws::SageMaker
|
|
7406
7443
|
:tags,
|
7407
7444
|
:orchestrator,
|
7408
7445
|
:node_recovery,
|
7446
|
+
:tiered_storage_config,
|
7409
7447
|
:node_provisioning_mode,
|
7410
7448
|
:cluster_role,
|
7411
7449
|
:auto_scaling)
|
@@ -9423,13 +9461,14 @@ module Aws::SageMaker
|
|
9423
9461
|
#
|
9424
9462
|
# * The name can't end with "-metadata".
|
9425
9463
|
#
|
9426
|
-
# * If you are using one of the
|
9427
|
-
# the attribute name *must* end with "-ref".
|
9428
|
-
# are using is not listed below, the attribute name *must not* end
|
9429
|
-
# 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".
|
9430
9466
|
#
|
9431
|
-
# *
|
9432
|
-
#
|
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".
|
9433
9472
|
#
|
9434
9473
|
# * Video frame object detection (`VideoObjectDetection`), and
|
9435
9474
|
# adjustment and verification (`AdjustmentVideoObjectDetection`)
|
@@ -10461,6 +10500,13 @@ module Aws::SageMaker
|
|
10461
10500
|
# groups must be for the same VPC as specified in the subnet.
|
10462
10501
|
# @return [Array<String>]
|
10463
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
|
+
#
|
10464
10510
|
# @!attribute [rw] role_arn
|
10465
10511
|
# When you send any requests to Amazon Web Services resources from the
|
10466
10512
|
# notebook instance, SageMaker AI assumes this role to perform tasks
|
@@ -10603,6 +10649,7 @@ module Aws::SageMaker
|
|
10603
10649
|
:instance_type,
|
10604
10650
|
:subnet_id,
|
10605
10651
|
:security_group_ids,
|
10652
|
+
:ip_address_type,
|
10606
10653
|
:role_arn,
|
10607
10654
|
:kms_key_id,
|
10608
10655
|
:tags,
|
@@ -15099,6 +15146,13 @@ module Aws::SageMaker
|
|
15099
15146
|
# The type of orchestrator used for the SageMaker HyperPod cluster.
|
15100
15147
|
# @return [Types::ClusterOrchestrator]
|
15101
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
|
+
#
|
15102
15156
|
# @!attribute [rw] node_recovery
|
15103
15157
|
# The node recovery mode configured for the SageMaker HyperPod
|
15104
15158
|
# cluster.
|
@@ -15129,6 +15183,7 @@ module Aws::SageMaker
|
|
15129
15183
|
:restricted_instance_groups,
|
15130
15184
|
:vpc_config,
|
15131
15185
|
:orchestrator,
|
15186
|
+
:tiered_storage_config,
|
15132
15187
|
:node_recovery,
|
15133
15188
|
:node_provisioning_mode,
|
15134
15189
|
:cluster_role,
|
@@ -19022,6 +19077,12 @@ module Aws::SageMaker
|
|
19022
19077
|
# The type of ML compute instance running on the notebook instance.
|
19023
19078
|
# @return [String]
|
19024
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
|
+
#
|
19025
19086
|
# @!attribute [rw] subnet_id
|
19026
19087
|
# The ID of the VPC subnet.
|
19027
19088
|
# @return [String]
|
@@ -19155,6 +19216,7 @@ module Aws::SageMaker
|
|
19155
19216
|
:failure_reason,
|
19156
19217
|
:url,
|
19157
19218
|
:instance_type,
|
19219
|
+
:ip_address_type,
|
19158
19220
|
:subnet_id,
|
19159
19221
|
:security_groups,
|
19160
19222
|
:role_arn,
|
@@ -19331,6 +19393,27 @@ module Aws::SageMaker
|
|
19331
19393
|
#
|
19332
19394
|
# @!attribute [rw] status
|
19333
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.
|
19334
19417
|
# @return [String]
|
19335
19418
|
#
|
19336
19419
|
# @!attribute [rw] creation_time
|
@@ -21565,8 +21648,7 @@ module Aws::SageMaker
|
|
21565
21648
|
# @return [Array<String>]
|
21566
21649
|
#
|
21567
21650
|
# @!attribute [rw] rootless_docker
|
21568
|
-
# Indicates whether to use rootless Docker.
|
21569
|
-
# `DISABLED`.
|
21651
|
+
# Indicates whether to use rootless Docker.
|
21570
21652
|
# @return [String]
|
21571
21653
|
#
|
21572
21654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DockerSettings AWS API Documentation
|
@@ -50623,6 +50705,13 @@ module Aws::SageMaker
|
|
50623
50705
|
# to be created in the SageMaker HyperPod cluster.
|
50624
50706
|
# @return [Array<Types::ClusterRestrictedInstanceGroupSpecification>]
|
50625
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
|
+
#
|
50626
50715
|
# @!attribute [rw] node_recovery
|
50627
50716
|
# The node recovery mode to be applied to the SageMaker HyperPod
|
50628
50717
|
# cluster.
|
@@ -50650,6 +50739,7 @@ module Aws::SageMaker
|
|
50650
50739
|
:cluster_name,
|
50651
50740
|
:instance_groups,
|
50652
50741
|
:restricted_instance_groups,
|
50742
|
+
:tiered_storage_config,
|
50653
50743
|
:node_recovery,
|
50654
50744
|
:instance_groups_to_delete,
|
50655
50745
|
:cluster_role,
|
@@ -52029,6 +52119,14 @@ module Aws::SageMaker
|
|
52029
52119
|
# The Amazon ML compute instance type.
|
52030
52120
|
# @return [String]
|
52031
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
|
+
#
|
52032
52130
|
# @!attribute [rw] role_arn
|
52033
52131
|
# The Amazon Resource Name (ARN) of the IAM role that SageMaker AI can
|
52034
52132
|
# assume to access the notebook instance. For more information, see
|
@@ -52155,6 +52253,7 @@ module Aws::SageMaker
|
|
52155
52253
|
class UpdateNotebookInstanceInput < Struct.new(
|
52156
52254
|
:notebook_instance_name,
|
52157
52255
|
:instance_type,
|
52256
|
+
:ip_address_type,
|
52158
52257
|
:role_arn,
|
52159
52258
|
:lifecycle_config_name,
|
52160
52259
|
:disassociate_lifecycle_config,
|