aws-sdk-sagemaker 1.360.0 → 1.362.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.
@@ -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.360.0'
58
+ GEM_VERSION = '1.362.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -213,6 +213,122 @@ module Aws
213
213
  ) -> _BatchReplaceClusterNodesResponseSuccess
214
214
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchReplaceClusterNodesResponseSuccess
215
215
 
216
+ interface _CreateAIBenchmarkJobResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAIBenchmarkJobResponse]
218
+ def ai_benchmark_job_arn: () -> ::String
219
+ end
220
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_ai_benchmark_job-instance_method
221
+ def create_ai_benchmark_job: (
222
+ ai_benchmark_job_name: ::String,
223
+ benchmark_target: {
224
+ endpoint: {
225
+ identifier: ::String,
226
+ target_container_hostname: ::String?,
227
+ inference_components: Array[
228
+ {
229
+ identifier: ::String
230
+ },
231
+ ]?
232
+ }?
233
+ },
234
+ output_config: {
235
+ s3_output_location: ::String
236
+ },
237
+ ai_workload_config_identifier: ::String,
238
+ role_arn: ::String,
239
+ ?network_config: {
240
+ vpc_config: {
241
+ security_group_ids: Array[::String],
242
+ subnets: Array[::String]
243
+ }?
244
+ },
245
+ ?tags: Array[
246
+ {
247
+ key: ::String,
248
+ value: ::String
249
+ },
250
+ ]
251
+ ) -> _CreateAIBenchmarkJobResponseSuccess
252
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAIBenchmarkJobResponseSuccess
253
+
254
+ interface _CreateAIRecommendationJobResponseSuccess
255
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAIRecommendationJobResponse]
256
+ def ai_recommendation_job_arn: () -> ::String
257
+ end
258
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_ai_recommendation_job-instance_method
259
+ def create_ai_recommendation_job: (
260
+ ai_recommendation_job_name: ::String,
261
+ model_source: {
262
+ s3: {
263
+ s3_uri: ::String?
264
+ }?
265
+ },
266
+ output_config: {
267
+ s3_output_location: ::String?,
268
+ model_package_group_identifier: ::String?
269
+ },
270
+ ai_workload_config_identifier: ::String,
271
+ performance_target: {
272
+ constraints: Array[
273
+ {
274
+ metric: ("ttft-ms" | "throughput" | "cost")
275
+ },
276
+ ]
277
+ },
278
+ role_arn: ::String,
279
+ ?inference_specification: {
280
+ framework: ("LMI" | "VLLM")?
281
+ },
282
+ ?optimize_model: bool,
283
+ ?compute_spec: {
284
+ instance_types: Array[("ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.4xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge")]?,
285
+ capacity_reservation_config: {
286
+ capacity_reservation_preference: ("capacity-reservations-only")?,
287
+ ml_reservation_arns: Array[::String]?
288
+ }?
289
+ },
290
+ ?tags: Array[
291
+ {
292
+ key: ::String,
293
+ value: ::String
294
+ },
295
+ ]
296
+ ) -> _CreateAIRecommendationJobResponseSuccess
297
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAIRecommendationJobResponseSuccess
298
+
299
+ interface _CreateAIWorkloadConfigResponseSuccess
300
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAIWorkloadConfigResponse]
301
+ def ai_workload_config_arn: () -> ::String
302
+ end
303
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_ai_workload_config-instance_method
304
+ def create_ai_workload_config: (
305
+ ai_workload_config_name: ::String,
306
+ ?dataset_config: {
307
+ input_data_config: Array[
308
+ {
309
+ channel_name: ::String,
310
+ data_source: {
311
+ s3_data_source: {
312
+ s3_uri: ::String
313
+ }?
314
+ }
315
+ },
316
+ ]?
317
+ },
318
+ ?ai_workload_configs: {
319
+ workload_spec: {
320
+ inline: ::String?
321
+ }
322
+ },
323
+ ?tags: Array[
324
+ {
325
+ key: ::String,
326
+ value: ::String
327
+ },
328
+ ]
329
+ ) -> _CreateAIWorkloadConfigResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAIWorkloadConfigResponseSuccess
331
+
216
332
  interface _CreateActionResponseSuccess
217
333
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateActionResponse]
218
334
  def action_arn: () -> ::String
@@ -340,6 +456,25 @@ module Aws
340
456
  framework: ::String?,
341
457
  framework_version: ::String?,
342
458
  nearest_model_name: ::String?,
459
+ additional_model_data_sources: Array[
460
+ {
461
+ channel_name: ::String,
462
+ s3_data_source: {
463
+ s3_uri: ::String,
464
+ s3_data_type: ("S3Prefix" | "S3Object"),
465
+ compression_type: ("None" | "Gzip"),
466
+ model_access_config: {
467
+ accept_eula: bool
468
+ }?,
469
+ hub_access_config: {
470
+ hub_content_arn: ::String
471
+ }?,
472
+ manifest_s3_uri: ::String?,
473
+ etag: ::String?,
474
+ manifest_etag: ::String?
475
+ }
476
+ },
477
+ ]?,
343
478
  additional_s3_data_source: {
344
479
  s3_data_type: ("S3Object" | "S3Prefix"),
345
480
  s3_uri: ::String,
@@ -3334,6 +3469,25 @@ module Aws
3334
3469
  framework: ::String?,
3335
3470
  framework_version: ::String?,
3336
3471
  nearest_model_name: ::String?,
3472
+ additional_model_data_sources: Array[
3473
+ {
3474
+ channel_name: ::String,
3475
+ s3_data_source: {
3476
+ s3_uri: ::String,
3477
+ s3_data_type: ("S3Prefix" | "S3Object"),
3478
+ compression_type: ("None" | "Gzip"),
3479
+ model_access_config: {
3480
+ accept_eula: bool
3481
+ }?,
3482
+ hub_access_config: {
3483
+ hub_content_arn: ::String
3484
+ }?,
3485
+ manifest_s3_uri: ::String?,
3486
+ etag: ::String?,
3487
+ manifest_etag: ::String?
3488
+ }
3489
+ },
3490
+ ]?,
3337
3491
  additional_s3_data_source: {
3338
3492
  s3_data_type: ("S3Object" | "S3Prefix"),
3339
3493
  s3_uri: ::String,
@@ -3574,6 +3728,25 @@ module Aws
3574
3728
  framework: ::String?,
3575
3729
  framework_version: ::String?,
3576
3730
  nearest_model_name: ::String?,
3731
+ additional_model_data_sources: Array[
3732
+ {
3733
+ channel_name: ::String,
3734
+ s3_data_source: {
3735
+ s3_uri: ::String,
3736
+ s3_data_type: ("S3Prefix" | "S3Object"),
3737
+ compression_type: ("None" | "Gzip"),
3738
+ model_access_config: {
3739
+ accept_eula: bool
3740
+ }?,
3741
+ hub_access_config: {
3742
+ hub_content_arn: ::String
3743
+ }?,
3744
+ manifest_s3_uri: ::String?,
3745
+ etag: ::String?,
3746
+ manifest_etag: ::String?
3747
+ }
3748
+ },
3749
+ ]?,
3577
3750
  additional_s3_data_source: {
3578
3751
  s3_data_type: ("S3Object" | "S3Prefix"),
3579
3752
  s3_uri: ::String,
@@ -3927,7 +4100,7 @@ module Aws
3927
4100
  model_name: ::String?
3928
4101
  }?
3929
4102
  },
3930
- deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge"),
4103
+ deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge"),
3931
4104
  ?max_instance_count: ::Integer,
3932
4105
  ?optimization_environment: Hash[::String, ::String],
3933
4106
  optimization_configs: Array[
@@ -5038,6 +5211,36 @@ module Aws
5038
5211
  ) -> _CreateWorkteamResponseSuccess
5039
5212
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkteamResponseSuccess
5040
5213
 
5214
+ interface _DeleteAIBenchmarkJobResponseSuccess
5215
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAIBenchmarkJobResponse]
5216
+ def ai_benchmark_job_arn: () -> ::String
5217
+ end
5218
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_ai_benchmark_job-instance_method
5219
+ def delete_ai_benchmark_job: (
5220
+ ai_benchmark_job_name: ::String
5221
+ ) -> _DeleteAIBenchmarkJobResponseSuccess
5222
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAIBenchmarkJobResponseSuccess
5223
+
5224
+ interface _DeleteAIRecommendationJobResponseSuccess
5225
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAIRecommendationJobResponse]
5226
+ def ai_recommendation_job_arn: () -> ::String
5227
+ end
5228
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_ai_recommendation_job-instance_method
5229
+ def delete_ai_recommendation_job: (
5230
+ ai_recommendation_job_name: ::String
5231
+ ) -> _DeleteAIRecommendationJobResponseSuccess
5232
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAIRecommendationJobResponseSuccess
5233
+
5234
+ interface _DeleteAIWorkloadConfigResponseSuccess
5235
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAIWorkloadConfigResponse]
5236
+ def ai_workload_config_arn: () -> ::String
5237
+ end
5238
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_ai_workload_config-instance_method
5239
+ def delete_ai_workload_config: (
5240
+ ai_workload_config_name: ::String
5241
+ ) -> _DeleteAIWorkloadConfigResponseSuccess
5242
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAIWorkloadConfigResponseSuccess
5243
+
5041
5244
  interface _DeleteActionResponseSuccess
5042
5245
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteActionResponse]
5043
5246
  def action_arn: () -> ::String
@@ -5498,6 +5701,69 @@ module Aws
5498
5701
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
5499
5702
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
5500
5703
 
5704
+ interface _DescribeAIBenchmarkJobResponseSuccess
5705
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAIBenchmarkJobResponse]
5706
+ def ai_benchmark_job_name: () -> ::String
5707
+ def ai_benchmark_job_arn: () -> ::String
5708
+ def ai_benchmark_job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
5709
+ def failure_reason: () -> ::String
5710
+ def benchmark_target: () -> Types::AIBenchmarkTarget
5711
+ def output_config: () -> Types::AIBenchmarkOutputResult
5712
+ def ai_workload_config_identifier: () -> ::String
5713
+ def role_arn: () -> ::String
5714
+ def network_config: () -> Types::AIBenchmarkNetworkConfig
5715
+ def creation_time: () -> ::Time
5716
+ def start_time: () -> ::Time
5717
+ def end_time: () -> ::Time
5718
+ def tags: () -> ::Array[Types::Tag]
5719
+ end
5720
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_ai_benchmark_job-instance_method
5721
+ def describe_ai_benchmark_job: (
5722
+ ai_benchmark_job_name: ::String
5723
+ ) -> _DescribeAIBenchmarkJobResponseSuccess
5724
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAIBenchmarkJobResponseSuccess
5725
+
5726
+ interface _DescribeAIRecommendationJobResponseSuccess
5727
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAIRecommendationJobResponse]
5728
+ def ai_recommendation_job_name: () -> ::String
5729
+ def ai_recommendation_job_arn: () -> ::String
5730
+ def ai_recommendation_job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
5731
+ def failure_reason: () -> ::String
5732
+ def model_source: () -> Types::AIModelSource
5733
+ def output_config: () -> Types::AIRecommendationOutputResult
5734
+ def inference_specification: () -> Types::AIRecommendationInferenceSpecification
5735
+ def ai_workload_config_identifier: () -> ::String
5736
+ def optimize_model: () -> bool
5737
+ def performance_target: () -> Types::AIRecommendationPerformanceTarget
5738
+ def recommendations: () -> ::Array[Types::AIRecommendation]
5739
+ def role_arn: () -> ::String
5740
+ def compute_spec: () -> Types::AIRecommendationComputeSpec
5741
+ def creation_time: () -> ::Time
5742
+ def start_time: () -> ::Time
5743
+ def end_time: () -> ::Time
5744
+ def tags: () -> ::Array[Types::Tag]
5745
+ end
5746
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_ai_recommendation_job-instance_method
5747
+ def describe_ai_recommendation_job: (
5748
+ ai_recommendation_job_name: ::String
5749
+ ) -> _DescribeAIRecommendationJobResponseSuccess
5750
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAIRecommendationJobResponseSuccess
5751
+
5752
+ interface _DescribeAIWorkloadConfigResponseSuccess
5753
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAIWorkloadConfigResponse]
5754
+ def ai_workload_config_name: () -> ::String
5755
+ def ai_workload_config_arn: () -> ::String
5756
+ def dataset_config: () -> Types::AIDatasetConfig
5757
+ def ai_workload_configs: () -> Types::AIWorkloadConfigs
5758
+ def tags: () -> ::Array[Types::Tag]
5759
+ def creation_time: () -> ::Time
5760
+ end
5761
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_ai_workload_config-instance_method
5762
+ def describe_ai_workload_config: (
5763
+ ai_workload_config_name: ::String
5764
+ ) -> _DescribeAIWorkloadConfigResponseSuccess
5765
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAIWorkloadConfigResponseSuccess
5766
+
5501
5767
  interface _DescribeActionResponseSuccess
5502
5768
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeActionResponse]
5503
5769
  def action_name: () -> ::String
@@ -6641,7 +6907,7 @@ module Aws
6641
6907
  def optimization_job_name: () -> ::String
6642
6908
  def model_source: () -> Types::OptimizationJobModelSource
6643
6909
  def optimization_environment: () -> ::Hash[::String, ::String]
6644
- def deployment_instance_type: () -> ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
6910
+ def deployment_instance_type: () -> ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
6645
6911
  def max_instance_count: () -> ::Integer
6646
6912
  def optimization_configs: () -> ::Array[Types::OptimizationConfig]
6647
6913
  def output_config: () -> Types::OptimizationJobOutputConfig
@@ -7248,6 +7514,59 @@ module Aws
7248
7514
  ) -> _ImportHubContentResponseSuccess
7249
7515
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportHubContentResponseSuccess
7250
7516
 
7517
+ interface _ListAIBenchmarkJobsResponseSuccess
7518
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAIBenchmarkJobsResponse]
7519
+ def ai_benchmark_jobs: () -> ::Array[Types::AIBenchmarkJobSummary]
7520
+ def next_token: () -> ::String
7521
+ end
7522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_ai_benchmark_jobs-instance_method
7523
+ def list_ai_benchmark_jobs: (
7524
+ ?max_results: ::Integer,
7525
+ ?next_token: ::String,
7526
+ ?name_contains: ::String,
7527
+ ?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped"),
7528
+ ?creation_time_after: ::Time,
7529
+ ?creation_time_before: ::Time,
7530
+ ?sort_by: ("Name" | "CreationTime" | "Status"),
7531
+ ?sort_order: ("Ascending" | "Descending")
7532
+ ) -> _ListAIBenchmarkJobsResponseSuccess
7533
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAIBenchmarkJobsResponseSuccess
7534
+
7535
+ interface _ListAIRecommendationJobsResponseSuccess
7536
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAIRecommendationJobsResponse]
7537
+ def ai_recommendation_jobs: () -> ::Array[Types::AIRecommendationJobSummary]
7538
+ def next_token: () -> ::String
7539
+ end
7540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_ai_recommendation_jobs-instance_method
7541
+ def list_ai_recommendation_jobs: (
7542
+ ?max_results: ::Integer,
7543
+ ?next_token: ::String,
7544
+ ?name_contains: ::String,
7545
+ ?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped"),
7546
+ ?creation_time_after: ::Time,
7547
+ ?creation_time_before: ::Time,
7548
+ ?sort_by: ("Name" | "CreationTime" | "Status"),
7549
+ ?sort_order: ("Ascending" | "Descending")
7550
+ ) -> _ListAIRecommendationJobsResponseSuccess
7551
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAIRecommendationJobsResponseSuccess
7552
+
7553
+ interface _ListAIWorkloadConfigsResponseSuccess
7554
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAIWorkloadConfigsResponse]
7555
+ def ai_workload_configs: () -> ::Array[Types::AIWorkloadConfigSummary]
7556
+ def next_token: () -> ::String
7557
+ end
7558
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_ai_workload_configs-instance_method
7559
+ def list_ai_workload_configs: (
7560
+ ?max_results: ::Integer,
7561
+ ?next_token: ::String,
7562
+ ?name_contains: ::String,
7563
+ ?creation_time_after: ::Time,
7564
+ ?creation_time_before: ::Time,
7565
+ ?sort_by: ("Name" | "CreationTime"),
7566
+ ?sort_order: ("Ascending" | "Descending")
7567
+ ) -> _ListAIWorkloadConfigsResponseSuccess
7568
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAIWorkloadConfigsResponseSuccess
7569
+
7251
7570
  interface _ListActionsResponseSuccess
7252
7571
  include ::Seahorse::Client::_ResponseSuccess[Types::ListActionsResponse]
7253
7572
  def action_summaries: () -> ::Array[Types::ActionSummary]
@@ -9067,6 +9386,26 @@ module Aws
9067
9386
  ) -> _StartSessionResponseSuccess
9068
9387
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSessionResponseSuccess
9069
9388
 
9389
+ interface _StopAIBenchmarkJobResponseSuccess
9390
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopAIBenchmarkJobResponse]
9391
+ def ai_benchmark_job_arn: () -> ::String
9392
+ end
9393
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_ai_benchmark_job-instance_method
9394
+ def stop_ai_benchmark_job: (
9395
+ ai_benchmark_job_name: ::String
9396
+ ) -> _StopAIBenchmarkJobResponseSuccess
9397
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopAIBenchmarkJobResponseSuccess
9398
+
9399
+ interface _StopAIRecommendationJobResponseSuccess
9400
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopAIRecommendationJobResponse]
9401
+ def ai_recommendation_job_arn: () -> ::String
9402
+ end
9403
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_ai_recommendation_job-instance_method
9404
+ def stop_ai_recommendation_job: (
9405
+ ai_recommendation_job_name: ::String
9406
+ ) -> _StopAIRecommendationJobResponseSuccess
9407
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopAIRecommendationJobResponseSuccess
9408
+
9070
9409
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_auto_ml_job-instance_method
9071
9410
  def stop_auto_ml_job: (
9072
9411
  auto_ml_job_name: ::String
@@ -10390,6 +10729,25 @@ module Aws
10390
10729
  framework: ::String?,
10391
10730
  framework_version: ::String?,
10392
10731
  nearest_model_name: ::String?,
10732
+ additional_model_data_sources: Array[
10733
+ {
10734
+ channel_name: ::String,
10735
+ s3_data_source: {
10736
+ s3_uri: ::String,
10737
+ s3_data_type: ("S3Prefix" | "S3Object"),
10738
+ compression_type: ("None" | "Gzip"),
10739
+ model_access_config: {
10740
+ accept_eula: bool
10741
+ }?,
10742
+ hub_access_config: {
10743
+ hub_content_arn: ::String
10744
+ }?,
10745
+ manifest_s3_uri: ::String?,
10746
+ etag: ::String?,
10747
+ manifest_etag: ::String?
10748
+ }
10749
+ },
10750
+ ]?,
10393
10751
  additional_s3_data_source: {
10394
10752
  s3_data_type: ("S3Object" | "S3Prefix"),
10395
10753
  s3_uri: ::String,
@@ -10442,6 +10800,25 @@ module Aws
10442
10800
  framework: ::String?,
10443
10801
  framework_version: ::String?,
10444
10802
  nearest_model_name: ::String?,
10803
+ additional_model_data_sources: Array[
10804
+ {
10805
+ channel_name: ::String,
10806
+ s3_data_source: {
10807
+ s3_uri: ::String,
10808
+ s3_data_type: ("S3Prefix" | "S3Object"),
10809
+ compression_type: ("None" | "Gzip"),
10810
+ model_access_config: {
10811
+ accept_eula: bool
10812
+ }?,
10813
+ hub_access_config: {
10814
+ hub_content_arn: ::String
10815
+ }?,
10816
+ manifest_s3_uri: ::String?,
10817
+ etag: ::String?,
10818
+ manifest_etag: ::String?
10819
+ }
10820
+ },
10821
+ ]?,
10445
10822
  additional_s3_data_source: {
10446
10823
  s3_data_type: ("S3Object" | "S3Prefix"),
10447
10824
  s3_uri: ::String,