aws-sdk-sagemaker 1.258.0 → 1.260.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 +156 -3
- data/lib/aws-sdk-sagemaker/client_api.rb +46 -0
- data/lib/aws-sdk-sagemaker/types.rb +186 -8
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +121 -10
- data/sig/types.rbs +45 -1
- metadata +2 -2
@@ -1396,6 +1396,21 @@ module Aws::SageMaker
|
|
1396
1396
|
include Aws::Structure
|
1397
1397
|
end
|
1398
1398
|
|
1399
|
+
# Settings that are used to configure and manage the lifecycle of Amazon
|
1400
|
+
# SageMaker Studio applications.
|
1401
|
+
#
|
1402
|
+
# @!attribute [rw] idle_settings
|
1403
|
+
# Settings related to idle shutdown of Studio applications.
|
1404
|
+
# @return [Types::IdleSettings]
|
1405
|
+
#
|
1406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppLifecycleManagement AWS API Documentation
|
1407
|
+
#
|
1408
|
+
class AppLifecycleManagement < Struct.new(
|
1409
|
+
:idle_settings)
|
1410
|
+
SENSITIVE = []
|
1411
|
+
include Aws::Structure
|
1412
|
+
end
|
1413
|
+
|
1399
1414
|
# Configuration to run a processing job in a specified container image.
|
1400
1415
|
#
|
1401
1416
|
# @!attribute [rw] image_uri
|
@@ -4142,6 +4157,11 @@ module Aws::SageMaker
|
|
4142
4157
|
# SageMaker HyperPod cluster instance group.
|
4143
4158
|
# @return [Array<Types::ClusterInstanceStorageConfig>]
|
4144
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
|
+
#
|
4145
4165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
|
4146
4166
|
#
|
4147
4167
|
class ClusterInstanceGroupDetails < Struct.new(
|
@@ -4152,7 +4172,8 @@ module Aws::SageMaker
|
|
4152
4172
|
:life_cycle_config,
|
4153
4173
|
:execution_role,
|
4154
4174
|
:threads_per_core,
|
4155
|
-
:instance_storage_configs
|
4175
|
+
:instance_storage_configs,
|
4176
|
+
:on_start_deep_health_checks)
|
4156
4177
|
SENSITIVE = []
|
4157
4178
|
include Aws::Structure
|
4158
4179
|
end
|
@@ -4199,6 +4220,11 @@ module Aws::SageMaker
|
|
4199
4220
|
# the SageMaker HyperPod cluster instance group.
|
4200
4221
|
# @return [Array<Types::ClusterInstanceStorageConfig>]
|
4201
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
|
+
#
|
4202
4228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
|
4203
4229
|
#
|
4204
4230
|
class ClusterInstanceGroupSpecification < Struct.new(
|
@@ -4208,7 +4234,8 @@ module Aws::SageMaker
|
|
4208
4234
|
:life_cycle_config,
|
4209
4235
|
:execution_role,
|
4210
4236
|
:threads_per_core,
|
4211
|
-
:instance_storage_configs
|
4237
|
+
:instance_storage_configs,
|
4238
|
+
:on_start_deep_health_checks)
|
4212
4239
|
SENSITIVE = []
|
4213
4240
|
include Aws::Structure
|
4214
4241
|
end
|
@@ -4421,6 +4448,37 @@ module Aws::SageMaker
|
|
4421
4448
|
include Aws::Structure
|
4422
4449
|
end
|
4423
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
|
+
|
4424
4482
|
# Lists a summary of the properties of a SageMaker HyperPod cluster.
|
4425
4483
|
#
|
4426
4484
|
# @!attribute [rw] cluster_arn
|
@@ -4496,12 +4554,18 @@ module Aws::SageMaker
|
|
4496
4554
|
# lifecycle configuration.
|
4497
4555
|
# @return [Array<String>]
|
4498
4556
|
#
|
4557
|
+
# @!attribute [rw] app_lifecycle_management
|
4558
|
+
# Settings that are used to configure and manage the lifecycle of
|
4559
|
+
# CodeEditor applications.
|
4560
|
+
# @return [Types::AppLifecycleManagement]
|
4561
|
+
#
|
4499
4562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CodeEditorAppSettings AWS API Documentation
|
4500
4563
|
#
|
4501
4564
|
class CodeEditorAppSettings < Struct.new(
|
4502
4565
|
:default_resource_spec,
|
4503
4566
|
:custom_images,
|
4504
|
-
:lifecycle_config_arns
|
4567
|
+
:lifecycle_config_arns,
|
4568
|
+
:app_lifecycle_management)
|
4505
4569
|
SENSITIVE = []
|
4506
4570
|
include Aws::Structure
|
4507
4571
|
end
|
@@ -5717,13 +5781,29 @@ module Aws::SageMaker
|
|
5717
5781
|
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
|
5718
5782
|
# @return [Array<Types::Tag>]
|
5719
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
|
+
#
|
5720
5798
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterRequest AWS API Documentation
|
5721
5799
|
#
|
5722
5800
|
class CreateClusterRequest < Struct.new(
|
5723
5801
|
:cluster_name,
|
5724
5802
|
:instance_groups,
|
5725
5803
|
:vpc_config,
|
5726
|
-
:tags
|
5804
|
+
:tags,
|
5805
|
+
:orchestrator,
|
5806
|
+
:node_recovery)
|
5727
5807
|
SENSITIVE = []
|
5728
5808
|
include Aws::Structure
|
5729
5809
|
end
|
@@ -12786,6 +12866,15 @@ module Aws::SageMaker
|
|
12786
12866
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
12787
12867
|
# @return [Types::VpcConfig]
|
12788
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
|
+
#
|
12789
12878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterResponse AWS API Documentation
|
12790
12879
|
#
|
12791
12880
|
class DescribeClusterResponse < Struct.new(
|
@@ -12795,7 +12884,9 @@ module Aws::SageMaker
|
|
12795
12884
|
:creation_time,
|
12796
12885
|
:failure_message,
|
12797
12886
|
:instance_groups,
|
12798
|
-
:vpc_config
|
12887
|
+
:vpc_config,
|
12888
|
+
:orchestrator,
|
12889
|
+
:node_recovery)
|
12799
12890
|
SENSITIVE = []
|
12800
12891
|
include Aws::Structure
|
12801
12892
|
end
|
@@ -23723,6 +23814,39 @@ module Aws::SageMaker
|
|
23723
23814
|
include Aws::Structure
|
23724
23815
|
end
|
23725
23816
|
|
23817
|
+
# Settings related to idle shutdown of Studio applications.
|
23818
|
+
#
|
23819
|
+
# @!attribute [rw] lifecycle_management
|
23820
|
+
# Indicates whether idle shutdown is activated for the application
|
23821
|
+
# type.
|
23822
|
+
# @return [String]
|
23823
|
+
#
|
23824
|
+
# @!attribute [rw] idle_timeout_in_minutes
|
23825
|
+
# The time that SageMaker waits after the application becomes idle
|
23826
|
+
# before shutting it down.
|
23827
|
+
# @return [Integer]
|
23828
|
+
#
|
23829
|
+
# @!attribute [rw] min_idle_timeout_in_minutes
|
23830
|
+
# The minimum value in minutes that custom idle shutdown can be set to
|
23831
|
+
# by the user.
|
23832
|
+
# @return [Integer]
|
23833
|
+
#
|
23834
|
+
# @!attribute [rw] max_idle_timeout_in_minutes
|
23835
|
+
# The maximum value in minutes that custom idle shutdown can be set to
|
23836
|
+
# by the user.
|
23837
|
+
# @return [Integer]
|
23838
|
+
#
|
23839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/IdleSettings AWS API Documentation
|
23840
|
+
#
|
23841
|
+
class IdleSettings < Struct.new(
|
23842
|
+
:lifecycle_management,
|
23843
|
+
:idle_timeout_in_minutes,
|
23844
|
+
:min_idle_timeout_in_minutes,
|
23845
|
+
:max_idle_timeout_in_minutes)
|
23846
|
+
SENSITIVE = []
|
23847
|
+
include Aws::Structure
|
23848
|
+
end
|
23849
|
+
|
23726
23850
|
# A SageMaker image. A SageMaker image represents a set of container
|
23727
23851
|
# images that are derived from a common base container image. Each of
|
23728
23852
|
# these container images is represented by a SageMaker `ImageVersion`.
|
@@ -25021,6 +25145,11 @@ module Aws::SageMaker
|
|
25021
25145
|
# users for cloning in the JupyterLab application.
|
25022
25146
|
# @return [Array<Types::CodeRepository>]
|
25023
25147
|
#
|
25148
|
+
# @!attribute [rw] app_lifecycle_management
|
25149
|
+
# Indicates whether idle shutdown is activated for JupyterLab
|
25150
|
+
# applications.
|
25151
|
+
# @return [Types::AppLifecycleManagement]
|
25152
|
+
#
|
25024
25153
|
# @!attribute [rw] emr_settings
|
25025
25154
|
# The configuration parameters that specify the IAM roles assumed by
|
25026
25155
|
# the execution role of SageMaker (assumable roles) and the cluster
|
@@ -25036,6 +25165,7 @@ module Aws::SageMaker
|
|
25036
25165
|
:custom_images,
|
25037
25166
|
:lifecycle_config_arns,
|
25038
25167
|
:code_repositories,
|
25168
|
+
:app_lifecycle_management,
|
25039
25169
|
:emr_settings)
|
25040
25170
|
SENSITIVE = []
|
25041
25171
|
include Aws::Structure
|
@@ -40913,6 +41043,21 @@ module Aws::SageMaker
|
|
40913
41043
|
include Aws::Structure
|
40914
41044
|
end
|
40915
41045
|
|
41046
|
+
# Settings that are used to configure and manage the lifecycle of Amazon
|
41047
|
+
# SageMaker Studio applications in a space.
|
41048
|
+
#
|
41049
|
+
# @!attribute [rw] idle_settings
|
41050
|
+
# Settings related to idle shutdown of Studio applications.
|
41051
|
+
# @return [Types::SpaceIdleSettings]
|
41052
|
+
#
|
41053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceAppLifecycleManagement AWS API Documentation
|
41054
|
+
#
|
41055
|
+
class SpaceAppLifecycleManagement < Struct.new(
|
41056
|
+
:idle_settings)
|
41057
|
+
SENSITIVE = []
|
41058
|
+
include Aws::Structure
|
41059
|
+
end
|
41060
|
+
|
40916
41061
|
# The application settings for a Code Editor space.
|
40917
41062
|
#
|
40918
41063
|
# @!attribute [rw] default_resource_spec
|
@@ -40920,10 +41065,16 @@ module Aws::SageMaker
|
|
40920
41065
|
# version, and the instance type that the version runs on.
|
40921
41066
|
# @return [Types::ResourceSpec]
|
40922
41067
|
#
|
41068
|
+
# @!attribute [rw] app_lifecycle_management
|
41069
|
+
# Settings that are used to configure and manage the lifecycle of
|
41070
|
+
# CodeEditor applications in a space.
|
41071
|
+
# @return [Types::SpaceAppLifecycleManagement]
|
41072
|
+
#
|
40923
41073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceCodeEditorAppSettings AWS API Documentation
|
40924
41074
|
#
|
40925
41075
|
class SpaceCodeEditorAppSettings < Struct.new(
|
40926
|
-
:default_resource_spec
|
41076
|
+
:default_resource_spec,
|
41077
|
+
:app_lifecycle_management)
|
40927
41078
|
SENSITIVE = []
|
40928
41079
|
include Aws::Structure
|
40929
41080
|
end
|
@@ -40982,6 +41133,21 @@ module Aws::SageMaker
|
|
40982
41133
|
include Aws::Structure
|
40983
41134
|
end
|
40984
41135
|
|
41136
|
+
# Settings related to idle shutdown of Studio applications in a space.
|
41137
|
+
#
|
41138
|
+
# @!attribute [rw] idle_timeout_in_minutes
|
41139
|
+
# The time that SageMaker waits after the application becomes idle
|
41140
|
+
# before shutting it down.
|
41141
|
+
# @return [Integer]
|
41142
|
+
#
|
41143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceIdleSettings AWS API Documentation
|
41144
|
+
#
|
41145
|
+
class SpaceIdleSettings < Struct.new(
|
41146
|
+
:idle_timeout_in_minutes)
|
41147
|
+
SENSITIVE = []
|
41148
|
+
include Aws::Structure
|
41149
|
+
end
|
41150
|
+
|
40985
41151
|
# The settings for the JupyterLab application within a space.
|
40986
41152
|
#
|
40987
41153
|
# @!attribute [rw] default_resource_spec
|
@@ -40994,11 +41160,17 @@ module Aws::SageMaker
|
|
40994
41160
|
# users for cloning in the JupyterLab application.
|
40995
41161
|
# @return [Array<Types::CodeRepository>]
|
40996
41162
|
#
|
41163
|
+
# @!attribute [rw] app_lifecycle_management
|
41164
|
+
# Settings that are used to configure and manage the lifecycle of
|
41165
|
+
# JupyterLab applications in a space.
|
41166
|
+
# @return [Types::SpaceAppLifecycleManagement]
|
41167
|
+
#
|
40997
41168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceJupyterLabAppSettings AWS API Documentation
|
40998
41169
|
#
|
40999
41170
|
class SpaceJupyterLabAppSettings < Struct.new(
|
41000
41171
|
:default_resource_spec,
|
41001
|
-
:code_repositories
|
41172
|
+
:code_repositories,
|
41173
|
+
:app_lifecycle_management)
|
41002
41174
|
SENSITIVE = []
|
41003
41175
|
include Aws::Structure
|
41004
41176
|
end
|
@@ -44877,11 +45049,17 @@ module Aws::SageMaker
|
|
44877
45049
|
# Specify the instance groups to update.
|
44878
45050
|
# @return [Array<Types::ClusterInstanceGroupSpecification>]
|
44879
45051
|
#
|
45052
|
+
# @!attribute [rw] node_recovery
|
45053
|
+
# The node recovery mode to be applied to the SageMaker HyperPod
|
45054
|
+
# cluster.
|
45055
|
+
# @return [String]
|
45056
|
+
#
|
44880
45057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterRequest AWS API Documentation
|
44881
45058
|
#
|
44882
45059
|
class UpdateClusterRequest < Struct.new(
|
44883
45060
|
:cluster_name,
|
44884
|
-
:instance_groups
|
45061
|
+
:instance_groups,
|
45062
|
+
:node_recovery)
|
44885
45063
|
SENSITIVE = []
|
44886
45064
|
include Aws::Structure
|
44887
45065
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
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
|
|
@@ -1068,7 +1075,15 @@ module Aws
|
|
1068
1075
|
app_image_config_name: ::String
|
1069
1076
|
},
|
1070
1077
|
]?,
|
1071
|
-
lifecycle_config_arns: Array[::String]
|
1078
|
+
lifecycle_config_arns: Array[::String]?,
|
1079
|
+
app_lifecycle_management: {
|
1080
|
+
idle_settings: {
|
1081
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
1082
|
+
idle_timeout_in_minutes: ::Integer?,
|
1083
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
1084
|
+
max_idle_timeout_in_minutes: ::Integer?
|
1085
|
+
}?
|
1086
|
+
}?
|
1072
1087
|
}?,
|
1073
1088
|
jupyter_lab_app_settings: {
|
1074
1089
|
default_resource_spec: {
|
@@ -1091,6 +1106,14 @@ module Aws
|
|
1091
1106
|
repository_url: ::String
|
1092
1107
|
},
|
1093
1108
|
]?,
|
1109
|
+
app_lifecycle_management: {
|
1110
|
+
idle_settings: {
|
1111
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
1112
|
+
idle_timeout_in_minutes: ::Integer?,
|
1113
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
1114
|
+
max_idle_timeout_in_minutes: ::Integer?
|
1115
|
+
}?
|
1116
|
+
}?,
|
1094
1117
|
emr_settings: {
|
1095
1118
|
assumable_role_arns: Array[::String]?,
|
1096
1119
|
execution_role_arns: Array[::String]?
|
@@ -1214,6 +1237,14 @@ module Aws
|
|
1214
1237
|
repository_url: ::String
|
1215
1238
|
},
|
1216
1239
|
]?,
|
1240
|
+
app_lifecycle_management: {
|
1241
|
+
idle_settings: {
|
1242
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
1243
|
+
idle_timeout_in_minutes: ::Integer?,
|
1244
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
1245
|
+
max_idle_timeout_in_minutes: ::Integer?
|
1246
|
+
}?
|
1247
|
+
}?,
|
1217
1248
|
emr_settings: {
|
1218
1249
|
assumable_role_arns: Array[::String]?,
|
1219
1250
|
execution_role_arns: Array[::String]?
|
@@ -3630,6 +3661,11 @@ module Aws
|
|
3630
3661
|
sage_maker_image_version_alias: ::String?,
|
3631
3662
|
instance_type: ("system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "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.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "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.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.16xlarge" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge")?,
|
3632
3663
|
lifecycle_config_arn: ::String?
|
3664
|
+
}?,
|
3665
|
+
app_lifecycle_management: {
|
3666
|
+
idle_settings: {
|
3667
|
+
idle_timeout_in_minutes: ::Integer?
|
3668
|
+
}?
|
3633
3669
|
}?
|
3634
3670
|
}?,
|
3635
3671
|
jupyter_lab_app_settings: {
|
@@ -3644,7 +3680,12 @@ module Aws
|
|
3644
3680
|
{
|
3645
3681
|
repository_url: ::String
|
3646
3682
|
},
|
3647
|
-
]
|
3683
|
+
]?,
|
3684
|
+
app_lifecycle_management: {
|
3685
|
+
idle_settings: {
|
3686
|
+
idle_timeout_in_minutes: ::Integer?
|
3687
|
+
}?
|
3688
|
+
}?
|
3648
3689
|
}?,
|
3649
3690
|
app_type: ("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")?,
|
3650
3691
|
space_storage_settings: {
|
@@ -4112,7 +4153,15 @@ module Aws
|
|
4112
4153
|
app_image_config_name: ::String
|
4113
4154
|
},
|
4114
4155
|
]?,
|
4115
|
-
lifecycle_config_arns: Array[::String]
|
4156
|
+
lifecycle_config_arns: Array[::String]?,
|
4157
|
+
app_lifecycle_management: {
|
4158
|
+
idle_settings: {
|
4159
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
4160
|
+
idle_timeout_in_minutes: ::Integer?,
|
4161
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
4162
|
+
max_idle_timeout_in_minutes: ::Integer?
|
4163
|
+
}?
|
4164
|
+
}?
|
4116
4165
|
}?,
|
4117
4166
|
jupyter_lab_app_settings: {
|
4118
4167
|
default_resource_spec: {
|
@@ -4135,6 +4184,14 @@ module Aws
|
|
4135
4184
|
repository_url: ::String
|
4136
4185
|
},
|
4137
4186
|
]?,
|
4187
|
+
app_lifecycle_management: {
|
4188
|
+
idle_settings: {
|
4189
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
4190
|
+
idle_timeout_in_minutes: ::Integer?,
|
4191
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
4192
|
+
max_idle_timeout_in_minutes: ::Integer?
|
4193
|
+
}?
|
4194
|
+
}?,
|
4138
4195
|
emr_settings: {
|
4139
4196
|
assumable_role_arns: Array[::String]?,
|
4140
4197
|
execution_role_arns: Array[::String]?
|
@@ -4839,6 +4896,8 @@ module Aws
|
|
4839
4896
|
def failure_message: () -> ::String
|
4840
4897
|
def instance_groups: () -> ::Array[Types::ClusterInstanceGroupDetails]
|
4841
4898
|
def vpc_config: () -> Types::VpcConfig
|
4899
|
+
def orchestrator: () -> Types::ClusterOrchestrator
|
4900
|
+
def node_recovery: () -> ("Automatic" | "None")
|
4842
4901
|
end
|
4843
4902
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_cluster-instance_method
|
4844
4903
|
def describe_cluster: (
|
@@ -8025,9 +8084,11 @@ module Aws
|
|
8025
8084
|
volume_size_in_gb: ::Integer
|
8026
8085
|
}?
|
8027
8086
|
},
|
8028
|
-
]
|
8087
|
+
]?,
|
8088
|
+
on_start_deep_health_checks: Array[("InstanceStress" | "InstanceConnectivity")]?
|
8029
8089
|
},
|
8030
|
-
]
|
8090
|
+
],
|
8091
|
+
?node_recovery: ("Automatic" | "None")
|
8031
8092
|
) -> _UpdateClusterResponseSuccess
|
8032
8093
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterResponseSuccess
|
8033
8094
|
|
@@ -8220,7 +8281,15 @@ module Aws
|
|
8220
8281
|
app_image_config_name: ::String
|
8221
8282
|
},
|
8222
8283
|
]?,
|
8223
|
-
lifecycle_config_arns: Array[::String]
|
8284
|
+
lifecycle_config_arns: Array[::String]?,
|
8285
|
+
app_lifecycle_management: {
|
8286
|
+
idle_settings: {
|
8287
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
8288
|
+
idle_timeout_in_minutes: ::Integer?,
|
8289
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
8290
|
+
max_idle_timeout_in_minutes: ::Integer?
|
8291
|
+
}?
|
8292
|
+
}?
|
8224
8293
|
}?,
|
8225
8294
|
jupyter_lab_app_settings: {
|
8226
8295
|
default_resource_spec: {
|
@@ -8243,6 +8312,14 @@ module Aws
|
|
8243
8312
|
repository_url: ::String
|
8244
8313
|
},
|
8245
8314
|
]?,
|
8315
|
+
app_lifecycle_management: {
|
8316
|
+
idle_settings: {
|
8317
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
8318
|
+
idle_timeout_in_minutes: ::Integer?,
|
8319
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
8320
|
+
max_idle_timeout_in_minutes: ::Integer?
|
8321
|
+
}?
|
8322
|
+
}?,
|
8246
8323
|
emr_settings: {
|
8247
8324
|
assumable_role_arns: Array[::String]?,
|
8248
8325
|
execution_role_arns: Array[::String]?
|
@@ -8355,6 +8432,14 @@ module Aws
|
|
8355
8432
|
repository_url: ::String
|
8356
8433
|
},
|
8357
8434
|
]?,
|
8435
|
+
app_lifecycle_management: {
|
8436
|
+
idle_settings: {
|
8437
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
8438
|
+
idle_timeout_in_minutes: ::Integer?,
|
8439
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
8440
|
+
max_idle_timeout_in_minutes: ::Integer?
|
8441
|
+
}?
|
8442
|
+
}?,
|
8358
8443
|
emr_settings: {
|
8359
8444
|
assumable_role_arns: Array[::String]?,
|
8360
8445
|
execution_role_arns: Array[::String]?
|
@@ -9064,6 +9149,11 @@ module Aws
|
|
9064
9149
|
sage_maker_image_version_alias: ::String?,
|
9065
9150
|
instance_type: ("system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "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.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "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.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.16xlarge" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge")?,
|
9066
9151
|
lifecycle_config_arn: ::String?
|
9152
|
+
}?,
|
9153
|
+
app_lifecycle_management: {
|
9154
|
+
idle_settings: {
|
9155
|
+
idle_timeout_in_minutes: ::Integer?
|
9156
|
+
}?
|
9067
9157
|
}?
|
9068
9158
|
}?,
|
9069
9159
|
jupyter_lab_app_settings: {
|
@@ -9078,7 +9168,12 @@ module Aws
|
|
9078
9168
|
{
|
9079
9169
|
repository_url: ::String
|
9080
9170
|
},
|
9081
|
-
]
|
9171
|
+
]?,
|
9172
|
+
app_lifecycle_management: {
|
9173
|
+
idle_settings: {
|
9174
|
+
idle_timeout_in_minutes: ::Integer?
|
9175
|
+
}?
|
9176
|
+
}?
|
9082
9177
|
}?,
|
9083
9178
|
app_type: ("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")?,
|
9084
9179
|
space_storage_settings: {
|
@@ -9300,7 +9395,15 @@ module Aws
|
|
9300
9395
|
app_image_config_name: ::String
|
9301
9396
|
},
|
9302
9397
|
]?,
|
9303
|
-
lifecycle_config_arns: Array[::String]
|
9398
|
+
lifecycle_config_arns: Array[::String]?,
|
9399
|
+
app_lifecycle_management: {
|
9400
|
+
idle_settings: {
|
9401
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
9402
|
+
idle_timeout_in_minutes: ::Integer?,
|
9403
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
9404
|
+
max_idle_timeout_in_minutes: ::Integer?
|
9405
|
+
}?
|
9406
|
+
}?
|
9304
9407
|
}?,
|
9305
9408
|
jupyter_lab_app_settings: {
|
9306
9409
|
default_resource_spec: {
|
@@ -9323,6 +9426,14 @@ module Aws
|
|
9323
9426
|
repository_url: ::String
|
9324
9427
|
},
|
9325
9428
|
]?,
|
9429
|
+
app_lifecycle_management: {
|
9430
|
+
idle_settings: {
|
9431
|
+
lifecycle_management: ("ENABLED" | "DISABLED")?,
|
9432
|
+
idle_timeout_in_minutes: ::Integer?,
|
9433
|
+
min_idle_timeout_in_minutes: ::Integer?,
|
9434
|
+
max_idle_timeout_in_minutes: ::Integer?
|
9435
|
+
}?
|
9436
|
+
}?,
|
9326
9437
|
emr_settings: {
|
9327
9438
|
assumable_role_arns: Array[::String]?,
|
9328
9439
|
execution_role_arns: Array[::String]?
|