aws-sdk-sagemaker 1.302.0 → 1.304.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 +164 -14
- data/lib/aws-sdk-sagemaker/client_api.rb +103 -41
- data/lib/aws-sdk-sagemaker/types.rb +293 -8
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +88 -3
- data/sig/types.rbs +55 -0
- metadata +3 -6
@@ -312,6 +312,20 @@ module Aws::SageMaker
|
|
312
312
|
include Aws::Structure
|
313
313
|
end
|
314
314
|
|
315
|
+
# The details of the alarm to monitor during the AMI update.
|
316
|
+
#
|
317
|
+
# @!attribute [rw] alarm_name
|
318
|
+
# The name of the alarm.
|
319
|
+
# @return [String]
|
320
|
+
#
|
321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AlarmDetails AWS API Documentation
|
322
|
+
#
|
323
|
+
class AlarmDetails < Struct.new(
|
324
|
+
:alarm_name)
|
325
|
+
SENSITIVE = []
|
326
|
+
include Aws::Structure
|
327
|
+
end
|
328
|
+
|
315
329
|
# Specifies the training algorithm to use in a [CreateTrainingJob][1]
|
316
330
|
# request.
|
317
331
|
#
|
@@ -3534,6 +3548,29 @@ module Aws::SageMaker
|
|
3534
3548
|
include Aws::Structure
|
3535
3549
|
end
|
3536
3550
|
|
3551
|
+
# The configuration of the size measurements of the AMI update. Using
|
3552
|
+
# this configuration, you can specify whether SageMaker should update
|
3553
|
+
# your instance group by an amount or percentage of instances.
|
3554
|
+
#
|
3555
|
+
# @!attribute [rw] type
|
3556
|
+
# Specifies whether SageMaker should process the update by amount or
|
3557
|
+
# percentage of instances.
|
3558
|
+
# @return [String]
|
3559
|
+
#
|
3560
|
+
# @!attribute [rw] value
|
3561
|
+
# Specifies the amount or percentage of instances SageMaker updates at
|
3562
|
+
# a time.
|
3563
|
+
# @return [Integer]
|
3564
|
+
#
|
3565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CapacitySizeConfig AWS API Documentation
|
3566
|
+
#
|
3567
|
+
class CapacitySizeConfig < Struct.new(
|
3568
|
+
:type,
|
3569
|
+
:value)
|
3570
|
+
SENSITIVE = []
|
3571
|
+
include Aws::Structure
|
3572
|
+
end
|
3573
|
+
|
3537
3574
|
# Configuration specifying how to treat different headers. If no headers
|
3538
3575
|
# are specified Amazon SageMaker AI will by default base64 encode when
|
3539
3576
|
# capturing the data.
|
@@ -4294,6 +4331,11 @@ module Aws::SageMaker
|
|
4294
4331
|
# HyperPod cluster.
|
4295
4332
|
# @return [Types::VpcConfig]
|
4296
4333
|
#
|
4334
|
+
# @!attribute [rw] scheduled_update_config
|
4335
|
+
# The configuration object of the schedule that SageMaker follows when
|
4336
|
+
# updating the AMI.
|
4337
|
+
# @return [Types::ScheduledUpdateConfig]
|
4338
|
+
#
|
4297
4339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
|
4298
4340
|
#
|
4299
4341
|
class ClusterInstanceGroupDetails < Struct.new(
|
@@ -4309,7 +4351,8 @@ module Aws::SageMaker
|
|
4309
4351
|
:status,
|
4310
4352
|
:training_plan_arn,
|
4311
4353
|
:training_plan_status,
|
4312
|
-
:override_vpc_config
|
4354
|
+
:override_vpc_config,
|
4355
|
+
:scheduled_update_config)
|
4313
4356
|
SENSITIVE = []
|
4314
4357
|
include Aws::Structure
|
4315
4358
|
end
|
@@ -4414,6 +4457,11 @@ module Aws::SageMaker
|
|
4414
4457
|
# [5]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod-prerequisites.html#sagemaker-hyperpod-prerequisites-optional-vpc
|
4415
4458
|
# @return [Types::VpcConfig]
|
4416
4459
|
#
|
4460
|
+
# @!attribute [rw] scheduled_update_config
|
4461
|
+
# The configuration object of the schedule that SageMaker uses to
|
4462
|
+
# update the AMI.
|
4463
|
+
# @return [Types::ScheduledUpdateConfig]
|
4464
|
+
#
|
4417
4465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
|
4418
4466
|
#
|
4419
4467
|
class ClusterInstanceGroupSpecification < Struct.new(
|
@@ -4426,7 +4474,8 @@ module Aws::SageMaker
|
|
4426
4474
|
:instance_storage_configs,
|
4427
4475
|
:on_start_deep_health_checks,
|
4428
4476
|
:training_plan_arn,
|
4429
|
-
:override_vpc_config
|
4477
|
+
:override_vpc_config,
|
4478
|
+
:scheduled_update_config)
|
4430
4479
|
SENSITIVE = []
|
4431
4480
|
include Aws::Structure
|
4432
4481
|
end
|
@@ -4559,6 +4608,10 @@ module Aws::SageMaker
|
|
4559
4608
|
# The time when the instance is launched.
|
4560
4609
|
# @return [Time]
|
4561
4610
|
#
|
4611
|
+
# @!attribute [rw] last_software_update_time
|
4612
|
+
# The time when the cluster was last updated.
|
4613
|
+
# @return [Time]
|
4614
|
+
#
|
4562
4615
|
# @!attribute [rw] life_cycle_config
|
4563
4616
|
# The LifeCycle configuration applied to the instance.
|
4564
4617
|
# @return [Types::ClusterLifeCycleConfig]
|
@@ -4608,6 +4661,7 @@ module Aws::SageMaker
|
|
4608
4661
|
:instance_status,
|
4609
4662
|
:instance_type,
|
4610
4663
|
:launch_time,
|
4664
|
+
:last_software_update_time,
|
4611
4665
|
:life_cycle_config,
|
4612
4666
|
:override_vpc_config,
|
4613
4667
|
:threads_per_core,
|
@@ -4639,6 +4693,11 @@ module Aws::SageMaker
|
|
4639
4693
|
# The time when the instance is launched.
|
4640
4694
|
# @return [Time]
|
4641
4695
|
#
|
4696
|
+
# @!attribute [rw] last_software_update_time
|
4697
|
+
# The time when SageMaker last updated the software of the instances
|
4698
|
+
# in the cluster.
|
4699
|
+
# @return [Time]
|
4700
|
+
#
|
4642
4701
|
# @!attribute [rw] instance_status
|
4643
4702
|
# The status of the instance.
|
4644
4703
|
# @return [Types::ClusterInstanceStatusDetails]
|
@@ -4650,6 +4709,7 @@ module Aws::SageMaker
|
|
4650
4709
|
:instance_id,
|
4651
4710
|
:instance_type,
|
4652
4711
|
:launch_time,
|
4712
|
+
:last_software_update_time,
|
4653
4713
|
:instance_status)
|
4654
4714
|
SENSITIVE = []
|
4655
4715
|
include Aws::Structure
|
@@ -9951,6 +10011,13 @@ module Aws::SageMaker
|
|
9951
10011
|
# @!attribute [rw] environment
|
9952
10012
|
# The environment variables to set in the Docker container. Up to 100
|
9953
10013
|
# key and values entries in the map are supported.
|
10014
|
+
#
|
10015
|
+
# Do not include any security-sensitive information including account
|
10016
|
+
# access IDs, secrets, or tokens in any environment fields. As part of
|
10017
|
+
# the shared responsibility model, you are responsible for any
|
10018
|
+
# potential exposure, unauthorized access, or compromise of your
|
10019
|
+
# sensitive data if caused by security-sensitive information included
|
10020
|
+
# in the request environment variable or plain text fields.
|
9954
10021
|
# @return [Hash<String,String>]
|
9955
10022
|
#
|
9956
10023
|
# @!attribute [rw] network_config
|
@@ -9970,6 +10037,13 @@ module Aws::SageMaker
|
|
9970
10037
|
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
9971
10038
|
# and Cost Management User Guide*.
|
9972
10039
|
#
|
10040
|
+
# Do not include any security-sensitive information including account
|
10041
|
+
# access IDs, secrets, or tokens in any tags. As part of the shared
|
10042
|
+
# responsibility model, you are responsible for any potential
|
10043
|
+
# exposure, unauthorized access, or compromise of your sensitive data
|
10044
|
+
# if caused by security-sensitive information included in the request
|
10045
|
+
# tag variable or plain text fields.
|
10046
|
+
#
|
9973
10047
|
#
|
9974
10048
|
#
|
9975
10049
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
|
@@ -10196,9 +10270,12 @@ module Aws::SageMaker
|
|
10196
10270
|
# 256 characters, as specified by the `Length Constraint`.
|
10197
10271
|
#
|
10198
10272
|
# Do not include any security-sensitive information including account
|
10199
|
-
# access IDs, secrets or tokens in any hyperparameter
|
10200
|
-
#
|
10201
|
-
#
|
10273
|
+
# access IDs, secrets, or tokens in any hyperparameter fields. As part
|
10274
|
+
# of the shared responsibility model, you are responsible for any
|
10275
|
+
# potential exposure, unauthorized access, or compromise of your
|
10276
|
+
# sensitive data if caused by any security-sensitive information
|
10277
|
+
# included in the request hyperparameter variable or plain text
|
10278
|
+
# fields.
|
10202
10279
|
#
|
10203
10280
|
#
|
10204
10281
|
#
|
@@ -10310,6 +10387,13 @@ module Aws::SageMaker
|
|
10310
10387
|
# purpose, owner, or environment. For more information, see [Tagging
|
10311
10388
|
# Amazon Web Services Resources][1].
|
10312
10389
|
#
|
10390
|
+
# Do not include any security-sensitive information including account
|
10391
|
+
# access IDs, secrets, or tokens in any tags. As part of the shared
|
10392
|
+
# responsibility model, you are responsible for any potential
|
10393
|
+
# exposure, unauthorized access, or compromise of your sensitive data
|
10394
|
+
# if caused by any security-sensitive information included in the
|
10395
|
+
# request tag variable or plain text fields.
|
10396
|
+
#
|
10313
10397
|
#
|
10314
10398
|
#
|
10315
10399
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
@@ -10410,6 +10494,13 @@ module Aws::SageMaker
|
|
10410
10494
|
#
|
10411
10495
|
# @!attribute [rw] environment
|
10412
10496
|
# The environment variables to set in the Docker container.
|
10497
|
+
#
|
10498
|
+
# Do not include any security-sensitive information including account
|
10499
|
+
# access IDs, secrets, or tokens in any environment fields. As part of
|
10500
|
+
# the shared responsibility model, you are responsible for any
|
10501
|
+
# potential exposure, unauthorized access, or compromise of your
|
10502
|
+
# sensitive data if caused by security-sensitive information included
|
10503
|
+
# in the request environment variable or plain text fields.
|
10413
10504
|
# @return [Hash<String,String>]
|
10414
10505
|
#
|
10415
10506
|
# @!attribute [rw] retry_strategy
|
@@ -12814,6 +12905,33 @@ module Aws::SageMaker
|
|
12814
12905
|
include Aws::Structure
|
12815
12906
|
end
|
12816
12907
|
|
12908
|
+
# The configuration to use when updating the AMI versions.
|
12909
|
+
#
|
12910
|
+
# @!attribute [rw] rolling_update_policy
|
12911
|
+
# The policy that SageMaker uses when updating the AMI versions of the
|
12912
|
+
# cluster.
|
12913
|
+
# @return [Types::RollingDeploymentPolicy]
|
12914
|
+
#
|
12915
|
+
# @!attribute [rw] wait_interval_in_seconds
|
12916
|
+
# The duration in seconds that SageMaker waits before updating more
|
12917
|
+
# instances in the cluster.
|
12918
|
+
# @return [Integer]
|
12919
|
+
#
|
12920
|
+
# @!attribute [rw] auto_rollback_configuration
|
12921
|
+
# An array that contains the alarms that SageMaker monitors to know
|
12922
|
+
# whether to roll back the AMI update.
|
12923
|
+
# @return [Array<Types::AlarmDetails>]
|
12924
|
+
#
|
12925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentConfiguration AWS API Documentation
|
12926
|
+
#
|
12927
|
+
class DeploymentConfiguration < Struct.new(
|
12928
|
+
:rolling_update_policy,
|
12929
|
+
:wait_interval_in_seconds,
|
12930
|
+
:auto_rollback_configuration)
|
12931
|
+
SENSITIVE = []
|
12932
|
+
include Aws::Structure
|
12933
|
+
end
|
12934
|
+
|
12817
12935
|
# A set of recommended deployment configurations for the model. To get
|
12818
12936
|
# more advanced recommendations, see
|
12819
12937
|
# [CreateInferenceRecommendationsJob][1] to create an inference
|
@@ -18940,6 +19058,13 @@ module Aws::SageMaker
|
|
18940
19058
|
#
|
18941
19059
|
# @!attribute [rw] environment
|
18942
19060
|
# The environment variables to set in the Docker container.
|
19061
|
+
#
|
19062
|
+
# Do not include any security-sensitive information including account
|
19063
|
+
# access IDs, secrets, or tokens in any environment fields. As part of
|
19064
|
+
# the shared responsibility model, you are responsible for any
|
19065
|
+
# potential exposure, unauthorized access, or compromise of your
|
19066
|
+
# sensitive data if caused by security-sensitive information included
|
19067
|
+
# in the request environment variable or plain text fields.
|
18943
19068
|
# @return [Hash<String,String>]
|
18944
19069
|
#
|
18945
19070
|
# @!attribute [rw] retry_strategy
|
@@ -20045,6 +20170,11 @@ module Aws::SageMaker
|
|
20045
20170
|
# must be `SSO`.
|
20046
20171
|
# @return [Types::AmazonQSettings]
|
20047
20172
|
#
|
20173
|
+
# @!attribute [rw] unified_studio_settings
|
20174
|
+
# The settings that apply to an SageMaker AI domain when you use it in
|
20175
|
+
# Amazon SageMaker Unified Studio.
|
20176
|
+
# @return [Types::UnifiedStudioSettings]
|
20177
|
+
#
|
20048
20178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
|
20049
20179
|
#
|
20050
20180
|
class DomainSettings < Struct.new(
|
@@ -20052,7 +20182,8 @@ module Aws::SageMaker
|
|
20052
20182
|
:r_studio_server_pro_domain_settings,
|
20053
20183
|
:execution_role_identity_config,
|
20054
20184
|
:docker_settings,
|
20055
|
-
:amazon_q_settings
|
20185
|
+
:amazon_q_settings,
|
20186
|
+
:unified_studio_settings)
|
20056
20187
|
SENSITIVE = []
|
20057
20188
|
include Aws::Structure
|
20058
20189
|
end
|
@@ -20092,6 +20223,11 @@ module Aws::SageMaker
|
|
20092
20223
|
# within the domain.
|
20093
20224
|
# @return [Types::AmazonQSettings]
|
20094
20225
|
#
|
20226
|
+
# @!attribute [rw] unified_studio_settings
|
20227
|
+
# The settings that apply to an SageMaker AI domain when you use it in
|
20228
|
+
# Amazon SageMaker Unified Studio.
|
20229
|
+
# @return [Types::UnifiedStudioSettings]
|
20230
|
+
#
|
20095
20231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
|
20096
20232
|
#
|
20097
20233
|
class DomainSettingsForUpdate < Struct.new(
|
@@ -20099,7 +20235,8 @@ module Aws::SageMaker
|
|
20099
20235
|
:execution_role_identity_config,
|
20100
20236
|
:security_group_ids,
|
20101
20237
|
:docker_settings,
|
20102
|
-
:amazon_q_settings
|
20238
|
+
:amazon_q_settings,
|
20239
|
+
:unified_studio_settings)
|
20103
20240
|
SENSITIVE = []
|
20104
20241
|
include Aws::Structure
|
20105
20242
|
end
|
@@ -41934,6 +42071,27 @@ module Aws::SageMaker
|
|
41934
42071
|
include Aws::Structure
|
41935
42072
|
end
|
41936
42073
|
|
42074
|
+
# The configurations that SageMaker uses when updating the AMI versions.
|
42075
|
+
#
|
42076
|
+
# @!attribute [rw] maximum_batch_size
|
42077
|
+
# The maximum amount of instances in the cluster that SageMaker can
|
42078
|
+
# update at a time.
|
42079
|
+
# @return [Types::CapacitySizeConfig]
|
42080
|
+
#
|
42081
|
+
# @!attribute [rw] rollback_maximum_batch_size
|
42082
|
+
# The maximum amount of instances in the cluster that SageMaker can
|
42083
|
+
# roll back at a time.
|
42084
|
+
# @return [Types::CapacitySizeConfig]
|
42085
|
+
#
|
42086
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RollingDeploymentPolicy AWS API Documentation
|
42087
|
+
#
|
42088
|
+
class RollingDeploymentPolicy < Struct.new(
|
42089
|
+
:maximum_batch_size,
|
42090
|
+
:rollback_maximum_batch_size)
|
42091
|
+
SENSITIVE = []
|
42092
|
+
include Aws::Structure
|
42093
|
+
end
|
42094
|
+
|
41937
42095
|
# Specifies a rolling deployment strategy for updating a SageMaker
|
41938
42096
|
# endpoint.
|
41939
42097
|
#
|
@@ -42468,6 +42626,27 @@ module Aws::SageMaker
|
|
42468
42626
|
include Aws::Structure
|
42469
42627
|
end
|
42470
42628
|
|
42629
|
+
# The configuration object of the schedule that SageMaker follows when
|
42630
|
+
# updating the AMI.
|
42631
|
+
#
|
42632
|
+
# @!attribute [rw] schedule_expression
|
42633
|
+
# A cron expression that specifies the schedule that SageMaker follows
|
42634
|
+
# when updating the AMI.
|
42635
|
+
# @return [String]
|
42636
|
+
#
|
42637
|
+
# @!attribute [rw] deployment_config
|
42638
|
+
# The configuration to use when updating the AMI versions.
|
42639
|
+
# @return [Types::DeploymentConfiguration]
|
42640
|
+
#
|
42641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ScheduledUpdateConfig AWS API Documentation
|
42642
|
+
#
|
42643
|
+
class ScheduledUpdateConfig < Struct.new(
|
42644
|
+
:schedule_expression,
|
42645
|
+
:deployment_config)
|
42646
|
+
SENSITIVE = []
|
42647
|
+
include Aws::Structure
|
42648
|
+
end
|
42649
|
+
|
42471
42650
|
# Cluster policy configuration. This policy is used for task
|
42472
42651
|
# prioritization and fair-share allocation. This helps prioritize
|
42473
42652
|
# critical workloads and distributes idle compute across entities.
|
@@ -43603,6 +43782,15 @@ module Aws::SageMaker
|
|
43603
43782
|
# The storage settings for a space.
|
43604
43783
|
# @return [Types::SpaceStorageSettings]
|
43605
43784
|
#
|
43785
|
+
# @!attribute [rw] space_managed_resources
|
43786
|
+
# If you enable this option, SageMaker AI creates the following
|
43787
|
+
# resources on your behalf when you create the space:
|
43788
|
+
#
|
43789
|
+
# * The user profile that possesses the space.
|
43790
|
+
#
|
43791
|
+
# * The app that the space contains.
|
43792
|
+
# @return [String]
|
43793
|
+
#
|
43606
43794
|
# @!attribute [rw] custom_file_systems
|
43607
43795
|
# A file system, created by you, that you assign to a space for an
|
43608
43796
|
# Amazon SageMaker AI Domain. Permitted users can access this file
|
@@ -43618,6 +43806,7 @@ module Aws::SageMaker
|
|
43618
43806
|
:jupyter_lab_app_settings,
|
43619
43807
|
:app_type,
|
43620
43808
|
:space_storage_settings,
|
43809
|
+
:space_managed_resources,
|
43621
43810
|
:custom_file_systems)
|
43622
43811
|
SENSITIVE = []
|
43623
43812
|
include Aws::Structure
|
@@ -47616,6 +47805,77 @@ module Aws::SageMaker
|
|
47616
47805
|
include Aws::Structure
|
47617
47806
|
end
|
47618
47807
|
|
47808
|
+
# The settings that apply to an Amazon SageMaker AI domain when you use
|
47809
|
+
# it in Amazon SageMaker Unified Studio.
|
47810
|
+
#
|
47811
|
+
# @!attribute [rw] studio_web_portal_access
|
47812
|
+
# Sets whether you can access the domain in Amazon SageMaker Studio:
|
47813
|
+
#
|
47814
|
+
# ENABLED
|
47815
|
+
#
|
47816
|
+
# : You can access the domain in Amazon SageMaker Studio. If you
|
47817
|
+
# migrate the domain to Amazon SageMaker Unified Studio, you can
|
47818
|
+
# access it in both studio interfaces.
|
47819
|
+
#
|
47820
|
+
# DISABLED
|
47821
|
+
#
|
47822
|
+
# : You can't access the domain in Amazon SageMaker Studio. If you
|
47823
|
+
# migrate the domain to Amazon SageMaker Unified Studio, you can
|
47824
|
+
# access it only in that studio interface.
|
47825
|
+
#
|
47826
|
+
# To migrate a domain to Amazon SageMaker Unified Studio, you specify
|
47827
|
+
# the UnifiedStudioSettings data type when you use the UpdateDomain
|
47828
|
+
# action.
|
47829
|
+
# @return [String]
|
47830
|
+
#
|
47831
|
+
# @!attribute [rw] domain_account_id
|
47832
|
+
# The ID of the Amazon Web Services account that has the Amazon
|
47833
|
+
# SageMaker Unified Studio domain. The default value, if you don't
|
47834
|
+
# specify an ID, is the ID of the account that has the Amazon
|
47835
|
+
# SageMaker AI domain.
|
47836
|
+
# @return [String]
|
47837
|
+
#
|
47838
|
+
# @!attribute [rw] domain_region
|
47839
|
+
# The Amazon Web Services Region where the domain is located in Amazon
|
47840
|
+
# SageMaker Unified Studio. The default value, if you don't specify a
|
47841
|
+
# Region, is the Region where the Amazon SageMaker AI domain is
|
47842
|
+
# located.
|
47843
|
+
# @return [String]
|
47844
|
+
#
|
47845
|
+
# @!attribute [rw] domain_id
|
47846
|
+
# The ID of the Amazon SageMaker Unified Studio domain associated with
|
47847
|
+
# this domain.
|
47848
|
+
# @return [String]
|
47849
|
+
#
|
47850
|
+
# @!attribute [rw] project_id
|
47851
|
+
# The ID of the Amazon SageMaker Unified Studio project that
|
47852
|
+
# corresponds to the domain.
|
47853
|
+
# @return [String]
|
47854
|
+
#
|
47855
|
+
# @!attribute [rw] environment_id
|
47856
|
+
# The ID of the environment that Amazon SageMaker Unified Studio
|
47857
|
+
# associates with the domain.
|
47858
|
+
# @return [String]
|
47859
|
+
#
|
47860
|
+
# @!attribute [rw] project_s3_path
|
47861
|
+
# The location where Amazon S3 stores temporary execution data and
|
47862
|
+
# other artifacts for the project that corresponds to the domain.
|
47863
|
+
# @return [String]
|
47864
|
+
#
|
47865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UnifiedStudioSettings AWS API Documentation
|
47866
|
+
#
|
47867
|
+
class UnifiedStudioSettings < Struct.new(
|
47868
|
+
:studio_web_portal_access,
|
47869
|
+
:domain_account_id,
|
47870
|
+
:domain_region,
|
47871
|
+
:domain_id,
|
47872
|
+
:project_id,
|
47873
|
+
:environment_id,
|
47874
|
+
:project_s3_path)
|
47875
|
+
SENSITIVE = []
|
47876
|
+
include Aws::Structure
|
47877
|
+
end
|
47878
|
+
|
47619
47879
|
# @!attribute [rw] action_name
|
47620
47880
|
# The name of the action to update.
|
47621
47881
|
# @return [String]
|
@@ -47825,15 +48085,40 @@ module Aws::SageMaker
|
|
47825
48085
|
include Aws::Structure
|
47826
48086
|
end
|
47827
48087
|
|
48088
|
+
# The configuration that describes specifications of the instance groups
|
48089
|
+
# to update.
|
48090
|
+
#
|
48091
|
+
# @!attribute [rw] instance_group_name
|
48092
|
+
# The name of the instance group to update.
|
48093
|
+
# @return [String]
|
48094
|
+
#
|
48095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSoftwareInstanceGroupSpecification AWS API Documentation
|
48096
|
+
#
|
48097
|
+
class UpdateClusterSoftwareInstanceGroupSpecification < Struct.new(
|
48098
|
+
:instance_group_name)
|
48099
|
+
SENSITIVE = []
|
48100
|
+
include Aws::Structure
|
48101
|
+
end
|
48102
|
+
|
47828
48103
|
# @!attribute [rw] cluster_name
|
47829
48104
|
# Specify the name or the Amazon Resource Name (ARN) of the SageMaker
|
47830
48105
|
# HyperPod cluster you want to update for security patching.
|
47831
48106
|
# @return [String]
|
47832
48107
|
#
|
48108
|
+
# @!attribute [rw] instance_groups
|
48109
|
+
# The array of instance groups for which to update AMI versions.
|
48110
|
+
# @return [Array<Types::UpdateClusterSoftwareInstanceGroupSpecification>]
|
48111
|
+
#
|
48112
|
+
# @!attribute [rw] deployment_config
|
48113
|
+
# The configuration to use when updating the AMI versions.
|
48114
|
+
# @return [Types::DeploymentConfiguration]
|
48115
|
+
#
|
47833
48116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSoftwareRequest AWS API Documentation
|
47834
48117
|
#
|
47835
48118
|
class UpdateClusterSoftwareRequest < Struct.new(
|
47836
|
-
:cluster_name
|
48119
|
+
:cluster_name,
|
48120
|
+
:instance_groups,
|
48121
|
+
:deployment_config)
|
47837
48122
|
SENSITIVE = []
|
47838
48123
|
include Aws::Structure
|
47839
48124
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -748,6 +748,27 @@ module Aws
|
|
748
748
|
override_vpc_config: {
|
749
749
|
security_group_ids: Array[::String],
|
750
750
|
subnets: Array[::String]
|
751
|
+
}?,
|
752
|
+
scheduled_update_config: {
|
753
|
+
schedule_expression: ::String,
|
754
|
+
deployment_config: {
|
755
|
+
rolling_update_policy: {
|
756
|
+
maximum_batch_size: {
|
757
|
+
type: ("INSTANCE_COUNT" | "CAPACITY_PERCENTAGE"),
|
758
|
+
value: ::Integer
|
759
|
+
},
|
760
|
+
rollback_maximum_batch_size: {
|
761
|
+
type: ("INSTANCE_COUNT" | "CAPACITY_PERCENTAGE"),
|
762
|
+
value: ::Integer
|
763
|
+
}?
|
764
|
+
}?,
|
765
|
+
wait_interval_in_seconds: ::Integer?,
|
766
|
+
auto_rollback_configuration: Array[
|
767
|
+
{
|
768
|
+
alarm_name: ::String
|
769
|
+
},
|
770
|
+
]?
|
771
|
+
}?
|
751
772
|
}?
|
752
773
|
},
|
753
774
|
],
|
@@ -1281,6 +1302,15 @@ module Aws
|
|
1281
1302
|
amazon_q_settings: {
|
1282
1303
|
status: ("ENABLED" | "DISABLED")?,
|
1283
1304
|
q_profile_arn: ::String?
|
1305
|
+
}?,
|
1306
|
+
unified_studio_settings: {
|
1307
|
+
studio_web_portal_access: ("ENABLED" | "DISABLED")?,
|
1308
|
+
domain_account_id: ::String?,
|
1309
|
+
domain_region: ::String?,
|
1310
|
+
domain_id: ::String?,
|
1311
|
+
project_id: ::String?,
|
1312
|
+
environment_id: ::String?,
|
1313
|
+
project_s3_path: ::String?
|
1284
1314
|
}?
|
1285
1315
|
},
|
1286
1316
|
subnet_ids: Array[::String],
|
@@ -3912,6 +3942,7 @@ module Aws
|
|
3912
3942
|
ebs_volume_size_in_gb: ::Integer
|
3913
3943
|
}?
|
3914
3944
|
}?,
|
3945
|
+
space_managed_resources: ("ENABLED" | "DISABLED")?,
|
3915
3946
|
custom_file_systems: Array[
|
3916
3947
|
{
|
3917
3948
|
efs_file_system: {
|
@@ -8229,8 +8260,8 @@ module Aws
|
|
8229
8260
|
end
|
8230
8261
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#search_training_plan_offerings-instance_method
|
8231
8262
|
def search_training_plan_offerings: (
|
8232
|
-
instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge"),
|
8233
|
-
instance_count: ::Integer,
|
8263
|
+
?instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge"),
|
8264
|
+
?instance_count: ::Integer,
|
8234
8265
|
?start_time_after: ::Time,
|
8235
8266
|
?end_time_before: ::Time,
|
8236
8267
|
duration_hours: ::Integer,
|
@@ -8566,6 +8597,27 @@ module Aws
|
|
8566
8597
|
override_vpc_config: {
|
8567
8598
|
security_group_ids: Array[::String],
|
8568
8599
|
subnets: Array[::String]
|
8600
|
+
}?,
|
8601
|
+
scheduled_update_config: {
|
8602
|
+
schedule_expression: ::String,
|
8603
|
+
deployment_config: {
|
8604
|
+
rolling_update_policy: {
|
8605
|
+
maximum_batch_size: {
|
8606
|
+
type: ("INSTANCE_COUNT" | "CAPACITY_PERCENTAGE"),
|
8607
|
+
value: ::Integer
|
8608
|
+
},
|
8609
|
+
rollback_maximum_batch_size: {
|
8610
|
+
type: ("INSTANCE_COUNT" | "CAPACITY_PERCENTAGE"),
|
8611
|
+
value: ::Integer
|
8612
|
+
}?
|
8613
|
+
}?,
|
8614
|
+
wait_interval_in_seconds: ::Integer?,
|
8615
|
+
auto_rollback_configuration: Array[
|
8616
|
+
{
|
8617
|
+
alarm_name: ::String
|
8618
|
+
},
|
8619
|
+
]?
|
8620
|
+
}?
|
8569
8621
|
}?
|
8570
8622
|
},
|
8571
8623
|
],
|
@@ -8602,7 +8654,30 @@ module Aws
|
|
8602
8654
|
end
|
8603
8655
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#update_cluster_software-instance_method
|
8604
8656
|
def update_cluster_software: (
|
8605
|
-
cluster_name: ::String
|
8657
|
+
cluster_name: ::String,
|
8658
|
+
?instance_groups: Array[
|
8659
|
+
{
|
8660
|
+
instance_group_name: ::String
|
8661
|
+
},
|
8662
|
+
],
|
8663
|
+
?deployment_config: {
|
8664
|
+
rolling_update_policy: {
|
8665
|
+
maximum_batch_size: {
|
8666
|
+
type: ("INSTANCE_COUNT" | "CAPACITY_PERCENTAGE"),
|
8667
|
+
value: ::Integer
|
8668
|
+
},
|
8669
|
+
rollback_maximum_batch_size: {
|
8670
|
+
type: ("INSTANCE_COUNT" | "CAPACITY_PERCENTAGE"),
|
8671
|
+
value: ::Integer
|
8672
|
+
}?
|
8673
|
+
}?,
|
8674
|
+
wait_interval_in_seconds: ::Integer?,
|
8675
|
+
auto_rollback_configuration: Array[
|
8676
|
+
{
|
8677
|
+
alarm_name: ::String
|
8678
|
+
},
|
8679
|
+
]?
|
8680
|
+
}
|
8606
8681
|
) -> _UpdateClusterSoftwareResponseSuccess
|
8607
8682
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterSoftwareResponseSuccess
|
8608
8683
|
|
@@ -8921,6 +8996,15 @@ module Aws
|
|
8921
8996
|
amazon_q_settings: {
|
8922
8997
|
status: ("ENABLED" | "DISABLED")?,
|
8923
8998
|
q_profile_arn: ::String?
|
8999
|
+
}?,
|
9000
|
+
unified_studio_settings: {
|
9001
|
+
studio_web_portal_access: ("ENABLED" | "DISABLED")?,
|
9002
|
+
domain_account_id: ::String?,
|
9003
|
+
domain_region: ::String?,
|
9004
|
+
domain_id: ::String?,
|
9005
|
+
project_id: ::String?,
|
9006
|
+
environment_id: ::String?,
|
9007
|
+
project_s3_path: ::String?
|
8924
9008
|
}?
|
8925
9009
|
},
|
8926
9010
|
?app_security_group_management: ("Service" | "Customer"),
|
@@ -9832,6 +9916,7 @@ module Aws
|
|
9832
9916
|
ebs_volume_size_in_gb: ::Integer
|
9833
9917
|
}?
|
9834
9918
|
}?,
|
9919
|
+
space_managed_resources: ("ENABLED" | "DISABLED")?,
|
9835
9920
|
custom_file_systems: Array[
|
9836
9921
|
{
|
9837
9922
|
efs_file_system: {
|