aws-sdk-sagemaker 1.367.0 → 1.368.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 +22 -9
- data/lib/aws-sdk-sagemaker/client_api.rb +4 -0
- data/lib/aws-sdk-sagemaker/types.rb +21 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54b53f535b782e57d798ffbc9040cc1c44c9de602b0a18e0441e824c6002c114
|
|
4
|
+
data.tar.gz: '096c24cf50eb6254426a1587436f4197139c53fbd8608058487de2de6aab1d74'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df2a1c8056630825760cb4b11d9fcc20fb30026f8e83ff827e407a197f13ba68a1f08c90d2ebc182504b9967d35dcc202f9be0c7af3628e01621de94a079e468
|
|
7
|
+
data.tar.gz: bf5040386bf9a386659a20c18281d1a7b3901c3fa247f0d316bfbcdabc08ee9bd019258ac5445273e92b25bd1277d00a96de6acbd563aeb1e023cde3a29b6b11
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.368.0
|
|
@@ -199,7 +199,7 @@ module Aws::SageMaker
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::SageMaker
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -3771,6 +3769,12 @@ module Aws::SageMaker
|
|
|
3771
3769
|
# is provided. If setting up the domain for use with RStudio, this value
|
|
3772
3770
|
# must be set to `Service`.
|
|
3773
3771
|
#
|
|
3772
|
+
# @option params [String] :home_efs_file_system_creation
|
|
3773
|
+
# Indicates whether to create a home EFS file system for the domain.
|
|
3774
|
+
# Defaults to `Enabled`. Set to `Disabled` to skip EFS creation and
|
|
3775
|
+
# reduce domain creation time. You can enable EFS later by calling
|
|
3776
|
+
# `UpdateDomain`.
|
|
3777
|
+
#
|
|
3774
3778
|
# @option params [String] :tag_propagation
|
|
3775
3779
|
# Indicates whether custom tag propagation is supported for the domain.
|
|
3776
3780
|
# Defaults to `DISABLED`.
|
|
@@ -4054,6 +4058,7 @@ module Aws::SageMaker
|
|
|
4054
4058
|
# home_efs_file_system_kms_key_id: "KmsKeyId",
|
|
4055
4059
|
# kms_key_id: "KmsKeyId",
|
|
4056
4060
|
# app_security_group_management: "Service", # accepts Service, Customer
|
|
4061
|
+
# home_efs_file_system_creation: "Enabled", # accepts Enabled, Disabled
|
|
4057
4062
|
# tag_propagation: "ENABLED", # accepts ENABLED, DISABLED
|
|
4058
4063
|
# default_space_settings: {
|
|
4059
4064
|
# execution_role: "RoleArn",
|
|
@@ -9025,7 +9030,7 @@ module Aws::SageMaker
|
|
|
9025
9030
|
#
|
|
9026
9031
|
# @option params [String] :platform_identifier
|
|
9027
9032
|
# The platform identifier of the notebook instance runtime environment.
|
|
9028
|
-
# The default value is `notebook-
|
|
9033
|
+
# The default value is `notebook-al2023-v1`.
|
|
9029
9034
|
#
|
|
9030
9035
|
# @option params [Types::InstanceMetadataServiceConfiguration] :instance_metadata_service_configuration
|
|
9031
9036
|
# Information on the IMDS configuration of the notebook instance
|
|
@@ -15599,6 +15604,7 @@ module Aws::SageMaker
|
|
|
15599
15604
|
# * {Types::DescribeDomainResponse#vpc_id #vpc_id} => String
|
|
15600
15605
|
# * {Types::DescribeDomainResponse#kms_key_id #kms_key_id} => String
|
|
15601
15606
|
# * {Types::DescribeDomainResponse#app_security_group_management #app_security_group_management} => String
|
|
15607
|
+
# * {Types::DescribeDomainResponse#home_efs_file_system_creation #home_efs_file_system_creation} => String
|
|
15602
15608
|
# * {Types::DescribeDomainResponse#tag_propagation #tag_propagation} => String
|
|
15603
15609
|
# * {Types::DescribeDomainResponse#default_space_settings #default_space_settings} => Types::DefaultSpaceSettings
|
|
15604
15610
|
#
|
|
@@ -15784,6 +15790,7 @@ module Aws::SageMaker
|
|
|
15784
15790
|
# resp.vpc_id #=> String
|
|
15785
15791
|
# resp.kms_key_id #=> String
|
|
15786
15792
|
# resp.app_security_group_management #=> String, one of "Service", "Customer"
|
|
15793
|
+
# resp.home_efs_file_system_creation #=> String, one of "Enabled", "Disabled"
|
|
15787
15794
|
# resp.tag_propagation #=> String, one of "ENABLED", "DISABLED"
|
|
15788
15795
|
# resp.default_space_settings.execution_role #=> String
|
|
15789
15796
|
# resp.default_space_settings.security_groups #=> Array
|
|
@@ -30397,6 +30404,11 @@ module Aws::SageMaker
|
|
|
30397
30404
|
# Indicates whether custom tag propagation is supported for the domain.
|
|
30398
30405
|
# Defaults to `DISABLED`.
|
|
30399
30406
|
#
|
|
30407
|
+
# @option params [String] :home_efs_file_system_creation
|
|
30408
|
+
# Indicates whether to create a home EFS file system for the domain. You
|
|
30409
|
+
# can change from `Disabled` to `Enabled` to provision EFS on demand,
|
|
30410
|
+
# but you cannot change from `Enabled` to `Disabled`.
|
|
30411
|
+
#
|
|
30400
30412
|
# @option params [String] :vpc_id
|
|
30401
30413
|
# The identifier for the VPC used by the domain for network
|
|
30402
30414
|
# communication. Use this field only when adding VPC configuration to a
|
|
@@ -30769,6 +30781,7 @@ module Aws::SageMaker
|
|
|
30769
30781
|
# subnet_ids: ["SubnetId"],
|
|
30770
30782
|
# app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
|
|
30771
30783
|
# tag_propagation: "ENABLED", # accepts ENABLED, DISABLED
|
|
30784
|
+
# home_efs_file_system_creation: "Enabled", # accepts Enabled, Disabled
|
|
30772
30785
|
# vpc_id: "VpcId",
|
|
30773
30786
|
# })
|
|
30774
30787
|
#
|
|
@@ -33823,7 +33836,7 @@ module Aws::SageMaker
|
|
|
33823
33836
|
tracer: tracer
|
|
33824
33837
|
)
|
|
33825
33838
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
33826
|
-
context[:gem_version] = '1.
|
|
33839
|
+
context[:gem_version] = '1.368.0'
|
|
33827
33840
|
Seahorse::Client::Request.new(handlers, context)
|
|
33828
33841
|
end
|
|
33829
33842
|
|
|
@@ -1304,6 +1304,7 @@ module Aws::SageMaker
|
|
|
1304
1304
|
HiddenSageMakerImageVersionAliasesList = Shapes::ListShape.new(name: 'HiddenSageMakerImageVersionAliasesList')
|
|
1305
1305
|
HolidayConfig = Shapes::ListShape.new(name: 'HolidayConfig')
|
|
1306
1306
|
HolidayConfigAttributes = Shapes::StructureShape.new(name: 'HolidayConfigAttributes')
|
|
1307
|
+
HomeEfsFileSystemCreation = Shapes::StringShape.new(name: 'HomeEfsFileSystemCreation')
|
|
1307
1308
|
HookParameters = Shapes::MapShape.new(name: 'HookParameters')
|
|
1308
1309
|
Horovod = Shapes::BooleanShape.new(name: 'Horovod')
|
|
1309
1310
|
HubAccessConfig = Shapes::StructureShape.new(name: 'HubAccessConfig')
|
|
@@ -4669,6 +4670,7 @@ module Aws::SageMaker
|
|
|
4669
4670
|
CreateDomainRequest.add_member(:home_efs_file_system_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, deprecated: true, location_name: "HomeEfsFileSystemKmsKeyId", metadata: {"deprecatedMessage" => "This property is deprecated, use KmsKeyId instead."}))
|
|
4670
4671
|
CreateDomainRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
|
4671
4672
|
CreateDomainRequest.add_member(:app_security_group_management, Shapes::ShapeRef.new(shape: AppSecurityGroupManagement, location_name: "AppSecurityGroupManagement"))
|
|
4673
|
+
CreateDomainRequest.add_member(:home_efs_file_system_creation, Shapes::ShapeRef.new(shape: HomeEfsFileSystemCreation, location_name: "HomeEfsFileSystemCreation"))
|
|
4672
4674
|
CreateDomainRequest.add_member(:tag_propagation, Shapes::ShapeRef.new(shape: TagPropagation, location_name: "TagPropagation"))
|
|
4673
4675
|
CreateDomainRequest.add_member(:default_space_settings, Shapes::ShapeRef.new(shape: DefaultSpaceSettings, location_name: "DefaultSpaceSettings"))
|
|
4674
4676
|
CreateDomainRequest.struct_class = Types::CreateDomainRequest
|
|
@@ -6203,6 +6205,7 @@ module Aws::SageMaker
|
|
|
6203
6205
|
DescribeDomainResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
|
6204
6206
|
DescribeDomainResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
|
6205
6207
|
DescribeDomainResponse.add_member(:app_security_group_management, Shapes::ShapeRef.new(shape: AppSecurityGroupManagement, location_name: "AppSecurityGroupManagement"))
|
|
6208
|
+
DescribeDomainResponse.add_member(:home_efs_file_system_creation, Shapes::ShapeRef.new(shape: HomeEfsFileSystemCreation, location_name: "HomeEfsFileSystemCreation"))
|
|
6206
6209
|
DescribeDomainResponse.add_member(:tag_propagation, Shapes::ShapeRef.new(shape: TagPropagation, location_name: "TagPropagation"))
|
|
6207
6210
|
DescribeDomainResponse.add_member(:default_space_settings, Shapes::ShapeRef.new(shape: DefaultSpaceSettings, location_name: "DefaultSpaceSettings"))
|
|
6208
6211
|
DescribeDomainResponse.struct_class = Types::DescribeDomainResponse
|
|
@@ -12583,6 +12586,7 @@ module Aws::SageMaker
|
|
|
12583
12586
|
UpdateDomainRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: Subnets, location_name: "SubnetIds"))
|
|
12584
12587
|
UpdateDomainRequest.add_member(:app_network_access_type, Shapes::ShapeRef.new(shape: AppNetworkAccessType, location_name: "AppNetworkAccessType"))
|
|
12585
12588
|
UpdateDomainRequest.add_member(:tag_propagation, Shapes::ShapeRef.new(shape: TagPropagation, location_name: "TagPropagation"))
|
|
12589
|
+
UpdateDomainRequest.add_member(:home_efs_file_system_creation, Shapes::ShapeRef.new(shape: HomeEfsFileSystemCreation, location_name: "HomeEfsFileSystemCreation"))
|
|
12586
12590
|
UpdateDomainRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
|
12587
12591
|
UpdateDomainRequest.struct_class = Types::UpdateDomainRequest
|
|
12588
12592
|
|
|
@@ -9972,6 +9972,13 @@ module Aws::SageMaker
|
|
|
9972
9972
|
# value must be set to `Service`.
|
|
9973
9973
|
# @return [String]
|
|
9974
9974
|
#
|
|
9975
|
+
# @!attribute [rw] home_efs_file_system_creation
|
|
9976
|
+
# Indicates whether to create a home EFS file system for the domain.
|
|
9977
|
+
# Defaults to `Enabled`. Set to `Disabled` to skip EFS creation and
|
|
9978
|
+
# reduce domain creation time. You can enable EFS later by calling
|
|
9979
|
+
# `UpdateDomain`.
|
|
9980
|
+
# @return [String]
|
|
9981
|
+
#
|
|
9975
9982
|
# @!attribute [rw] tag_propagation
|
|
9976
9983
|
# Indicates whether custom tag propagation is supported for the
|
|
9977
9984
|
# domain. Defaults to `DISABLED`.
|
|
@@ -9996,6 +10003,7 @@ module Aws::SageMaker
|
|
|
9996
10003
|
:home_efs_file_system_kms_key_id,
|
|
9997
10004
|
:kms_key_id,
|
|
9998
10005
|
:app_security_group_management,
|
|
10006
|
+
:home_efs_file_system_creation,
|
|
9999
10007
|
:tag_propagation,
|
|
10000
10008
|
:default_space_settings)
|
|
10001
10009
|
SENSITIVE = []
|
|
@@ -12742,7 +12750,7 @@ module Aws::SageMaker
|
|
|
12742
12750
|
#
|
|
12743
12751
|
# @!attribute [rw] platform_identifier
|
|
12744
12752
|
# The platform identifier of the notebook instance runtime
|
|
12745
|
-
# environment. The default value is `notebook-
|
|
12753
|
+
# environment. The default value is `notebook-al2023-v1`.
|
|
12746
12754
|
# @return [String]
|
|
12747
12755
|
#
|
|
12748
12756
|
# @!attribute [rw] instance_metadata_service_configuration
|
|
@@ -18558,6 +18566,10 @@ module Aws::SageMaker
|
|
|
18558
18566
|
# is provided.
|
|
18559
18567
|
# @return [String]
|
|
18560
18568
|
#
|
|
18569
|
+
# @!attribute [rw] home_efs_file_system_creation
|
|
18570
|
+
# Indicates whether a home EFS file system is created for the domain.
|
|
18571
|
+
# @return [String]
|
|
18572
|
+
#
|
|
18561
18573
|
# @!attribute [rw] tag_propagation
|
|
18562
18574
|
# Indicates whether custom tag propagation is supported for the
|
|
18563
18575
|
# domain.
|
|
@@ -18592,6 +18604,7 @@ module Aws::SageMaker
|
|
|
18592
18604
|
:vpc_id,
|
|
18593
18605
|
:kms_key_id,
|
|
18594
18606
|
:app_security_group_management,
|
|
18607
|
+
:home_efs_file_system_creation,
|
|
18595
18608
|
:tag_propagation,
|
|
18596
18609
|
:default_space_settings)
|
|
18597
18610
|
SENSITIVE = []
|
|
@@ -55537,6 +55550,12 @@ module Aws::SageMaker
|
|
|
55537
55550
|
# domain. Defaults to `DISABLED`.
|
|
55538
55551
|
# @return [String]
|
|
55539
55552
|
#
|
|
55553
|
+
# @!attribute [rw] home_efs_file_system_creation
|
|
55554
|
+
# Indicates whether to create a home EFS file system for the domain.
|
|
55555
|
+
# You can change from `Disabled` to `Enabled` to provision EFS on
|
|
55556
|
+
# demand, but you cannot change from `Enabled` to `Disabled`.
|
|
55557
|
+
# @return [String]
|
|
55558
|
+
#
|
|
55540
55559
|
# @!attribute [rw] vpc_id
|
|
55541
55560
|
# The identifier for the VPC used by the domain for network
|
|
55542
55561
|
# communication. Use this field only when adding VPC configuration to
|
|
@@ -55557,6 +55576,7 @@ module Aws::SageMaker
|
|
|
55557
55576
|
:subnet_ids,
|
|
55558
55577
|
:app_network_access_type,
|
|
55559
55578
|
:tag_propagation,
|
|
55579
|
+
:home_efs_file_system_creation,
|
|
55560
55580
|
:vpc_id)
|
|
55561
55581
|
SENSITIVE = []
|
|
55562
55582
|
include Aws::Structure
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1019,6 +1019,7 @@ module Aws
|
|
|
1019
1019
|
?home_efs_file_system_kms_key_id: ::String,
|
|
1020
1020
|
?kms_key_id: ::String,
|
|
1021
1021
|
?app_security_group_management: ("Service" | "Customer"),
|
|
1022
|
+
?home_efs_file_system_creation: ("Enabled" | "Disabled"),
|
|
1022
1023
|
?tag_propagation: ("ENABLED" | "DISABLED"),
|
|
1023
1024
|
?default_space_settings: Params::default_space_settings
|
|
1024
1025
|
) -> _CreateDomainResponseSuccess
|
|
@@ -3922,6 +3923,7 @@ module Aws
|
|
|
3922
3923
|
def vpc_id: () -> ::String
|
|
3923
3924
|
def kms_key_id: () -> ::String
|
|
3924
3925
|
def app_security_group_management: () -> ("Service" | "Customer")
|
|
3926
|
+
def home_efs_file_system_creation: () -> ("Enabled" | "Disabled")
|
|
3925
3927
|
def tag_propagation: () -> ("ENABLED" | "DISABLED")
|
|
3926
3928
|
def default_space_settings: () -> Types::DefaultSpaceSettings
|
|
3927
3929
|
end
|
|
@@ -7463,6 +7465,7 @@ module Aws
|
|
|
7463
7465
|
?subnet_ids: Array[::String],
|
|
7464
7466
|
?app_network_access_type: ("PublicInternetOnly" | "VpcOnly"),
|
|
7465
7467
|
?tag_propagation: ("ENABLED" | "DISABLED"),
|
|
7468
|
+
?home_efs_file_system_creation: ("Enabled" | "Disabled"),
|
|
7466
7469
|
?vpc_id: ::String
|
|
7467
7470
|
) -> _UpdateDomainResponseSuccess
|
|
7468
7471
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -2005,6 +2005,7 @@ module Aws::SageMaker
|
|
|
2005
2005
|
attr_accessor home_efs_file_system_kms_key_id: ::String
|
|
2006
2006
|
attr_accessor kms_key_id: ::String
|
|
2007
2007
|
attr_accessor app_security_group_management: ("Service" | "Customer")
|
|
2008
|
+
attr_accessor home_efs_file_system_creation: ("Enabled" | "Disabled")
|
|
2008
2009
|
attr_accessor tag_propagation: ("ENABLED" | "DISABLED")
|
|
2009
2010
|
attr_accessor default_space_settings: Types::DefaultSpaceSettings
|
|
2010
2011
|
SENSITIVE: []
|
|
@@ -4027,6 +4028,7 @@ module Aws::SageMaker
|
|
|
4027
4028
|
attr_accessor vpc_id: ::String
|
|
4028
4029
|
attr_accessor kms_key_id: ::String
|
|
4029
4030
|
attr_accessor app_security_group_management: ("Service" | "Customer")
|
|
4031
|
+
attr_accessor home_efs_file_system_creation: ("Enabled" | "Disabled")
|
|
4030
4032
|
attr_accessor tag_propagation: ("ENABLED" | "DISABLED")
|
|
4031
4033
|
attr_accessor default_space_settings: Types::DefaultSpaceSettings
|
|
4032
4034
|
SENSITIVE: []
|
|
@@ -11749,6 +11751,7 @@ module Aws::SageMaker
|
|
|
11749
11751
|
attr_accessor subnet_ids: ::Array[::String]
|
|
11750
11752
|
attr_accessor app_network_access_type: ("PublicInternetOnly" | "VpcOnly")
|
|
11751
11753
|
attr_accessor tag_propagation: ("ENABLED" | "DISABLED")
|
|
11754
|
+
attr_accessor home_efs_file_system_creation: ("Enabled" | "Disabled")
|
|
11752
11755
|
attr_accessor vpc_id: ::String
|
|
11753
11756
|
SENSITIVE: []
|
|
11754
11757
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-sagemaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.368.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|