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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1496114fc24f8979923e36a35fcda72d6fe3a5f26ceda9b9d4c4bf03e05e0c12
4
- data.tar.gz: de8dd429554d7c8ae10b7caa9d3aae69fb10465b2d52a003abffdf3a0737308e
3
+ metadata.gz: 27aa551882124ad9c9d89730c7e9fc33a4ee7da62bcd5aeded207204f82bdbeb
4
+ data.tar.gz: b85e7de113c1f2bec83b354fd2ef1bf2994ca5f03b0f88be65075fab5810e594
5
5
  SHA512:
6
- metadata.gz: e7e02b15f96820ad562bcff63de4f6b571f5c783025721524903553e0cfa83001afde5af6cf8489d005f65c827169ab736492de04c52541096c09f09b6dc2de4
7
- data.tar.gz: 1ac9585ccf18610063a73fbf339befa3d92e2d37969ce8cafaf16d6f3ae8f74eb2d55f537b1da52776e4c15669fa62c82e7844c71069a103feb6cfd2606cd13e
6
+ metadata.gz: 1c2afb790239994a74a5e86403d480f2ead3d57a45077544e00220b8faa2d2b8ef25f1f451f0417469459de0586c44fae9df8c11fa71f8401f318e2fd3d6a39d
7
+ data.tar.gz: 2e0812a5c508e09e652c5e7e8886859a294d4be4e6f850491e3ea5c5d57f0926574f464563b79201102eb1c2681b46a06d67dfeb416c8dd2e9ab3616ce1e96f6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.293.0 (2025-03-03)
5
+ ------------------
6
+
7
+ * Feature - Add DomainId to CreateDomainResponse
8
+
4
9
  1.292.0 (2025-02-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.292.0
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.292.0'
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
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.292.0'
58
+ GEM_VERSION = '1.293.0'
59
59
 
60
60
  end
61
61
 
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
@@ -1270,6 +1270,7 @@ module Aws::SageMaker
1270
1270
 
1271
1271
  class CreateDomainResponse
1272
1272
  attr_accessor domain_arn: ::String
1273
+ attr_accessor domain_id: ::String
1273
1274
  attr_accessor url: ::String
1274
1275
  SENSITIVE: []
1275
1276
  end
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.292.0
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-02-27 00:00:00.000000000 Z
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