aws-sdk-sagemaker 1.323.0 → 1.325.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 +76 -70
- data/lib/aws-sdk-sagemaker/client_api.rb +3 -2
- data/lib/aws-sdk-sagemaker/types.rb +15 -5
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +43 -41
- data/sig/types.rbs +21 -20
- metadata +1 -1
|
@@ -6349,6 +6349,7 @@ module Aws::SageMaker
|
|
|
6349
6349
|
|
|
6350
6350
|
DockerSettings.add_member(:enable_docker_access, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "EnableDockerAccess"))
|
|
6351
6351
|
DockerSettings.add_member(:vpc_only_trusted_accounts, Shapes::ShapeRef.new(shape: VpcOnlyTrustedAccounts, location_name: "VpcOnlyTrustedAccounts"))
|
|
6352
|
+
DockerSettings.add_member(:rootless_docker, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "RootlessDocker"))
|
|
6352
6353
|
DockerSettings.struct_class = Types::DockerSettings
|
|
6353
6354
|
|
|
6354
6355
|
DomainDetails.add_member(:domain_arn, Shapes::ShapeRef.new(shape: DomainArn, location_name: "DomainArn"))
|
|
@@ -10327,11 +10328,11 @@ module Aws::SageMaker
|
|
|
10327
10328
|
S3DataSource.add_member(:hub_access_config, Shapes::ShapeRef.new(shape: HubAccessConfig, location_name: "HubAccessConfig"))
|
|
10328
10329
|
S3DataSource.struct_class = Types::S3DataSource
|
|
10329
10330
|
|
|
10330
|
-
S3FileSystem.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
|
|
10331
|
+
S3FileSystem.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, required: true, location_name: "S3Uri"))
|
|
10331
10332
|
S3FileSystem.struct_class = Types::S3FileSystem
|
|
10332
10333
|
|
|
10333
10334
|
S3FileSystemConfig.add_member(:mount_path, Shapes::ShapeRef.new(shape: String1024, location_name: "MountPath"))
|
|
10334
|
-
S3FileSystemConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
|
|
10335
|
+
S3FileSystemConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, required: true, location_name: "S3Uri"))
|
|
10335
10336
|
S3FileSystemConfig.struct_class = Types::S3FileSystemConfig
|
|
10336
10337
|
|
|
10337
10338
|
S3ModelDataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3ModelUri, required: true, location_name: "S3Uri"))
|
|
@@ -5116,7 +5116,7 @@ module Aws::SageMaker
|
|
|
5116
5116
|
#
|
|
5117
5117
|
# * `default`: Use the default latest system image
|
|
5118
5118
|
#
|
|
5119
|
-
#
|
|
5119
|
+
# If you choose to use a custom AMI (`CustomAmiId`), ensure it meets
|
|
5120
5120
|
# the following requirements:
|
|
5121
5121
|
#
|
|
5122
5122
|
# * Encryption: The custom AMI must be unencrypted.
|
|
@@ -5130,7 +5130,9 @@ module Aws::SageMaker
|
|
|
5130
5130
|
# When updating the instance group's AMI through the
|
|
5131
5131
|
# `UpdateClusterSoftware` operation, if an instance group uses a
|
|
5132
5132
|
# custom AMI, you must provide an `ImageId` or use the default as
|
|
5133
|
-
# input.
|
|
5133
|
+
# input. Note that if you don't specify an instance group in your
|
|
5134
|
+
# `UpdateClusterSoftware` request, then all of the instance groups are
|
|
5135
|
+
# patched with the specified image.
|
|
5134
5136
|
# @return [String]
|
|
5135
5137
|
#
|
|
5136
5138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
|
|
@@ -21480,11 +21482,17 @@ module Aws::SageMaker
|
|
|
21480
21482
|
# domain is created in VPC-only mode.
|
|
21481
21483
|
# @return [Array<String>]
|
|
21482
21484
|
#
|
|
21485
|
+
# @!attribute [rw] rootless_docker
|
|
21486
|
+
# Indicates whether to use rootless Docker. Default value is
|
|
21487
|
+
# `DISABLED`.
|
|
21488
|
+
# @return [String]
|
|
21489
|
+
#
|
|
21483
21490
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DockerSettings AWS API Documentation
|
|
21484
21491
|
#
|
|
21485
21492
|
class DockerSettings < Struct.new(
|
|
21486
21493
|
:enable_docker_access,
|
|
21487
|
-
:vpc_only_trusted_accounts
|
|
21494
|
+
:vpc_only_trusted_accounts,
|
|
21495
|
+
:rootless_docker)
|
|
21488
21496
|
SENSITIVE = []
|
|
21489
21497
|
include Aws::Structure
|
|
21490
21498
|
end
|
|
@@ -50650,7 +50658,7 @@ module Aws::SageMaker
|
|
|
50650
50658
|
#
|
|
50651
50659
|
# * `default`: Use the default latest system image
|
|
50652
50660
|
#
|
|
50653
|
-
#
|
|
50661
|
+
# If you choose to use a custom AMI (`CustomAmiId`), ensure it meets
|
|
50654
50662
|
# the following requirements:
|
|
50655
50663
|
#
|
|
50656
50664
|
# * Encryption: The custom AMI must be unencrypted.
|
|
@@ -50664,7 +50672,9 @@ module Aws::SageMaker
|
|
|
50664
50672
|
# When updating the instance group's AMI through the
|
|
50665
50673
|
# `UpdateClusterSoftware` operation, if an instance group uses a
|
|
50666
50674
|
# custom AMI, you must provide an `ImageId` or use the default as
|
|
50667
|
-
# input.
|
|
50675
|
+
# input. Note that if you don't specify an instance group in your
|
|
50676
|
+
# `UpdateClusterSoftware` request, then all of the instance groups are
|
|
50677
|
+
# patched with the specified image.
|
|
50668
50678
|
# @return [String]
|
|
50669
50679
|
#
|
|
50670
50680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSoftwareRequest AWS API Documentation
|