aws-sdk-sagemaker 1.292.0 → 1.293.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 +3 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +1 -0
- data/lib/aws-sdk-sagemaker/types.rb +13 -0
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27aa551882124ad9c9d89730c7e9fc33a4ee7da62bcd5aeded207204f82bdbeb
|
4
|
+
data.tar.gz: b85e7de113c1f2bec83b354fd2ef1bf2994ca5f03b0f88be65075fab5810e594
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c2afb790239994a74a5e86403d480f2ead3d57a45077544e00220b8faa2d2b8ef25f1f451f0417469459de0586c44fae9df8c11fa71f8401f318e2fd3d6a39d
|
7
|
+
data.tar.gz: 2e0812a5c508e09e652c5e7e8886859a294d4be4e6f850491e3ea5c5d57f0926574f464563b79201102eb1c2681b46a06d67dfeb416c8dd2e9ab3616ce1e96f6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.293.0
|
@@ -2888,6 +2888,7 @@ module Aws::SageMaker
|
|
2888
2888
|
# @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2889
2889
|
#
|
2890
2890
|
# * {Types::CreateDomainResponse#domain_arn #domain_arn} => String
|
2891
|
+
# * {Types::CreateDomainResponse#domain_id #domain_id} => String
|
2891
2892
|
# * {Types::CreateDomainResponse#url #url} => String
|
2892
2893
|
#
|
2893
2894
|
# @example Request syntax with placeholder values
|
@@ -3231,6 +3232,7 @@ module Aws::SageMaker
|
|
3231
3232
|
# @example Response structure
|
3232
3233
|
#
|
3233
3234
|
# resp.domain_arn #=> String
|
3235
|
+
# resp.domain_id #=> String
|
3234
3236
|
# resp.url #=> String
|
3235
3237
|
#
|
3236
3238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomain AWS API Documentation
|
@@ -29745,7 +29747,7 @@ module Aws::SageMaker
|
|
29745
29747
|
tracer: tracer
|
29746
29748
|
)
|
29747
29749
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
29748
|
-
context[:gem_version] = '1.
|
29750
|
+
context[:gem_version] = '1.293.0'
|
29749
29751
|
Seahorse::Client::Request.new(handlers, context)
|
29750
29752
|
end
|
29751
29753
|
|
@@ -3587,6 +3587,7 @@ module Aws::SageMaker
|
|
3587
3587
|
CreateDomainRequest.struct_class = Types::CreateDomainRequest
|
3588
3588
|
|
3589
3589
|
CreateDomainResponse.add_member(:domain_arn, Shapes::ShapeRef.new(shape: DomainArn, location_name: "DomainArn"))
|
3590
|
+
CreateDomainResponse.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "DomainId"))
|
3590
3591
|
CreateDomainResponse.add_member(:url, Shapes::ShapeRef.new(shape: String1024, location_name: "Url"))
|
3591
3592
|
CreateDomainResponse.struct_class = Types::CreateDomainResponse
|
3592
3593
|
|
@@ -6823,6 +6823,10 @@ module Aws::SageMaker
|
|
6823
6823
|
# The Amazon Resource Name (ARN) of the created domain.
|
6824
6824
|
# @return [String]
|
6825
6825
|
#
|
6826
|
+
# @!attribute [rw] domain_id
|
6827
|
+
# The ID of the created domain.
|
6828
|
+
# @return [String]
|
6829
|
+
#
|
6826
6830
|
# @!attribute [rw] url
|
6827
6831
|
# The URL to the created domain.
|
6828
6832
|
# @return [String]
|
@@ -6831,6 +6835,7 @@ module Aws::SageMaker
|
|
6831
6835
|
#
|
6832
6836
|
class CreateDomainResponse < Struct.new(
|
6833
6837
|
:domain_arn,
|
6838
|
+
:domain_id,
|
6834
6839
|
:url)
|
6835
6840
|
SENSITIVE = []
|
6836
6841
|
include Aws::Structure
|
@@ -26734,6 +26739,14 @@ module Aws::SageMaker
|
|
26734
26739
|
# @!attribute [rw] custom_images
|
26735
26740
|
# A list of custom SageMaker AI images that are configured to run as a
|
26736
26741
|
# KernelGateway app.
|
26742
|
+
#
|
26743
|
+
# The maximum number of custom images are as follows.
|
26744
|
+
#
|
26745
|
+
# * On a domain level: 200
|
26746
|
+
#
|
26747
|
+
# * On a space level: 5
|
26748
|
+
#
|
26749
|
+
# * On a user profile level: 5
|
26737
26750
|
# @return [Array<Types::CustomImage>]
|
26738
26751
|
#
|
26739
26752
|
# @!attribute [rw] lifecycle_config_arns
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1049,6 +1049,7 @@ module Aws
|
|
1049
1049
|
interface _CreateDomainResponseSuccess
|
1050
1050
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainResponse]
|
1051
1051
|
def domain_arn: () -> ::String
|
1052
|
+
def domain_id: () -> ::String
|
1052
1053
|
def url: () -> ::String
|
1053
1054
|
end
|
1054
1055
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_domain-instance_method
|
data/sig/types.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.293.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|