aws-sdk-sagemaker 1.226.0 → 1.227.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 935411c60796f0ac8b54410e4d58b170a7031bdce44386a1efe118c9deeaae0b
4
- data.tar.gz: a4e838e05a9e396d10e276fd53388ac73dcd89c8de70d1d4130e32def2150499
3
+ metadata.gz: 01be29da20f12e7af6256929297484ba8d19f3b18725f0e4c91561b3244c8658
4
+ data.tar.gz: 12369cf20a123fb0e17d2fe8cd42404b6b649b7b324816b7e0864a11fa2547dc
5
5
  SHA512:
6
- metadata.gz: 24e4ee829a076565797fce6e4d7ae77f74fdbb40fadf989d2adf4bb390dd8eec0bd923bef4ca5b7089aff1757e1b92a317843cf6c91c82a97d5f73f641505a8d
7
- data.tar.gz: 766234afeccec68d8edee8803ea2e18acf4ff15749f64b1e7a6c45505009c386a5eda14c1723efe7fca9e0d302b4e85d7cb0a8cb9b1706491777c70ed58a2643
6
+ metadata.gz: 4c4258aefc982c7f7a84fd2e78c3abb71d923e84082fe8bf745e053dc872a1df942015466720193637f5d3a86a1bcf53c6139dc50a080f05ec6cdfd352e1e176
7
+ data.tar.gz: c5ef97dd5088f7b824df05114c2bb159e550105cd7e93a8dcfd67266dac233c983c5144c5014739657bce6b5c366d10ff9a752683a85a8a299b83996cb7506bd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.227.0 (2023-12-28)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Studio now supports Docker access from within app container
8
+
4
9
  1.226.0 (2023-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.226.0
1
+ 1.227.0
@@ -2584,6 +2584,10 @@ module Aws::SageMaker
2584
2584
  # },
2585
2585
  # },
2586
2586
  # execution_role_identity_config: "USER_PROFILE_NAME", # accepts USER_PROFILE_NAME, DISABLED
2587
+ # docker_settings: {
2588
+ # enable_docker_access: "ENABLED", # accepts ENABLED, DISABLED
2589
+ # vpc_only_trusted_accounts: ["AccountId"],
2590
+ # },
2587
2591
  # },
2588
2592
  # subnet_ids: ["SubnetId"], # required
2589
2593
  # vpc_id: "VpcId", # required
@@ -11733,6 +11737,9 @@ module Aws::SageMaker
11733
11737
  # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.geospatial.interactive", "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge"
11734
11738
  # resp.domain_settings.r_studio_server_pro_domain_settings.default_resource_spec.lifecycle_config_arn #=> String
11735
11739
  # resp.domain_settings.execution_role_identity_config #=> String, one of "USER_PROFILE_NAME", "DISABLED"
11740
+ # resp.domain_settings.docker_settings.enable_docker_access #=> String, one of "ENABLED", "DISABLED"
11741
+ # resp.domain_settings.docker_settings.vpc_only_trusted_accounts #=> Array
11742
+ # resp.domain_settings.docker_settings.vpc_only_trusted_accounts[0] #=> String
11736
11743
  # resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
11737
11744
  # resp.home_efs_file_system_kms_key_id #=> String
11738
11745
  # resp.subnet_ids #=> Array
@@ -23616,6 +23623,10 @@ module Aws::SageMaker
23616
23623
  # },
23617
23624
  # execution_role_identity_config: "USER_PROFILE_NAME", # accepts USER_PROFILE_NAME, DISABLED
23618
23625
  # security_group_ids: ["SecurityGroupId"],
23626
+ # docker_settings: {
23627
+ # enable_docker_access: "ENABLED", # accepts ENABLED, DISABLED
23628
+ # vpc_only_trusted_accounts: ["AccountId"],
23629
+ # },
23619
23630
  # },
23620
23631
  # app_security_group_management: "Service", # accepts Service, Customer
23621
23632
  # default_space_settings: {
@@ -25844,7 +25855,7 @@ module Aws::SageMaker
25844
25855
  params: params,
25845
25856
  config: config)
25846
25857
  context[:gem_name] = 'aws-sdk-sagemaker'
25847
- context[:gem_version] = '1.226.0'
25858
+ context[:gem_version] = '1.227.0'
25848
25859
  Seahorse::Client::Request.new(handlers, context)
25849
25860
  end
25850
25861
 
@@ -723,6 +723,7 @@ module Aws::SageMaker
723
723
  DisassociateNotebookInstanceLifecycleConfig = Shapes::BooleanShape.new(name: 'DisassociateNotebookInstanceLifecycleConfig')
724
724
  DisassociateTrialComponentRequest = Shapes::StructureShape.new(name: 'DisassociateTrialComponentRequest')
725
725
  DisassociateTrialComponentResponse = Shapes::StructureShape.new(name: 'DisassociateTrialComponentResponse')
726
+ DockerSettings = Shapes::StructureShape.new(name: 'DockerSettings')
726
727
  DocumentSchemaVersion = Shapes::StringShape.new(name: 'DocumentSchemaVersion')
727
728
  Dollars = Shapes::IntegerShape.new(name: 'Dollars')
728
729
  DomainArn = Shapes::StringShape.new(name: 'DomainArn')
@@ -2218,6 +2219,7 @@ module Aws::SageMaker
2218
2219
  VolumeSizeInGB = Shapes::IntegerShape.new(name: 'VolumeSizeInGB')
2219
2220
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
2220
2221
  VpcId = Shapes::StringShape.new(name: 'VpcId')
2222
+ VpcOnlyTrustedAccounts = Shapes::ListShape.new(name: 'VpcOnlyTrustedAccounts')
2221
2223
  VpcSecurityGroupIds = Shapes::ListShape.new(name: 'VpcSecurityGroupIds')
2222
2224
  WaitIntervalInSeconds = Shapes::IntegerShape.new(name: 'WaitIntervalInSeconds')
2223
2225
  WarmPoolResourceStatus = Shapes::StringShape.new(name: 'WarmPoolResourceStatus')
@@ -5206,6 +5208,10 @@ module Aws::SageMaker
5206
5208
  DisassociateTrialComponentResponse.add_member(:trial_arn, Shapes::ShapeRef.new(shape: TrialArn, location_name: "TrialArn"))
5207
5209
  DisassociateTrialComponentResponse.struct_class = Types::DisassociateTrialComponentResponse
5208
5210
 
5211
+ DockerSettings.add_member(:enable_docker_access, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "EnableDockerAccess"))
5212
+ DockerSettings.add_member(:vpc_only_trusted_accounts, Shapes::ShapeRef.new(shape: VpcOnlyTrustedAccounts, location_name: "VpcOnlyTrustedAccounts"))
5213
+ DockerSettings.struct_class = Types::DockerSettings
5214
+
5209
5215
  DomainDetails.add_member(:domain_arn, Shapes::ShapeRef.new(shape: DomainArn, location_name: "DomainArn"))
5210
5216
  DomainDetails.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "DomainId"))
5211
5217
  DomainDetails.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
@@ -5222,11 +5228,13 @@ module Aws::SageMaker
5222
5228
  DomainSettings.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: DomainSecurityGroupIds, location_name: "SecurityGroupIds"))
5223
5229
  DomainSettings.add_member(:r_studio_server_pro_domain_settings, Shapes::ShapeRef.new(shape: RStudioServerProDomainSettings, location_name: "RStudioServerProDomainSettings"))
5224
5230
  DomainSettings.add_member(:execution_role_identity_config, Shapes::ShapeRef.new(shape: ExecutionRoleIdentityConfig, location_name: "ExecutionRoleIdentityConfig"))
5231
+ DomainSettings.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
5225
5232
  DomainSettings.struct_class = Types::DomainSettings
5226
5233
 
5227
5234
  DomainSettingsForUpdate.add_member(:r_studio_server_pro_domain_settings_for_update, Shapes::ShapeRef.new(shape: RStudioServerProDomainSettingsForUpdate, location_name: "RStudioServerProDomainSettingsForUpdate"))
5228
5235
  DomainSettingsForUpdate.add_member(:execution_role_identity_config, Shapes::ShapeRef.new(shape: ExecutionRoleIdentityConfig, location_name: "ExecutionRoleIdentityConfig"))
5229
5236
  DomainSettingsForUpdate.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: DomainSecurityGroupIds, location_name: "SecurityGroupIds"))
5237
+ DomainSettingsForUpdate.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
5230
5238
  DomainSettingsForUpdate.struct_class = Types::DomainSettingsForUpdate
5231
5239
 
5232
5240
  DriftCheckBaselines.add_member(:bias, Shapes::ShapeRef.new(shape: DriftCheckBias, location_name: "Bias"))
@@ -9799,6 +9807,8 @@ module Aws::SageMaker
9799
9807
  VpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: Subnets, required: true, location_name: "Subnets"))
9800
9808
  VpcConfig.struct_class = Types::VpcConfig
9801
9809
 
9810
+ VpcOnlyTrustedAccounts.member = Shapes::ShapeRef.new(shape: AccountId)
9811
+
9802
9812
  VpcSecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
9803
9813
 
9804
9814
  WarmPoolStatus.add_member(:status, Shapes::ShapeRef.new(shape: WarmPoolResourceStatus, required: true, location_name: "Status"))
@@ -17468,6 +17468,27 @@ module Aws::SageMaker
17468
17468
  include Aws::Structure
17469
17469
  end
17470
17470
 
17471
+ # A collection of settings that configure the domain's Docker
17472
+ # interaction.
17473
+ #
17474
+ # @!attribute [rw] enable_docker_access
17475
+ # Indicates whether the domain can access Docker.
17476
+ # @return [String]
17477
+ #
17478
+ # @!attribute [rw] vpc_only_trusted_accounts
17479
+ # The list of Amazon Web Services accounts that are trusted when the
17480
+ # domain is created in VPC-only mode.
17481
+ # @return [Array<String>]
17482
+ #
17483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DockerSettings AWS API Documentation
17484
+ #
17485
+ class DockerSettings < Struct.new(
17486
+ :enable_docker_access,
17487
+ :vpc_only_trusted_accounts)
17488
+ SENSITIVE = []
17489
+ include Aws::Structure
17490
+ end
17491
+
17471
17492
  # The domain's details.
17472
17493
  #
17473
17494
  # @!attribute [rw] domain_arn
@@ -17535,12 +17556,18 @@ module Aws::SageMaker
17535
17556
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html
17536
17557
  # @return [String]
17537
17558
  #
17559
+ # @!attribute [rw] docker_settings
17560
+ # A collection of settings that configure the domain's Docker
17561
+ # interaction.
17562
+ # @return [Types::DockerSettings]
17563
+ #
17538
17564
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
17539
17565
  #
17540
17566
  class DomainSettings < Struct.new(
17541
17567
  :security_group_ids,
17542
17568
  :r_studio_server_pro_domain_settings,
17543
- :execution_role_identity_config)
17569
+ :execution_role_identity_config,
17570
+ :docker_settings)
17544
17571
  SENSITIVE = []
17545
17572
  include Aws::Structure
17546
17573
  end
@@ -17570,12 +17597,18 @@ module Aws::SageMaker
17570
17597
  # apps.
17571
17598
  # @return [Array<String>]
17572
17599
  #
17600
+ # @!attribute [rw] docker_settings
17601
+ # A collection of settings that configure the domain's Docker
17602
+ # interaction.
17603
+ # @return [Types::DockerSettings]
17604
+ #
17573
17605
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
17574
17606
  #
17575
17607
  class DomainSettingsForUpdate < Struct.new(
17576
17608
  :r_studio_server_pro_domain_settings_for_update,
17577
17609
  :execution_role_identity_config,
17578
- :security_group_ids)
17610
+ :security_group_ids,
17611
+ :docker_settings)
17579
17612
  SENSITIVE = []
17580
17613
  include Aws::Structure
17581
17614
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.226.0'
56
+ GEM_VERSION = '1.227.0'
57
57
 
58
58
  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.226.0
4
+ version: 1.227.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: 2023-12-21 00:00:00.000000000 Z
11
+ date: 2023-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core