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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 210610493aa93b2202fbef7355a0353736dfc92ca0b9f129241bd1ddfb3f95e7
4
- data.tar.gz: e0f7e82a22d0f7310bbf8aa9791bc7ca5ff0eb8f8dd6c2f072946315d698a27a
3
+ metadata.gz: c84894c2515528f310c89df036576d911a21a50486c79ded9fe2c0c0ad0f2a3d
4
+ data.tar.gz: 665e407d4a7d9ce4752bf1c05f1565453e41b5cc83c8d2bc8e9e3620db7d35df
5
5
  SHA512:
6
- metadata.gz: 04d113e6b608fa27124859f25aa3a241efead60fc20b5dcd62a1f4045081b1a9d748554500361e0689a67a00cd9357509a2d7037a2b0c4dc831af7c4e3982343
7
- data.tar.gz: 132e946a3805c8cee14c2fef9de9d88e6171515c7704674c6d66163d2a7ab2291bb525f2b8febdf7677e5f3e41bda7484921bb04fc25c7719596a840cc672a51
6
+ metadata.gz: 5ad93ba36d77d4ef5d4bddd9d70e62a478952dc0542be7cd1bf157d303e1aa330511c9b699c6a086fcafa9fbc79273d7fbf4aed959d9708e0104dff1b9711e70
7
+ data.tar.gz: 7de13e11780529e8665a4b41f2b963784436caf0eced1e38ddd123d6144f8510c95fcf2a64ab90b035799ef6c71c468b5dd8b8a52ca26098e902c4053e45a309
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.304.0 (2025-05-07)
5
+ ------------------
6
+
7
+ * Feature - SageMaker AI Studio users can now migrate to SageMaker Unified Studio, which offers a unified web-based development experience that integrates AWS data, analytics, artificial intelligence (AI), and machine learning (ML) services, as well as additional tools and resource
8
+
9
+ 1.303.0 (2025-05-01)
10
+ ------------------
11
+
12
+ * Feature - Feature - Adding support for Scheduled and Rolling Update Software in Sagemaker Hyperpod.
13
+
4
14
  1.302.0 (2025-04-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.302.0
1
+ 1.304.0
@@ -2072,6 +2072,27 @@ module Aws::SageMaker
2072
2072
  # security_group_ids: ["SecurityGroupId"], # required
2073
2073
  # subnets: ["SubnetId"], # required
2074
2074
  # },
2075
+ # scheduled_update_config: {
2076
+ # schedule_expression: "CronScheduleExpression", # required
2077
+ # deployment_config: {
2078
+ # rolling_update_policy: {
2079
+ # maximum_batch_size: { # required
2080
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
2081
+ # value: 1, # required
2082
+ # },
2083
+ # rollback_maximum_batch_size: {
2084
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
2085
+ # value: 1, # required
2086
+ # },
2087
+ # },
2088
+ # wait_interval_in_seconds: 1,
2089
+ # auto_rollback_configuration: [
2090
+ # {
2091
+ # alarm_name: "AlarmName", # required
2092
+ # },
2093
+ # ],
2094
+ # },
2095
+ # },
2075
2096
  # },
2076
2097
  # ],
2077
2098
  # vpc_config: {
@@ -3125,6 +3146,15 @@ module Aws::SageMaker
3125
3146
  # status: "ENABLED", # accepts ENABLED, DISABLED
3126
3147
  # q_profile_arn: "QProfileArn",
3127
3148
  # },
3149
+ # unified_studio_settings: {
3150
+ # studio_web_portal_access: "ENABLED", # accepts ENABLED, DISABLED
3151
+ # domain_account_id: "AccountId",
3152
+ # domain_region: "RegionName",
3153
+ # domain_id: "UnifiedStudioDomainId",
3154
+ # project_id: "UnifiedStudioProjectId",
3155
+ # environment_id: "UnifiedStudioEnvironmentId",
3156
+ # project_s3_path: "S3Uri",
3157
+ # },
3128
3158
  # },
3129
3159
  # subnet_ids: ["SubnetId"], # required
3130
3160
  # vpc_id: "VpcId", # required
@@ -4518,9 +4548,11 @@ module Aws::SageMaker
4518
4548
  # Components][1].
4519
4549
  #
4520
4550
  # Do not include any security-sensitive information including account
4521
- # access IDs, secrets or tokens in any hyperparameter field. If the use
4522
- # of security-sensitive credentials are detected, SageMaker will reject
4523
- # your training job request and return an exception error.
4551
+ # access IDs, secrets, or tokens in any hyperparameter fields. As part
4552
+ # of the shared responsibility model, you are responsible for any
4553
+ # potential exposure, unauthorized access, or compromise of your
4554
+ # sensitive data if caused by any security-sensitive information
4555
+ # included in the request hyperparameter variable or plain text fields..
4524
4556
  #
4525
4557
  #
4526
4558
  #
@@ -8508,6 +8540,13 @@ module Aws::SageMaker
8508
8540
  # The environment variables to set in the Docker container. Up to 100
8509
8541
  # key and values entries in the map are supported.
8510
8542
  #
8543
+ # Do not include any security-sensitive information including account
8544
+ # access IDs, secrets, or tokens in any environment fields. As part of
8545
+ # the shared responsibility model, you are responsible for any potential
8546
+ # exposure, unauthorized access, or compromise of your sensitive data if
8547
+ # caused by security-sensitive information included in the request
8548
+ # environment variable or plain text fields.
8549
+ #
8511
8550
  # @option params [Types::NetworkConfig] :network_config
8512
8551
  # Networking options for a processing job, such as whether to allow
8513
8552
  # inbound and outbound network calls to and from processing containers,
@@ -8523,6 +8562,13 @@ module Aws::SageMaker
8523
8562
  # [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
8524
8563
  # and Cost Management User Guide*.
8525
8564
  #
8565
+ # Do not include any security-sensitive information including account
8566
+ # access IDs, secrets, or tokens in any tags. As part of the shared
8567
+ # responsibility model, you are responsible for any potential exposure,
8568
+ # unauthorized access, or compromise of your sensitive data if caused by
8569
+ # security-sensitive information included in the request tag variable or
8570
+ # plain text fields.
8571
+ #
8526
8572
  #
8527
8573
  #
8528
8574
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
@@ -8850,6 +8896,7 @@ module Aws::SageMaker
8850
8896
  # ebs_volume_size_in_gb: 1, # required
8851
8897
  # },
8852
8898
  # },
8899
+ # space_managed_resources: "ENABLED", # accepts ENABLED, DISABLED
8853
8900
  # custom_file_systems: [
8854
8901
  # {
8855
8902
  # efs_file_system: {
@@ -8952,9 +8999,11 @@ module Aws::SageMaker
8952
8999
  # SageMaker, see [Algorithms][1].
8953
9000
  #
8954
9001
  # Do not include any security-sensitive information including account
8955
- # access IDs, secrets or tokens in any hyperparameter field. If the
8956
- # use of security-sensitive credentials are detected, SageMaker will
8957
- # reject your training job request and return an exception error.
9002
+ # access IDs, secrets, or tokens in any hyperparameter fields. As part
9003
+ # of the shared responsibility model, you are responsible for any
9004
+ # potential exposure, unauthorized access, or compromise of your
9005
+ # sensitive data if caused by security-sensitive information included
9006
+ # in the request hyperparameter variable or plain text fields.
8958
9007
  #
8959
9008
  # * `InputDataConfig` - Describes the input required by the training job
8960
9009
  # and the Amazon S3, EFS, or FSx location where it is stored.
@@ -8983,6 +9032,13 @@ module Aws::SageMaker
8983
9032
  # * `Environment` - The environment variables to set in the Docker
8984
9033
  # container.
8985
9034
  #
9035
+ # Do not include any security-sensitive information including account
9036
+ # access IDs, secrets, or tokens in any environment fields. As part of
9037
+ # the shared responsibility model, you are responsible for any
9038
+ # potential exposure, unauthorized access, or compromise of your
9039
+ # sensitive data if caused by security-sensitive information included
9040
+ # in the request environment variable or plain text fields.
9041
+ #
8986
9042
  # * `RetryStrategy` - The number of times to retry the job when the job
8987
9043
  # fails due to an `InternalServerError`.
8988
9044
  #
@@ -9009,9 +9065,11 @@ module Aws::SageMaker
9009
9065
  # as specified by the `Length Constraint`.
9010
9066
  #
9011
9067
  # Do not include any security-sensitive information including account
9012
- # access IDs, secrets or tokens in any hyperparameter field. If the use
9013
- # of security-sensitive credentials are detected, SageMaker will reject
9014
- # your training job request and return an exception error.
9068
+ # access IDs, secrets, or tokens in any hyperparameter fields. As part
9069
+ # of the shared responsibility model, you are responsible for any
9070
+ # potential exposure, unauthorized access, or compromise of your
9071
+ # sensitive data if caused by any security-sensitive information
9072
+ # included in the request hyperparameter variable or plain text fields.
9015
9073
  #
9016
9074
  #
9017
9075
  #
@@ -9113,6 +9171,13 @@ module Aws::SageMaker
9113
9171
  # purpose, owner, or environment. For more information, see [Tagging
9114
9172
  # Amazon Web Services Resources][1].
9115
9173
  #
9174
+ # Do not include any security-sensitive information including account
9175
+ # access IDs, secrets, or tokens in any tags. As part of the shared
9176
+ # responsibility model, you are responsible for any potential exposure,
9177
+ # unauthorized access, or compromise of your sensitive data if caused by
9178
+ # any security-sensitive information included in the request tag
9179
+ # variable or plain text fields.
9180
+ #
9116
9181
  #
9117
9182
  #
9118
9183
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
@@ -9202,6 +9267,13 @@ module Aws::SageMaker
9202
9267
  # @option params [Hash<String,String>] :environment
9203
9268
  # The environment variables to set in the Docker container.
9204
9269
  #
9270
+ # Do not include any security-sensitive information including account
9271
+ # access IDs, secrets, or tokens in any environment fields. As part of
9272
+ # the shared responsibility model, you are responsible for any potential
9273
+ # exposure, unauthorized access, or compromise of your sensitive data if
9274
+ # caused by security-sensitive information included in the request
9275
+ # environment variable or plain text fields.
9276
+ #
9205
9277
  # @option params [Types::RetryStrategy] :retry_strategy
9206
9278
  # The number of times to retry the job when the job fails due to an
9207
9279
  # `InternalServerError`.
@@ -12862,6 +12934,14 @@ module Aws::SageMaker
12862
12934
  # resp.instance_groups[0].override_vpc_config.security_group_ids[0] #=> String
12863
12935
  # resp.instance_groups[0].override_vpc_config.subnets #=> Array
12864
12936
  # resp.instance_groups[0].override_vpc_config.subnets[0] #=> String
12937
+ # resp.instance_groups[0].scheduled_update_config.schedule_expression #=> String
12938
+ # resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
12939
+ # resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.maximum_batch_size.value #=> Integer
12940
+ # resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
12941
+ # resp.instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.value #=> Integer
12942
+ # resp.instance_groups[0].scheduled_update_config.deployment_config.wait_interval_in_seconds #=> Integer
12943
+ # resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration #=> Array
12944
+ # resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration[0].alarm_name #=> String
12865
12945
  # resp.vpc_config.security_group_ids #=> Array
12866
12946
  # resp.vpc_config.security_group_ids[0] #=> String
12867
12947
  # resp.vpc_config.subnets #=> Array
@@ -12907,6 +12987,7 @@ module Aws::SageMaker
12907
12987
  # resp.node_details.instance_status.message #=> String
12908
12988
  # resp.node_details.instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.c5n.large", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.g6.xlarge", "ml.g6.2xlarge", "ml.g6.4xlarge", "ml.g6.8xlarge", "ml.g6.16xlarge", "ml.g6.12xlarge", "ml.g6.24xlarge", "ml.g6.48xlarge", "ml.gr6.4xlarge", "ml.gr6.8xlarge", "ml.g6e.xlarge", "ml.g6e.2xlarge", "ml.g6e.4xlarge", "ml.g6e.8xlarge", "ml.g6e.16xlarge", "ml.g6e.12xlarge", "ml.g6e.24xlarge", "ml.g6e.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn2.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.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.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.i3en.large", "ml.i3en.xlarge", "ml.i3en.2xlarge", "ml.i3en.3xlarge", "ml.i3en.6xlarge", "ml.i3en.12xlarge", "ml.i3en.24xlarge", "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.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"
12909
12989
  # resp.node_details.launch_time #=> Time
12990
+ # resp.node_details.last_software_update_time #=> Time
12910
12991
  # resp.node_details.life_cycle_config.source_s3_uri #=> String
12911
12992
  # resp.node_details.life_cycle_config.on_create #=> String
12912
12993
  # resp.node_details.override_vpc_config.security_group_ids #=> Array
@@ -13644,6 +13725,13 @@ module Aws::SageMaker
13644
13725
  # resp.domain_settings.docker_settings.vpc_only_trusted_accounts[0] #=> String
13645
13726
  # resp.domain_settings.amazon_q_settings.status #=> String, one of "ENABLED", "DISABLED"
13646
13727
  # resp.domain_settings.amazon_q_settings.q_profile_arn #=> String
13728
+ # resp.domain_settings.unified_studio_settings.studio_web_portal_access #=> String, one of "ENABLED", "DISABLED"
13729
+ # resp.domain_settings.unified_studio_settings.domain_account_id #=> String
13730
+ # resp.domain_settings.unified_studio_settings.domain_region #=> String
13731
+ # resp.domain_settings.unified_studio_settings.domain_id #=> String
13732
+ # resp.domain_settings.unified_studio_settings.project_id #=> String
13733
+ # resp.domain_settings.unified_studio_settings.environment_id #=> String
13734
+ # resp.domain_settings.unified_studio_settings.project_s3_path #=> String
13647
13735
  # resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
13648
13736
  # resp.home_efs_file_system_kms_key_id #=> String
13649
13737
  # resp.subnet_ids #=> Array
@@ -17144,6 +17232,7 @@ module Aws::SageMaker
17144
17232
  # resp.space_settings.jupyter_lab_app_settings.app_lifecycle_management.idle_settings.idle_timeout_in_minutes #=> Integer
17145
17233
  # resp.space_settings.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
17146
17234
  # resp.space_settings.space_storage_settings.ebs_storage_settings.ebs_volume_size_in_gb #=> Integer
17235
+ # resp.space_settings.space_managed_resources #=> String, one of "ENABLED", "DISABLED"
17147
17236
  # resp.space_settings.custom_file_systems #=> Array
17148
17237
  # resp.space_settings.custom_file_systems[0].efs_file_system.file_system_id #=> String
17149
17238
  # resp.space_settings.custom_file_systems[0].f_sx_lustre_file_system.file_system_id #=> String
@@ -19280,6 +19369,7 @@ module Aws::SageMaker
19280
19369
  # resp.cluster_node_summaries[0].instance_id #=> String
19281
19370
  # resp.cluster_node_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.c5n.large", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.g6.xlarge", "ml.g6.2xlarge", "ml.g6.4xlarge", "ml.g6.8xlarge", "ml.g6.16xlarge", "ml.g6.12xlarge", "ml.g6.24xlarge", "ml.g6.48xlarge", "ml.gr6.4xlarge", "ml.gr6.8xlarge", "ml.g6e.xlarge", "ml.g6e.2xlarge", "ml.g6e.4xlarge", "ml.g6e.8xlarge", "ml.g6e.16xlarge", "ml.g6e.12xlarge", "ml.g6e.24xlarge", "ml.g6e.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn2.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.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.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.i3en.large", "ml.i3en.xlarge", "ml.i3en.2xlarge", "ml.i3en.3xlarge", "ml.i3en.6xlarge", "ml.i3en.12xlarge", "ml.i3en.24xlarge", "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.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"
19282
19371
  # resp.cluster_node_summaries[0].launch_time #=> Time
19372
+ # resp.cluster_node_summaries[0].last_software_update_time #=> Time
19283
19373
  # resp.cluster_node_summaries[0].instance_status.status #=> String, one of "Running", "Failure", "Pending", "ShuttingDown", "SystemUpdating", "DeepHealthCheckInProgress"
19284
19374
  # resp.cluster_node_summaries[0].instance_status.message #=> String
19285
19375
  #
@@ -25250,7 +25340,7 @@ module Aws::SageMaker
25250
25340
  # SageMaker training jobs or SageMaker HyperPod clusters using Amazon
25251
25341
  # SageMaker Training Plan , see ` CreateTrainingPlan `.
25252
25342
  #
25253
- # @option params [required, String] :instance_type
25343
+ # @option params [String] :instance_type
25254
25344
  # The type of instance you want to search for in the available training
25255
25345
  # plan offerings. This field allows you to filter the search results
25256
25346
  # based on the specific compute resources you require for your SageMaker
@@ -25258,7 +25348,7 @@ module Aws::SageMaker
25258
25348
  # training plan offerings, specifying the instance type helps you find
25259
25349
  # Reserved Instances that match your computational needs.
25260
25350
  #
25261
- # @option params [required, Integer] :instance_count
25351
+ # @option params [Integer] :instance_count
25262
25352
  # The number of instances you want to reserve in the training plan
25263
25353
  # offerings. This allows you to specify the quantity of compute
25264
25354
  # resources needed for your SageMaker training jobs or SageMaker
@@ -25295,8 +25385,8 @@ module Aws::SageMaker
25295
25385
  # @example Request syntax with placeholder values
25296
25386
  #
25297
25387
  # resp = client.search_training_plan_offerings({
25298
- # instance_type: "ml.p4d.24xlarge", # required, accepts ml.p4d.24xlarge, ml.p5.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.trn1.32xlarge, ml.trn2.48xlarge
25299
- # instance_count: 1, # required
25388
+ # instance_type: "ml.p4d.24xlarge", # accepts ml.p4d.24xlarge, ml.p5.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.trn1.32xlarge, ml.trn2.48xlarge
25389
+ # instance_count: 1,
25300
25390
  # start_time_after: Time.now,
25301
25391
  # end_time_before: Time.now,
25302
25392
  # duration_hours: 1, # required
@@ -26342,6 +26432,27 @@ module Aws::SageMaker
26342
26432
  # security_group_ids: ["SecurityGroupId"], # required
26343
26433
  # subnets: ["SubnetId"], # required
26344
26434
  # },
26435
+ # scheduled_update_config: {
26436
+ # schedule_expression: "CronScheduleExpression", # required
26437
+ # deployment_config: {
26438
+ # rolling_update_policy: {
26439
+ # maximum_batch_size: { # required
26440
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
26441
+ # value: 1, # required
26442
+ # },
26443
+ # rollback_maximum_batch_size: {
26444
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
26445
+ # value: 1, # required
26446
+ # },
26447
+ # },
26448
+ # wait_interval_in_seconds: 1,
26449
+ # auto_rollback_configuration: [
26450
+ # {
26451
+ # alarm_name: "AlarmName", # required
26452
+ # },
26453
+ # ],
26454
+ # },
26455
+ # },
26345
26456
  # },
26346
26457
  # ],
26347
26458
  # node_recovery: "Automatic", # accepts Automatic, None
@@ -26427,6 +26538,12 @@ module Aws::SageMaker
26427
26538
  # Specify the name or the Amazon Resource Name (ARN) of the SageMaker
26428
26539
  # HyperPod cluster you want to update for security patching.
26429
26540
  #
26541
+ # @option params [Array<Types::UpdateClusterSoftwareInstanceGroupSpecification>] :instance_groups
26542
+ # The array of instance groups for which to update AMI versions.
26543
+ #
26544
+ # @option params [Types::DeploymentConfiguration] :deployment_config
26545
+ # The configuration to use when updating the AMI versions.
26546
+ #
26430
26547
  # @return [Types::UpdateClusterSoftwareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
26431
26548
  #
26432
26549
  # * {Types::UpdateClusterSoftwareResponse#cluster_arn #cluster_arn} => String
@@ -26435,6 +26552,29 @@ module Aws::SageMaker
26435
26552
  #
26436
26553
  # resp = client.update_cluster_software({
26437
26554
  # cluster_name: "ClusterNameOrArn", # required
26555
+ # instance_groups: [
26556
+ # {
26557
+ # instance_group_name: "ClusterInstanceGroupName", # required
26558
+ # },
26559
+ # ],
26560
+ # deployment_config: {
26561
+ # rolling_update_policy: {
26562
+ # maximum_batch_size: { # required
26563
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
26564
+ # value: 1, # required
26565
+ # },
26566
+ # rollback_maximum_batch_size: {
26567
+ # type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
26568
+ # value: 1, # required
26569
+ # },
26570
+ # },
26571
+ # wait_interval_in_seconds: 1,
26572
+ # auto_rollback_configuration: [
26573
+ # {
26574
+ # alarm_name: "AlarmName", # required
26575
+ # },
26576
+ # ],
26577
+ # },
26438
26578
  # })
26439
26579
  #
26440
26580
  # @example Response structure
@@ -26964,6 +27104,15 @@ module Aws::SageMaker
26964
27104
  # status: "ENABLED", # accepts ENABLED, DISABLED
26965
27105
  # q_profile_arn: "QProfileArn",
26966
27106
  # },
27107
+ # unified_studio_settings: {
27108
+ # studio_web_portal_access: "ENABLED", # accepts ENABLED, DISABLED
27109
+ # domain_account_id: "AccountId",
27110
+ # domain_region: "RegionName",
27111
+ # domain_id: "UnifiedStudioDomainId",
27112
+ # project_id: "UnifiedStudioProjectId",
27113
+ # environment_id: "UnifiedStudioEnvironmentId",
27114
+ # project_s3_path: "S3Uri",
27115
+ # },
26967
27116
  # },
26968
27117
  # app_security_group_management: "Service", # accepts Service, Customer
26969
27118
  # default_space_settings: {
@@ -29047,6 +29196,7 @@ module Aws::SageMaker
29047
29196
  # ebs_volume_size_in_gb: 1, # required
29048
29197
  # },
29049
29198
  # },
29199
+ # space_managed_resources: "ENABLED", # accepts ENABLED, DISABLED
29050
29200
  # custom_file_systems: [
29051
29201
  # {
29052
29202
  # efs_file_system: {
@@ -29789,7 +29939,7 @@ module Aws::SageMaker
29789
29939
  tracer: tracer
29790
29940
  )
29791
29941
  context[:gem_name] = 'aws-sdk-sagemaker'
29792
- context[:gem_version] = '1.302.0'
29942
+ context[:gem_version] = '1.304.0'
29793
29943
  Seahorse::Client::Request.new(handlers, context)
29794
29944
  end
29795
29945