aws-sdk-sagemaker 1.256.0 → 1.258.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: e7c513c5ec62b6be1600325edc43c719e82113a74aa7821056a4959ec94b9428
4
- data.tar.gz: 908362dc45eaf534e33b55070ef08d118d7fe9d14e1704656e9fa7afb50ffd75
3
+ metadata.gz: '0897052321395c306e6ea84d9182507f6037a723266d90eaae69298d5a5ac98c'
4
+ data.tar.gz: e419ec9e69d714714489c0f597ef4e96b21aabd5d096fd5737cbd8d1809f2996
5
5
  SHA512:
6
- metadata.gz: 114668ef484da86036f5dfe8766d6973a6edf2fcb2e5d9af1f2d582b9c154905604f4e5f96c3c8f4b50c51b8f93272e797f18857f7040e085f4a0e9b14028f9e
7
- data.tar.gz: 6f45e0e93b305f1f8148e30a180a5d779a66794357d8535768cd0f017978f7d86f95091acd1e09c62ea97ec93997bc5619e920d5278f14395ecc7a707c3c9fbb
6
+ metadata.gz: aafd71a1cd926c750238c88650ffb2b5ea96954969e899c74f4faee040cf389926795e5831a6c2df5bd7b8fdd4cbfcc31fa06c91d3e5742d06f44eb55169ee59
7
+ data.tar.gz: 0f29369d2de0d897fef2d8217004955e2f830927fbe578e25a96a27ead495490bdb41d4f3b0b485e61f3360eb1e250a8e1cc9b8c6809acf0f15d9e152839c3bf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.258.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker now supports automatic mounting of a user's home folder in the Amazon Elastic File System (EFS) associated with the SageMaker Studio domain to their Studio Spaces to enable users to share data between their own private spaces.
8
+
9
+ 1.257.0 (2024-08-16)
10
+ ------------------
11
+
12
+ * Feature - Introduce Endpoint and EndpointConfig Arns in sagemaker:ListPipelineExecutionSteps API response
13
+
4
14
  1.256.0 (2024-08-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.256.0
1
+ 1.258.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::SageMaker
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
90
  add_plugin(Aws::SageMaker::Plugins::Endpoints)
@@ -337,6 +339,16 @@ module Aws::SageMaker
337
339
  # ** Please note ** When response stubbing is enabled, no HTTP
338
340
  # requests are made, and retries are disabled.
339
341
  #
342
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
343
+ # Allows you to provide a telemetry provider, which is used to
344
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
345
+ # will not record or emit any telemetry data. The SDK supports the
346
+ # following telemetry providers:
347
+ #
348
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
349
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
350
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
351
+ #
340
352
  # @option options [Aws::TokenProvider] :token_provider
341
353
  # A Bearer Token Provider. This can be an instance of any one of the
342
354
  # following classes:
@@ -2729,6 +2741,7 @@ module Aws::SageMaker
2729
2741
  # hidden_ml_tools: ["DataWrangler"], # accepts DataWrangler, FeatureStore, EmrClusters, AutoMl, Experiments, Training, ModelEvaluation, Pipelines, Models, JumpStart, InferenceRecommender, Endpoints, Projects, InferenceOptimization
2730
2742
  # hidden_app_types: ["JupyterServer"], # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
2731
2743
  # },
2744
+ # auto_mount_home_efs: "Enabled", # accepts Enabled, Disabled, DefaultAsDomain
2732
2745
  # },
2733
2746
  # domain_settings: {
2734
2747
  # security_group_ids: ["SecurityGroupId"],
@@ -8904,7 +8917,8 @@ module Aws::SageMaker
8904
8917
  # `SplitType` to `Line`.
8905
8918
  #
8906
8919
  # @option params [Hash<String,String>] :environment
8907
- # The environment variables to set in the Docker container. We support
8920
+ # The environment variables to set in the Docker container. Don't
8921
+ # include any sensitive data in your environment variables. We support
8908
8922
  # up to 16 key and values entries in the map.
8909
8923
  #
8910
8924
  # @option params [required, Types::TransformInput] :transform_input
@@ -9472,6 +9486,7 @@ module Aws::SageMaker
9472
9486
  # hidden_ml_tools: ["DataWrangler"], # accepts DataWrangler, FeatureStore, EmrClusters, AutoMl, Experiments, Training, ModelEvaluation, Pipelines, Models, JumpStart, InferenceRecommender, Endpoints, Projects, InferenceOptimization
9473
9487
  # hidden_app_types: ["JupyterServer"], # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
9474
9488
  # },
9489
+ # auto_mount_home_efs: "Enabled", # accepts Enabled, Disabled, DefaultAsDomain
9475
9490
  # },
9476
9491
  # })
9477
9492
  #
@@ -12614,6 +12629,7 @@ module Aws::SageMaker
12614
12629
  # resp.default_user_settings.studio_web_portal_settings.hidden_ml_tools[0] #=> String, one of "DataWrangler", "FeatureStore", "EmrClusters", "AutoMl", "Experiments", "Training", "ModelEvaluation", "Pipelines", "Models", "JumpStart", "InferenceRecommender", "Endpoints", "Projects", "InferenceOptimization"
12615
12630
  # resp.default_user_settings.studio_web_portal_settings.hidden_app_types #=> Array
12616
12631
  # resp.default_user_settings.studio_web_portal_settings.hidden_app_types[0] #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
12632
+ # resp.default_user_settings.auto_mount_home_efs #=> String, one of "Enabled", "Disabled", "DefaultAsDomain"
12617
12633
  # resp.domain_settings.security_group_ids #=> Array
12618
12634
  # resp.domain_settings.security_group_ids[0] #=> String
12619
12635
  # resp.domain_settings.r_studio_server_pro_domain_settings.domain_execution_role_arn #=> String
@@ -16701,6 +16717,7 @@ module Aws::SageMaker
16701
16717
  # resp.user_settings.studio_web_portal_settings.hidden_ml_tools[0] #=> String, one of "DataWrangler", "FeatureStore", "EmrClusters", "AutoMl", "Experiments", "Training", "ModelEvaluation", "Pipelines", "Models", "JumpStart", "InferenceRecommender", "Endpoints", "Projects", "InferenceOptimization"
16702
16718
  # resp.user_settings.studio_web_portal_settings.hidden_app_types #=> Array
16703
16719
  # resp.user_settings.studio_web_portal_settings.hidden_app_types[0] #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
16720
+ # resp.user_settings.auto_mount_home_efs #=> String, one of "Enabled", "Disabled", "DefaultAsDomain"
16704
16721
  #
16705
16722
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeUserProfile AWS API Documentation
16706
16723
  #
@@ -21854,6 +21871,8 @@ module Aws::SageMaker
21854
21871
  # resp.pipeline_execution_steps[0].metadata.clarify_check.register_new_baseline #=> Boolean
21855
21872
  # resp.pipeline_execution_steps[0].metadata.fail.error_message #=> String
21856
21873
  # resp.pipeline_execution_steps[0].metadata.auto_ml_job.arn #=> String
21874
+ # resp.pipeline_execution_steps[0].metadata.endpoint.arn #=> String
21875
+ # resp.pipeline_execution_steps[0].metadata.endpoint_config.arn #=> String
21857
21876
  # resp.pipeline_execution_steps[0].attempt_count #=> Integer
21858
21877
  # resp.pipeline_execution_steps[0].selective_execution_result.source_pipeline_execution_arn #=> String
21859
21878
  # resp.next_token #=> String
@@ -25091,6 +25110,7 @@ module Aws::SageMaker
25091
25110
  # hidden_ml_tools: ["DataWrangler"], # accepts DataWrangler, FeatureStore, EmrClusters, AutoMl, Experiments, Training, ModelEvaluation, Pipelines, Models, JumpStart, InferenceRecommender, Endpoints, Projects, InferenceOptimization
25092
25111
  # hidden_app_types: ["JupyterServer"], # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
25093
25112
  # },
25113
+ # auto_mount_home_efs: "Enabled", # accepts Enabled, Disabled, DefaultAsDomain
25094
25114
  # },
25095
25115
  # domain_settings_for_update: {
25096
25116
  # r_studio_server_pro_domain_settings_for_update: {
@@ -27310,6 +27330,7 @@ module Aws::SageMaker
27310
27330
  # hidden_ml_tools: ["DataWrangler"], # accepts DataWrangler, FeatureStore, EmrClusters, AutoMl, Experiments, Training, ModelEvaluation, Pipelines, Models, JumpStart, InferenceRecommender, Endpoints, Projects, InferenceOptimization
27311
27331
  # hidden_app_types: ["JupyterServer"], # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
27312
27332
  # },
27333
+ # auto_mount_home_efs: "Enabled", # accepts Enabled, Disabled, DefaultAsDomain
27313
27334
  # },
27314
27335
  # })
27315
27336
  #
@@ -27582,14 +27603,19 @@ module Aws::SageMaker
27582
27603
  # @api private
27583
27604
  def build_request(operation_name, params = {})
27584
27605
  handlers = @handlers.for(operation_name)
27606
+ tracer = config.telemetry_provider.tracer_provider.tracer(
27607
+ Aws::Telemetry.module_to_tracer_name('Aws::SageMaker')
27608
+ )
27585
27609
  context = Seahorse::Client::RequestContext.new(
27586
27610
  operation_name: operation_name,
27587
27611
  operation: config.api.operation(operation_name),
27588
27612
  client: self,
27589
27613
  params: params,
27590
- config: config)
27614
+ config: config,
27615
+ tracer: tracer
27616
+ )
27591
27617
  context[:gem_name] = 'aws-sdk-sagemaker'
27592
- context[:gem_version] = '1.256.0'
27618
+ context[:gem_version] = '1.258.0'
27593
27619
  Seahorse::Client::Request.new(handlers, context)
27594
27620
  end
27595
27621
 
@@ -163,6 +163,7 @@ module Aws::SageMaker
163
163
  AutoMLSecurityConfig = Shapes::StructureShape.new(name: 'AutoMLSecurityConfig')
164
164
  AutoMLSortBy = Shapes::StringShape.new(name: 'AutoMLSortBy')
165
165
  AutoMLSortOrder = Shapes::StringShape.new(name: 'AutoMLSortOrder')
166
+ AutoMountHomeEFS = Shapes::StringShape.new(name: 'AutoMountHomeEFS')
166
167
  AutoParameter = Shapes::StructureShape.new(name: 'AutoParameter')
167
168
  AutoParameters = Shapes::ListShape.new(name: 'AutoParameters')
168
169
  AutoRollbackConfig = Shapes::StructureShape.new(name: 'AutoRollbackConfig')
@@ -827,6 +828,7 @@ module Aws::SageMaker
827
828
  EndpointConfigName = Shapes::StringShape.new(name: 'EndpointConfigName')
828
829
  EndpointConfigNameContains = Shapes::StringShape.new(name: 'EndpointConfigNameContains')
829
830
  EndpointConfigSortKey = Shapes::StringShape.new(name: 'EndpointConfigSortKey')
831
+ EndpointConfigStepMetadata = Shapes::StructureShape.new(name: 'EndpointConfigStepMetadata')
830
832
  EndpointConfigSummary = Shapes::StructureShape.new(name: 'EndpointConfigSummary')
831
833
  EndpointConfigSummaryList = Shapes::ListShape.new(name: 'EndpointConfigSummaryList')
832
834
  EndpointInfo = Shapes::StructureShape.new(name: 'EndpointInfo')
@@ -841,6 +843,7 @@ module Aws::SageMaker
841
843
  EndpointPerformances = Shapes::ListShape.new(name: 'EndpointPerformances')
842
844
  EndpointSortKey = Shapes::StringShape.new(name: 'EndpointSortKey')
843
845
  EndpointStatus = Shapes::StringShape.new(name: 'EndpointStatus')
846
+ EndpointStepMetadata = Shapes::StructureShape.new(name: 'EndpointStepMetadata')
844
847
  EndpointSummary = Shapes::StructureShape.new(name: 'EndpointSummary')
845
848
  EndpointSummaryList = Shapes::ListShape.new(name: 'EndpointSummaryList')
846
849
  Endpoints = Shapes::ListShape.new(name: 'Endpoints')
@@ -5689,6 +5692,9 @@ module Aws::SageMaker
5689
5692
  Endpoint.add_member(:shadow_production_variants, Shapes::ShapeRef.new(shape: ProductionVariantSummaryList, location_name: "ShadowProductionVariants"))
5690
5693
  Endpoint.struct_class = Types::Endpoint
5691
5694
 
5695
+ EndpointConfigStepMetadata.add_member(:arn, Shapes::ShapeRef.new(shape: EndpointConfigArn, location_name: "Arn"))
5696
+ EndpointConfigStepMetadata.struct_class = Types::EndpointConfigStepMetadata
5697
+
5692
5698
  EndpointConfigSummary.add_member(:endpoint_config_name, Shapes::ShapeRef.new(shape: EndpointConfigName, required: true, location_name: "EndpointConfigName"))
5693
5699
  EndpointConfigSummary.add_member(:endpoint_config_arn, Shapes::ShapeRef.new(shape: EndpointConfigArn, required: true, location_name: "EndpointConfigArn"))
5694
5700
  EndpointConfigSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
@@ -5739,6 +5745,9 @@ module Aws::SageMaker
5739
5745
 
5740
5746
  EndpointPerformances.member = Shapes::ShapeRef.new(shape: EndpointPerformance)
5741
5747
 
5748
+ EndpointStepMetadata.add_member(:arn, Shapes::ShapeRef.new(shape: EndpointArn, location_name: "Arn"))
5749
+ EndpointStepMetadata.struct_class = Types::EndpointStepMetadata
5750
+
5742
5751
  EndpointSummary.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location_name: "EndpointName"))
5743
5752
  EndpointSummary.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: EndpointArn, required: true, location_name: "EndpointArn"))
5744
5753
  EndpointSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
@@ -8579,6 +8588,8 @@ module Aws::SageMaker
8579
8588
  PipelineExecutionStepMetadata.add_member(:clarify_check, Shapes::ShapeRef.new(shape: ClarifyCheckStepMetadata, location_name: "ClarifyCheck"))
8580
8589
  PipelineExecutionStepMetadata.add_member(:fail, Shapes::ShapeRef.new(shape: FailStepMetadata, location_name: "Fail"))
8581
8590
  PipelineExecutionStepMetadata.add_member(:auto_ml_job, Shapes::ShapeRef.new(shape: AutoMLJobStepMetadata, location_name: "AutoMLJob"))
8591
+ PipelineExecutionStepMetadata.add_member(:endpoint, Shapes::ShapeRef.new(shape: EndpointStepMetadata, location_name: "Endpoint"))
8592
+ PipelineExecutionStepMetadata.add_member(:endpoint_config, Shapes::ShapeRef.new(shape: EndpointConfigStepMetadata, location_name: "EndpointConfig"))
8582
8593
  PipelineExecutionStepMetadata.struct_class = Types::PipelineExecutionStepMetadata
8583
8594
 
8584
8595
  PipelineExecutionSummary.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
@@ -10290,6 +10301,7 @@ module Aws::SageMaker
10290
10301
  UserSettings.add_member(:custom_posix_user_config, Shapes::ShapeRef.new(shape: CustomPosixUserConfig, location_name: "CustomPosixUserConfig"))
10291
10302
  UserSettings.add_member(:custom_file_system_configs, Shapes::ShapeRef.new(shape: CustomFileSystemConfigs, location_name: "CustomFileSystemConfigs"))
10292
10303
  UserSettings.add_member(:studio_web_portal_settings, Shapes::ShapeRef.new(shape: StudioWebPortalSettings, location_name: "StudioWebPortalSettings"))
10304
+ UserSettings.add_member(:auto_mount_home_efs, Shapes::ShapeRef.new(shape: AutoMountHomeEFS, location_name: "AutoMountHomeEFS"))
10293
10305
  UserSettings.struct_class = Types::UserSettings
10294
10306
 
10295
10307
  VariantProperty.add_member(:variant_property_type, Shapes::ShapeRef.new(shape: VariantPropertyType, required: true, location_name: "VariantPropertyType"))
@@ -4906,7 +4906,8 @@ module Aws::SageMaker
4906
4906
  # @return [Array<Types::AdditionalModelDataSource>]
4907
4907
  #
4908
4908
  # @!attribute [rw] environment
4909
- # The environment variables to set in the Docker container.
4909
+ # The environment variables to set in the Docker container. Don't
4910
+ # include any sensitive data in your environment variables.
4910
4911
  #
4911
4912
  # The maximum length of each key and value in the `Environment` map is
4912
4913
  # 1024 bytes. The maximum length of all keys and values in the map,
@@ -9742,7 +9743,8 @@ module Aws::SageMaker
9742
9743
  # @return [String]
9743
9744
  #
9744
9745
  # @!attribute [rw] environment
9745
- # The environment variables to set in the Docker container. We support
9746
+ # The environment variables to set in the Docker container. Don't
9747
+ # include any sensitive data in your environment variables. We support
9746
9748
  # up to 16 key and values entries in the map.
9747
9749
  # @return [Hash<String,String>]
9748
9750
  #
@@ -19545,6 +19547,21 @@ module Aws::SageMaker
19545
19547
  include Aws::Structure
19546
19548
  end
19547
19549
 
19550
+ # Metadata for an endpoint configuration step.
19551
+ #
19552
+ # @!attribute [rw] arn
19553
+ # The Amazon Resource Name (ARN) of the endpoint configuration used in
19554
+ # the step.
19555
+ # @return [String]
19556
+ #
19557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointConfigStepMetadata AWS API Documentation
19558
+ #
19559
+ class EndpointConfigStepMetadata < Struct.new(
19560
+ :arn)
19561
+ SENSITIVE = []
19562
+ include Aws::Structure
19563
+ end
19564
+
19548
19565
  # Provides summary information for an endpoint configuration.
19549
19566
  #
19550
19567
  # @!attribute [rw] endpoint_config_name
@@ -19792,6 +19809,20 @@ module Aws::SageMaker
19792
19809
  include Aws::Structure
19793
19810
  end
19794
19811
 
19812
+ # Metadata for an endpoint step.
19813
+ #
19814
+ # @!attribute [rw] arn
19815
+ # The Amazon Resource Name (ARN) of the endpoint in the step.
19816
+ # @return [String]
19817
+ #
19818
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointStepMetadata AWS API Documentation
19819
+ #
19820
+ class EndpointStepMetadata < Struct.new(
19821
+ :arn)
19822
+ SENSITIVE = []
19823
+ include Aws::Structure
19824
+ end
19825
+
19795
19826
  # Provides summary information for an endpoint.
19796
19827
  #
19797
19828
  # @!attribute [rw] endpoint_name
@@ -36343,6 +36374,15 @@ module Aws::SageMaker
36343
36374
  # this step.
36344
36375
  # @return [Types::AutoMLJobStepMetadata]
36345
36376
  #
36377
+ # @!attribute [rw] endpoint
36378
+ # The endpoint that was invoked during this step execution.
36379
+ # @return [Types::EndpointStepMetadata]
36380
+ #
36381
+ # @!attribute [rw] endpoint_config
36382
+ # The endpoint configuration used to create an endpoint during this
36383
+ # step execution.
36384
+ # @return [Types::EndpointConfigStepMetadata]
36385
+ #
36346
36386
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
36347
36387
  #
36348
36388
  class PipelineExecutionStepMetadata < Struct.new(
@@ -36359,7 +36399,9 @@ module Aws::SageMaker
36359
36399
  :quality_check,
36360
36400
  :clarify_check,
36361
36401
  :fail,
36362
- :auto_ml_job)
36402
+ :auto_ml_job,
36403
+ :endpoint,
36404
+ :endpoint_config)
36363
36405
  SENSITIVE = []
36364
36406
  include Aws::Structure
36365
36407
  end
@@ -46785,6 +46827,13 @@ module Aws::SageMaker
46785
46827
  # take priority over the settings applied on a domain level.
46786
46828
  # @return [Types::StudioWebPortalSettings]
46787
46829
  #
46830
+ # @!attribute [rw] auto_mount_home_efs
46831
+ # Indicates whether auto-mounting of an EFS volume is supported for
46832
+ # the user profile. The `DefaultAsDomain` value is only supported for
46833
+ # user profiles. Do not use the `DefaultAsDomain` value when setting
46834
+ # this parameter for a domain.
46835
+ # @return [String]
46836
+ #
46788
46837
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
46789
46838
  #
46790
46839
  class UserSettings < Struct.new(
@@ -46804,7 +46853,8 @@ module Aws::SageMaker
46804
46853
  :studio_web_portal,
46805
46854
  :custom_posix_user_config,
46806
46855
  :custom_file_system_configs,
46807
- :studio_web_portal_settings)
46856
+ :studio_web_portal_settings,
46857
+ :auto_mount_home_efs)
46808
46858
  SENSITIVE = []
46809
46859
  include Aws::Structure
46810
46860
  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.256.0'
56
+ GEM_VERSION = '1.258.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
@@ -1118,7 +1119,8 @@ module Aws
1118
1119
  studio_web_portal_settings: {
1119
1120
  hidden_ml_tools: Array[("DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization")]?,
1120
1121
  hidden_app_types: Array[("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")]?
1121
- }?
1122
+ }?,
1123
+ auto_mount_home_efs: ("Enabled" | "Disabled" | "DefaultAsDomain")?
1122
1124
  },
1123
1125
  ?domain_settings: {
1124
1126
  security_group_ids: Array[::String]?,
@@ -4161,7 +4163,8 @@ module Aws
4161
4163
  studio_web_portal_settings: {
4162
4164
  hidden_ml_tools: Array[("DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization")]?,
4163
4165
  hidden_app_types: Array[("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")]?
4164
- }?
4166
+ }?,
4167
+ auto_mount_home_efs: ("Enabled" | "Disabled" | "DefaultAsDomain")?
4165
4168
  }
4166
4169
  ) -> _CreateUserProfileResponseSuccess
4167
4170
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserProfileResponseSuccess
@@ -8268,7 +8271,8 @@ module Aws
8268
8271
  studio_web_portal_settings: {
8269
8272
  hidden_ml_tools: Array[("DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization")]?,
8270
8273
  hidden_app_types: Array[("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")]?
8271
- }?
8274
+ }?,
8275
+ auto_mount_home_efs: ("Enabled" | "Disabled" | "DefaultAsDomain")?
8272
8276
  },
8273
8277
  ?domain_settings_for_update: {
8274
8278
  r_studio_server_pro_domain_settings_for_update: {
@@ -9347,7 +9351,8 @@ module Aws
9347
9351
  studio_web_portal_settings: {
9348
9352
  hidden_ml_tools: Array[("DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization")]?,
9349
9353
  hidden_app_types: Array[("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")]?
9350
- }?
9354
+ }?,
9355
+ auto_mount_home_efs: ("Enabled" | "Disabled" | "DefaultAsDomain")?
9351
9356
  }
9352
9357
  ) -> _UpdateUserProfileResponseSuccess
9353
9358
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserProfileResponseSuccess
data/sig/resource.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -4166,6 +4166,11 @@ module Aws::SageMaker
4166
4166
  SENSITIVE: []
4167
4167
  end
4168
4168
 
4169
+ class EndpointConfigStepMetadata
4170
+ attr_accessor arn: ::String
4171
+ SENSITIVE: []
4172
+ end
4173
+
4169
4174
  class EndpointConfigSummary
4170
4175
  attr_accessor endpoint_config_name: ::String
4171
4176
  attr_accessor endpoint_config_arn: ::String
@@ -4224,6 +4229,11 @@ module Aws::SageMaker
4224
4229
  SENSITIVE: []
4225
4230
  end
4226
4231
 
4232
+ class EndpointStepMetadata
4233
+ attr_accessor arn: ::String
4234
+ SENSITIVE: []
4235
+ end
4236
+
4227
4237
  class EndpointSummary
4228
4238
  attr_accessor endpoint_name: ::String
4229
4239
  attr_accessor endpoint_arn: ::String
@@ -7648,6 +7658,8 @@ module Aws::SageMaker
7648
7658
  attr_accessor clarify_check: Types::ClarifyCheckStepMetadata
7649
7659
  attr_accessor fail: Types::FailStepMetadata
7650
7660
  attr_accessor auto_ml_job: Types::AutoMLJobStepMetadata
7661
+ attr_accessor endpoint: Types::EndpointStepMetadata
7662
+ attr_accessor endpoint_config: Types::EndpointConfigStepMetadata
7651
7663
  SENSITIVE: []
7652
7664
  end
7653
7665
 
@@ -9791,6 +9803,7 @@ module Aws::SageMaker
9791
9803
  attr_accessor custom_posix_user_config: Types::CustomPosixUserConfig
9792
9804
  attr_accessor custom_file_system_configs: ::Array[Types::CustomFileSystemConfig]
9793
9805
  attr_accessor studio_web_portal_settings: Types::StudioWebPortalSettings
9806
+ attr_accessor auto_mount_home_efs: ("Enabled" | "Disabled" | "DefaultAsDomain")
9794
9807
  SENSITIVE: []
9795
9808
  end
9796
9809
 
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.256.0
4
+ version: 1.258.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-08-12 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement