aws-sdk-sagemaker 1.266.0 → 1.267.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: 7d89d275e10b1490b80381bb401073535e0714c7a5ad54b875712e179ba3a124
4
- data.tar.gz: b7d5b83e1b319aa354540774b643e4a349b892daa2aa1984f2eecc5f0773dab2
3
+ metadata.gz: f0925b9d6bdbe87441cd16a8cc32cae56b2260d1213d1b9ab94e89b63a0e35e5
4
+ data.tar.gz: b00fee9cace1187d302ce9b1f670bf0aeae0a48ba3e5b6992e8189a4a48a80de
5
5
  SHA512:
6
- metadata.gz: 13f23b2425d6f64df806c8cfbe745c774eafdd461702be0a3212ad9d8bbed3ba30ca8988ac452841a8ecb1dc05be17b6e074a87a7c683d758e2816aed9a8d5c7
7
- data.tar.gz: eaad4e76600f7df396de547993550a7cc7f1f221ab8b0481befbd7077beb347876e26b525ebb8f85c7269d2443f0da539b13e69ada5fc58e7505f4172e41a2c4
6
+ metadata.gz: 5d34efcbebf02c1e9d51e6f420d71b6e861d62e7882fcd9453c03c2bb84a2bac850df48dc437931383fe618c1ef0043d09cf458f554658b4fd7a8eed4b472e7e
7
+ data.tar.gz: 7df1fcc88c839e2dd93477c1f2808ead89943e5824e7b96a31da4acbf602dfb8db7f4631cff7729babb49521c8c93effd624dfadf2c44c13bb899f1522486935
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.267.0 (2024-09-26)
5
+ ------------------
6
+
7
+ * Feature - Adding `TagPropagation` attribute to Sagemaker API
8
+
4
9
  1.266.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.266.0
1
+ 1.267.0
@@ -2589,6 +2589,10 @@ module Aws::SageMaker
2589
2589
  # is provided. If setting up the domain for use with RStudio, this value
2590
2590
  # must be set to `Service`.
2591
2591
  #
2592
+ # @option params [String] :tag_propagation
2593
+ # Indicates whether custom tag propagation is supported for the domain.
2594
+ # Defaults to `DISABLED`.
2595
+ #
2592
2596
  # @option params [Types::DefaultSpaceSettings] :default_space_settings
2593
2597
  # The default settings used to create a space.
2594
2598
  #
@@ -2833,6 +2837,7 @@ module Aws::SageMaker
2833
2837
  # home_efs_file_system_kms_key_id: "KmsKeyId",
2834
2838
  # kms_key_id: "KmsKeyId",
2835
2839
  # app_security_group_management: "Service", # accepts Service, Customer
2840
+ # tag_propagation: "ENABLED", # accepts ENABLED, DISABLED
2836
2841
  # default_space_settings: {
2837
2842
  # execution_role: "RoleArn",
2838
2843
  # security_groups: ["SecurityGroupId"],
@@ -12618,6 +12623,7 @@ module Aws::SageMaker
12618
12623
  # * {Types::DescribeDomainResponse#vpc_id #vpc_id} => String
12619
12624
  # * {Types::DescribeDomainResponse#kms_key_id #kms_key_id} => String
12620
12625
  # * {Types::DescribeDomainResponse#app_security_group_management #app_security_group_management} => String
12626
+ # * {Types::DescribeDomainResponse#tag_propagation #tag_propagation} => String
12621
12627
  # * {Types::DescribeDomainResponse#default_space_settings #default_space_settings} => Types::DefaultSpaceSettings
12622
12628
  #
12623
12629
  # @example Request syntax with placeholder values
@@ -12777,6 +12783,7 @@ module Aws::SageMaker
12777
12783
  # resp.vpc_id #=> String
12778
12784
  # resp.kms_key_id #=> String
12779
12785
  # resp.app_security_group_management #=> String, one of "Service", "Customer"
12786
+ # resp.tag_propagation #=> String, one of "ENABLED", "DISABLED"
12780
12787
  # resp.default_space_settings.execution_role #=> String
12781
12788
  # resp.default_space_settings.security_groups #=> Array
12782
12789
  # resp.default_space_settings.security_groups[0] #=> String
@@ -25088,6 +25095,10 @@ module Aws::SageMaker
25088
25095
  # `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
25089
25096
  # is provided as part of the same request.
25090
25097
  #
25098
+ # @option params [String] :tag_propagation
25099
+ # Indicates whether custom tag propagation is supported for the domain.
25100
+ # Defaults to `DISABLED`.
25101
+ #
25091
25102
  # @return [Types::UpdateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
25092
25103
  #
25093
25104
  # * {Types::UpdateDomainResponse#domain_arn #domain_arn} => String
@@ -25406,6 +25417,7 @@ module Aws::SageMaker
25406
25417
  # },
25407
25418
  # subnet_ids: ["SubnetId"],
25408
25419
  # app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
25420
+ # tag_propagation: "ENABLED", # accepts ENABLED, DISABLED
25409
25421
  # })
25410
25422
  #
25411
25423
  # @example Response structure
@@ -27837,7 +27849,7 @@ module Aws::SageMaker
27837
27849
  tracer: tracer
27838
27850
  )
27839
27851
  context[:gem_name] = 'aws-sdk-sagemaker'
27840
- context[:gem_version] = '1.266.0'
27852
+ context[:gem_version] = '1.267.0'
27841
27853
  Seahorse::Client::Request.new(handlers, context)
27842
27854
  end
27843
27855
 
@@ -2106,6 +2106,7 @@ module Aws::SageMaker
2106
2106
  TagKey = Shapes::StringShape.new(name: 'TagKey')
2107
2107
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
2108
2108
  TagList = Shapes::ListShape.new(name: 'TagList')
2109
+ TagPropagation = Shapes::StringShape.new(name: 'TagPropagation')
2109
2110
  TagValue = Shapes::StringShape.new(name: 'TagValue')
2110
2111
  TargetAttributeName = Shapes::StringShape.new(name: 'TargetAttributeName')
2111
2112
  TargetDevice = Shapes::StringShape.new(name: 'TargetDevice')
@@ -3345,6 +3346,7 @@ module Aws::SageMaker
3345
3346
  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."}))
3346
3347
  CreateDomainRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
3347
3348
  CreateDomainRequest.add_member(:app_security_group_management, Shapes::ShapeRef.new(shape: AppSecurityGroupManagement, location_name: "AppSecurityGroupManagement"))
3349
+ CreateDomainRequest.add_member(:tag_propagation, Shapes::ShapeRef.new(shape: TagPropagation, location_name: "TagPropagation"))
3348
3350
  CreateDomainRequest.add_member(:default_space_settings, Shapes::ShapeRef.new(shape: DefaultSpaceSettings, location_name: "DefaultSpaceSettings"))
3349
3351
  CreateDomainRequest.struct_class = Types::CreateDomainRequest
3350
3352
 
@@ -4614,6 +4616,7 @@ module Aws::SageMaker
4614
4616
  DescribeDomainResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
4615
4617
  DescribeDomainResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
4616
4618
  DescribeDomainResponse.add_member(:app_security_group_management, Shapes::ShapeRef.new(shape: AppSecurityGroupManagement, location_name: "AppSecurityGroupManagement"))
4619
+ DescribeDomainResponse.add_member(:tag_propagation, Shapes::ShapeRef.new(shape: TagPropagation, location_name: "TagPropagation"))
4617
4620
  DescribeDomainResponse.add_member(:default_space_settings, Shapes::ShapeRef.new(shape: DefaultSpaceSettings, location_name: "DefaultSpaceSettings"))
4618
4621
  DescribeDomainResponse.struct_class = Types::DescribeDomainResponse
4619
4622
 
@@ -10051,6 +10054,7 @@ module Aws::SageMaker
10051
10054
  UpdateDomainRequest.add_member(:default_space_settings, Shapes::ShapeRef.new(shape: DefaultSpaceSettings, location_name: "DefaultSpaceSettings"))
10052
10055
  UpdateDomainRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: Subnets, location_name: "SubnetIds"))
10053
10056
  UpdateDomainRequest.add_member(:app_network_access_type, Shapes::ShapeRef.new(shape: AppNetworkAccessType, location_name: "AppNetworkAccessType"))
10057
+ UpdateDomainRequest.add_member(:tag_propagation, Shapes::ShapeRef.new(shape: TagPropagation, location_name: "TagPropagation"))
10054
10058
  UpdateDomainRequest.struct_class = Types::UpdateDomainRequest
10055
10059
 
10056
10060
  UpdateDomainResponse.add_member(:domain_arn, Shapes::ShapeRef.new(shape: DomainArn, location_name: "DomainArn"))
@@ -6217,6 +6217,11 @@ module Aws::SageMaker
6217
6217
  # value must be set to `Service`.
6218
6218
  # @return [String]
6219
6219
  #
6220
+ # @!attribute [rw] tag_propagation
6221
+ # Indicates whether custom tag propagation is supported for the
6222
+ # domain. Defaults to `DISABLED`.
6223
+ # @return [String]
6224
+ #
6220
6225
  # @!attribute [rw] default_space_settings
6221
6226
  # The default settings used to create a space.
6222
6227
  # @return [Types::DefaultSpaceSettings]
@@ -6235,6 +6240,7 @@ module Aws::SageMaker
6235
6240
  :home_efs_file_system_kms_key_id,
6236
6241
  :kms_key_id,
6237
6242
  :app_security_group_management,
6243
+ :tag_propagation,
6238
6244
  :default_space_settings)
6239
6245
  SENSITIVE = []
6240
6246
  include Aws::Structure
@@ -13494,6 +13500,11 @@ module Aws::SageMaker
13494
13500
  # is provided.
13495
13501
  # @return [String]
13496
13502
  #
13503
+ # @!attribute [rw] tag_propagation
13504
+ # Indicates whether custom tag propagation is supported for the
13505
+ # domain.
13506
+ # @return [String]
13507
+ #
13497
13508
  # @!attribute [rw] default_space_settings
13498
13509
  # The default settings used to create a space.
13499
13510
  # @return [Types::DefaultSpaceSettings]
@@ -13522,6 +13533,7 @@ module Aws::SageMaker
13522
13533
  :vpc_id,
13523
13534
  :kms_key_id,
13524
13535
  :app_security_group_management,
13536
+ :tag_propagation,
13525
13537
  :default_space_settings)
13526
13538
  SENSITIVE = []
13527
13539
  include Aws::Structure
@@ -45318,6 +45330,11 @@ module Aws::SageMaker
45318
45330
  # is provided as part of the same request.
45319
45331
  # @return [String]
45320
45332
  #
45333
+ # @!attribute [rw] tag_propagation
45334
+ # Indicates whether custom tag propagation is supported for the
45335
+ # domain. Defaults to `DISABLED`.
45336
+ # @return [String]
45337
+ #
45321
45338
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
45322
45339
  #
45323
45340
  class UpdateDomainRequest < Struct.new(
@@ -45327,7 +45344,8 @@ module Aws::SageMaker
45327
45344
  :app_security_group_management,
45328
45345
  :default_space_settings,
45329
45346
  :subnet_ids,
45330
- :app_network_access_type)
45347
+ :app_network_access_type,
45348
+ :tag_propagation)
45331
45349
  SENSITIVE = []
45332
45350
  include Aws::Structure
45333
45351
  end
@@ -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.266.0'
58
+ GEM_VERSION = '1.267.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1190,6 +1190,7 @@ module Aws
1190
1190
  ?home_efs_file_system_kms_key_id: ::String,
1191
1191
  ?kms_key_id: ::String,
1192
1192
  ?app_security_group_management: ("Service" | "Customer"),
1193
+ ?tag_propagation: ("ENABLED" | "DISABLED"),
1193
1194
  ?default_space_settings: {
1194
1195
  execution_role: ::String?,
1195
1196
  security_groups: Array[::String]?,
@@ -5082,6 +5083,7 @@ module Aws
5082
5083
  def vpc_id: () -> ::String
5083
5084
  def kms_key_id: () -> ::String
5084
5085
  def app_security_group_management: () -> ("Service" | "Customer")
5086
+ def tag_propagation: () -> ("ENABLED" | "DISABLED")
5085
5087
  def default_space_settings: () -> Types::DefaultSpaceSettings
5086
5088
  end
5087
5089
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_domain-instance_method
@@ -8495,7 +8497,8 @@ module Aws
8495
8497
  ]?
8496
8498
  },
8497
8499
  ?subnet_ids: Array[::String],
8498
- ?app_network_access_type: ("PublicInternetOnly" | "VpcOnly")
8500
+ ?app_network_access_type: ("PublicInternetOnly" | "VpcOnly"),
8501
+ ?tag_propagation: ("ENABLED" | "DISABLED")
8499
8502
  ) -> _UpdateDomainResponseSuccess
8500
8503
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
8501
8504
 
data/sig/types.rbs CHANGED
@@ -1155,6 +1155,7 @@ module Aws::SageMaker
1155
1155
  attr_accessor home_efs_file_system_kms_key_id: ::String
1156
1156
  attr_accessor kms_key_id: ::String
1157
1157
  attr_accessor app_security_group_management: ("Service" | "Customer")
1158
+ attr_accessor tag_propagation: ("ENABLED" | "DISABLED")
1158
1159
  attr_accessor default_space_settings: Types::DefaultSpaceSettings
1159
1160
  SENSITIVE: []
1160
1161
  end
@@ -2834,6 +2835,7 @@ module Aws::SageMaker
2834
2835
  attr_accessor vpc_id: ::String
2835
2836
  attr_accessor kms_key_id: ::String
2836
2837
  attr_accessor app_security_group_management: ("Service" | "Customer")
2838
+ attr_accessor tag_propagation: ("ENABLED" | "DISABLED")
2837
2839
  attr_accessor default_space_settings: Types::DefaultSpaceSettings
2838
2840
  SENSITIVE: []
2839
2841
  end
@@ -9428,6 +9430,7 @@ module Aws::SageMaker
9428
9430
  attr_accessor default_space_settings: Types::DefaultSpaceSettings
9429
9431
  attr_accessor subnet_ids: ::Array[::String]
9430
9432
  attr_accessor app_network_access_type: ("PublicInternetOnly" | "VpcOnly")
9433
+ attr_accessor tag_propagation: ("ENABLED" | "DISABLED")
9431
9434
  SENSITIVE: []
9432
9435
  end
9433
9436
 
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.266.0
4
+ version: 1.267.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: 2024-09-24 00:00:00.000000000 Z
11
+ date: 2024-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core