aws-sdk-sagemaker 1.369.0 → 1.371.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.369.0'
58
+ GEM_VERSION = '1.371.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1661,6 +1661,26 @@ module Aws
1661
1661
  ) -> _CreateInferenceRecommendationsJobResponseSuccess
1662
1662
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInferenceRecommendationsJobResponseSuccess
1663
1663
 
1664
+ interface _CreateJobResponseSuccess
1665
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateJobResponse]
1666
+ def job_arn: () -> ::String
1667
+ end
1668
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_job-instance_method
1669
+ def create_job: (
1670
+ job_name: ::String,
1671
+ role_arn: ::String,
1672
+ job_category: ("AgentRFT" | "AgentRFTEvaluation"),
1673
+ job_config_schema_version: ::String,
1674
+ job_config_document: ::String,
1675
+ ?tags: Array[
1676
+ {
1677
+ key: ::String,
1678
+ value: ::String
1679
+ }
1680
+ ]
1681
+ ) -> _CreateJobResponseSuccess
1682
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateJobResponseSuccess
1683
+
1664
1684
  interface _CreateLabelingJobResponseSuccess
1665
1685
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateLabelingJobResponse]
1666
1686
  def labeling_job_arn: () -> ::String
@@ -3247,6 +3267,16 @@ module Aws
3247
3267
  ) -> _DeleteInferenceExperimentResponseSuccess
3248
3268
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInferenceExperimentResponseSuccess
3249
3269
 
3270
+ interface _DeleteJobResponseSuccess
3271
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteJobResponse]
3272
+ end
3273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_job-instance_method
3274
+ def delete_job: (
3275
+ job_name: ::String,
3276
+ job_category: ("AgentRFT" | "AgentRFTEvaluation")
3277
+ ) -> _DeleteJobResponseSuccess
3278
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteJobResponseSuccess
3279
+
3250
3280
  interface _DeleteMlflowAppResponseSuccess
3251
3281
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMlflowAppResponse]
3252
3282
  def arn: () -> ::String
@@ -4317,6 +4347,43 @@ module Aws
4317
4347
  ) -> _DescribeInferenceRecommendationsJobResponseSuccess
4318
4348
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInferenceRecommendationsJobResponseSuccess
4319
4349
 
4350
+ interface _DescribeJobResponseSuccess
4351
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobResponse]
4352
+ def job_name: () -> ::String
4353
+ def job_arn: () -> ::String
4354
+ def role_arn: () -> ::String
4355
+ def job_category: () -> ("AgentRFT" | "AgentRFTEvaluation")
4356
+ def job_config_schema_version: () -> ::String
4357
+ def job_config_document: () -> ::String
4358
+ def creation_time: () -> ::Time
4359
+ def last_modified_time: () -> ::Time
4360
+ def end_time: () -> ::Time
4361
+ def job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
4362
+ def secondary_status: () -> ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
4363
+ def secondary_status_transitions: () -> ::Array[Types::JobSecondaryStatusTransition]
4364
+ def failure_reason: () -> ::String
4365
+ def tags: () -> ::Array[Types::Tag]
4366
+ end
4367
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_job-instance_method
4368
+ def describe_job: (
4369
+ job_name: ::String,
4370
+ job_category: ("AgentRFT" | "AgentRFTEvaluation")
4371
+ ) -> _DescribeJobResponseSuccess
4372
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobResponseSuccess
4373
+
4374
+ interface _DescribeJobSchemaVersionResponseSuccess
4375
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobSchemaVersionResponse]
4376
+ def job_category: () -> ("AgentRFT" | "AgentRFTEvaluation")
4377
+ def job_config_schema_version: () -> ::String
4378
+ def job_config_schema: () -> ::String
4379
+ end
4380
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_job_schema_version-instance_method
4381
+ def describe_job_schema_version: (
4382
+ job_category: ("AgentRFT" | "AgentRFTEvaluation"),
4383
+ ?job_config_schema_version: ::String
4384
+ ) -> _DescribeJobSchemaVersionResponseSuccess
4385
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobSchemaVersionResponseSuccess
4386
+
4320
4387
  interface _DescribeLabelingJobResponseSuccess
4321
4388
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLabelingJobResponse]
4322
4389
  def labeling_job_status: () -> ("Initializing" | "InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
@@ -4468,7 +4535,8 @@ module Aws
4468
4535
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_model_card-instance_method
4469
4536
  def describe_model_card: (
4470
4537
  model_card_name: ::String,
4471
- ?model_card_version: ::Integer
4538
+ ?model_card_version: ::Integer,
4539
+ ?included_data: ("AllData" | "MetadataOnly")
4472
4540
  ) -> _DescribeModelCardResponseSuccess
4473
4541
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeModelCardResponseSuccess
4474
4542
 
@@ -4548,7 +4616,8 @@ module Aws
4548
4616
  end
4549
4617
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_model_package-instance_method
4550
4618
  def describe_model_package: (
4551
- model_package_name: ::String
4619
+ model_package_name: ::String,
4620
+ ?included_data: ("AllData" | "MetadataOnly")
4552
4621
  ) -> _DescribeModelPackageResponseSuccess
4553
4622
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeModelPackageResponseSuccess
4554
4623
 
@@ -5237,7 +5306,7 @@ module Aws
5237
5306
  end
5238
5307
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#get_search_suggestions-instance_method
5239
5308
  def get_search_suggestions: (
5240
- resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion"),
5309
+ resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion" | "Job"),
5241
5310
  ?suggestion_query: {
5242
5311
  property_name_query: {
5243
5312
  property_name_hint: ::String
@@ -6045,6 +6114,40 @@ module Aws
6045
6114
  ) -> _ListInferenceRecommendationsJobsResponseSuccess
6046
6115
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInferenceRecommendationsJobsResponseSuccess
6047
6116
 
6117
+ interface _ListJobSchemaVersionsResponseSuccess
6118
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListJobSchemaVersionsResponse]
6119
+ def next_token: () -> ::String
6120
+ def job_config_schemas: () -> ::Array[Types::JobConfigSchemaVersionSummary]
6121
+ end
6122
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_job_schema_versions-instance_method
6123
+ def list_job_schema_versions: (
6124
+ job_category: ("AgentRFT" | "AgentRFTEvaluation"),
6125
+ ?next_token: ::String,
6126
+ ?max_results: ::Integer
6127
+ ) -> _ListJobSchemaVersionsResponseSuccess
6128
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobSchemaVersionsResponseSuccess
6129
+
6130
+ interface _ListJobsResponseSuccess
6131
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResponse]
6132
+ def next_token: () -> ::String
6133
+ def job_summaries: () -> ::Array[Types::JobSummary]
6134
+ end
6135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_jobs-instance_method
6136
+ def list_jobs: (
6137
+ job_category: ("AgentRFT" | "AgentRFTEvaluation"),
6138
+ ?next_token: ::String,
6139
+ ?max_results: ::Integer,
6140
+ ?creation_time_after: ::Time,
6141
+ ?creation_time_before: ::Time,
6142
+ ?last_modified_time_after: ::Time,
6143
+ ?last_modified_time_before: ::Time,
6144
+ ?name_contains: ::String,
6145
+ ?sort_by: ("Name" | "CreationTime" | "Status"),
6146
+ ?sort_order: ("Ascending" | "Descending"),
6147
+ ?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
6148
+ ) -> _ListJobsResponseSuccess
6149
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsResponseSuccess
6150
+
6048
6151
  interface _ListLabelingJobsResponseSuccess
6049
6152
  include ::Seahorse::Client::_ResponseSuccess[Types::ListLabelingJobsResponse]
6050
6153
  def labeling_job_summary_list: () -> ::Array[Types::LabelingJobSummary]
@@ -6957,7 +7060,7 @@ module Aws
6957
7060
  end
6958
7061
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#search-instance_method
6959
7062
  def search: (
6960
- resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion"),
7063
+ resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion" | "Job"),
6961
7064
  ?search_expression: Params::search_expression,
6962
7065
  ?sort_by: ::String,
6963
7066
  ?sort_order: ("Ascending" | "Descending"),
@@ -7194,6 +7297,16 @@ module Aws
7194
7297
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
7195
7298
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
7196
7299
 
7300
+ interface _StopJobResponseSuccess
7301
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopJobResponse]
7302
+ end
7303
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_job-instance_method
7304
+ def stop_job: (
7305
+ job_name: ::String,
7306
+ job_category: ("AgentRFT" | "AgentRFTEvaluation")
7307
+ ) -> _StopJobResponseSuccess
7308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopJobResponseSuccess
7309
+
7197
7310
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_labeling_job-instance_method
7198
7311
  def stop_labeling_job: (
7199
7312
  labeling_job_name: ::String
data/sig/types.rbs CHANGED
@@ -2319,6 +2319,21 @@ module Aws::SageMaker
2319
2319
  SENSITIVE: []
2320
2320
  end
2321
2321
 
2322
+ class CreateJobRequest
2323
+ attr_accessor job_name: ::String
2324
+ attr_accessor role_arn: ::String
2325
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
2326
+ attr_accessor job_config_schema_version: ::String
2327
+ attr_accessor job_config_document: ::String
2328
+ attr_accessor tags: ::Array[Types::Tag]
2329
+ SENSITIVE: []
2330
+ end
2331
+
2332
+ class CreateJobResponse
2333
+ attr_accessor job_arn: ::String
2334
+ SENSITIVE: []
2335
+ end
2336
+
2322
2337
  class CreateLabelingJobRequest
2323
2338
  attr_accessor labeling_job_name: ::String
2324
2339
  attr_accessor label_attribute_name: ::String
@@ -3346,6 +3361,15 @@ module Aws::SageMaker
3346
3361
  SENSITIVE: []
3347
3362
  end
3348
3363
 
3364
+ class DeleteJobRequest
3365
+ attr_accessor job_name: ::String
3366
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
3367
+ SENSITIVE: []
3368
+ end
3369
+
3370
+ class DeleteJobResponse < Aws::EmptyStructure
3371
+ end
3372
+
3349
3373
  class DeleteMlflowAppRequest
3350
3374
  attr_accessor arn: ::String
3351
3375
  SENSITIVE: []
@@ -4442,6 +4466,43 @@ module Aws::SageMaker
4442
4466
  SENSITIVE: []
4443
4467
  end
4444
4468
 
4469
+ class DescribeJobRequest
4470
+ attr_accessor job_name: ::String
4471
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
4472
+ SENSITIVE: []
4473
+ end
4474
+
4475
+ class DescribeJobResponse
4476
+ attr_accessor job_name: ::String
4477
+ attr_accessor job_arn: ::String
4478
+ attr_accessor role_arn: ::String
4479
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
4480
+ attr_accessor job_config_schema_version: ::String
4481
+ attr_accessor job_config_document: ::String
4482
+ attr_accessor creation_time: ::Time
4483
+ attr_accessor last_modified_time: ::Time
4484
+ attr_accessor end_time: ::Time
4485
+ attr_accessor job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
4486
+ attr_accessor secondary_status: ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
4487
+ attr_accessor secondary_status_transitions: ::Array[Types::JobSecondaryStatusTransition]
4488
+ attr_accessor failure_reason: ::String
4489
+ attr_accessor tags: ::Array[Types::Tag]
4490
+ SENSITIVE: []
4491
+ end
4492
+
4493
+ class DescribeJobSchemaVersionRequest
4494
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
4495
+ attr_accessor job_config_schema_version: ::String
4496
+ SENSITIVE: []
4497
+ end
4498
+
4499
+ class DescribeJobSchemaVersionResponse
4500
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
4501
+ attr_accessor job_config_schema_version: ::String
4502
+ attr_accessor job_config_schema: ::String
4503
+ SENSITIVE: []
4504
+ end
4505
+
4445
4506
  class DescribeLabelingJobRequest
4446
4507
  attr_accessor labeling_job_name: ::String
4447
4508
  SENSITIVE: []
@@ -4579,6 +4640,7 @@ module Aws::SageMaker
4579
4640
  class DescribeModelCardRequest
4580
4641
  attr_accessor model_card_name: ::String
4581
4642
  attr_accessor model_card_version: ::Integer
4643
+ attr_accessor included_data: ("AllData" | "MetadataOnly")
4582
4644
  SENSITIVE: []
4583
4645
  end
4584
4646
 
@@ -4654,6 +4716,7 @@ module Aws::SageMaker
4654
4716
 
4655
4717
  class DescribeModelPackageInput
4656
4718
  attr_accessor model_package_name: ::String
4719
+ attr_accessor included_data: ("AllData" | "MetadataOnly")
4657
4720
  SENSITIVE: []
4658
4721
  end
4659
4722
 
@@ -5981,7 +6044,7 @@ module Aws::SageMaker
5981
6044
  end
5982
6045
 
5983
6046
  class GetSearchSuggestionsRequest
5984
- attr_accessor resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion")
6047
+ attr_accessor resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion" | "Job")
5985
6048
  attr_accessor suggestion_query: Types::SuggestionQuery
5986
6049
  SENSITIVE: []
5987
6050
  end
@@ -6666,6 +6729,54 @@ module Aws::SageMaker
6666
6729
  SENSITIVE: []
6667
6730
  end
6668
6731
 
6732
+ class Job
6733
+ attr_accessor job_name: ::String
6734
+ attr_accessor job_arn: ::String
6735
+ attr_accessor role_arn: ::String
6736
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
6737
+ attr_accessor job_config_schema_version: ::String
6738
+ attr_accessor job_config_document: ::String
6739
+ attr_accessor creation_time: ::Time
6740
+ attr_accessor last_modified_time: ::Time
6741
+ attr_accessor end_time: ::Time
6742
+ attr_accessor job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
6743
+ attr_accessor secondary_status: ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
6744
+ attr_accessor secondary_status_transitions: ::Array[Types::JobSecondaryStatusTransition]
6745
+ attr_accessor failure_reason: ::String
6746
+ attr_accessor tags: ::Array[Types::Tag]
6747
+ SENSITIVE: []
6748
+ end
6749
+
6750
+ class JobConfigSchemaVersionSummary
6751
+ attr_accessor job_config_schema_version: ::String
6752
+ SENSITIVE: []
6753
+ end
6754
+
6755
+ class JobSecondaryStatusTransition
6756
+ attr_accessor status: ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
6757
+ attr_accessor start_time: ::Time
6758
+ attr_accessor end_time: ::Time
6759
+ attr_accessor status_message: ::String
6760
+ SENSITIVE: []
6761
+ end
6762
+
6763
+ class JobStepMetadata
6764
+ attr_accessor arn: ::String
6765
+ SENSITIVE: []
6766
+ end
6767
+
6768
+ class JobSummary
6769
+ attr_accessor job_arn: ::String
6770
+ attr_accessor job_name: ::String
6771
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
6772
+ attr_accessor job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
6773
+ attr_accessor job_secondary_status: ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
6774
+ attr_accessor creation_time: ::Time
6775
+ attr_accessor last_modified_time: ::Time
6776
+ attr_accessor end_time: ::Time
6777
+ SENSITIVE: []
6778
+ end
6779
+
6669
6780
  class JupyterLabAppImageConfig
6670
6781
  attr_accessor file_system_config: Types::FileSystemConfig
6671
6782
  attr_accessor container_config: Types::ContainerConfig
@@ -7616,6 +7727,40 @@ module Aws::SageMaker
7616
7727
  SENSITIVE: []
7617
7728
  end
7618
7729
 
7730
+ class ListJobSchemaVersionsRequest
7731
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
7732
+ attr_accessor next_token: ::String
7733
+ attr_accessor max_results: ::Integer
7734
+ SENSITIVE: []
7735
+ end
7736
+
7737
+ class ListJobSchemaVersionsResponse
7738
+ attr_accessor next_token: ::String
7739
+ attr_accessor job_config_schemas: ::Array[Types::JobConfigSchemaVersionSummary]
7740
+ SENSITIVE: []
7741
+ end
7742
+
7743
+ class ListJobsRequest
7744
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
7745
+ attr_accessor next_token: ::String
7746
+ attr_accessor max_results: ::Integer
7747
+ attr_accessor creation_time_after: ::Time
7748
+ attr_accessor creation_time_before: ::Time
7749
+ attr_accessor last_modified_time_after: ::Time
7750
+ attr_accessor last_modified_time_before: ::Time
7751
+ attr_accessor name_contains: ::String
7752
+ attr_accessor sort_by: ("Name" | "CreationTime" | "Status")
7753
+ attr_accessor sort_order: ("Ascending" | "Descending")
7754
+ attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
7755
+ SENSITIVE: []
7756
+ end
7757
+
7758
+ class ListJobsResponse
7759
+ attr_accessor next_token: ::String
7760
+ attr_accessor job_summaries: ::Array[Types::JobSummary]
7761
+ SENSITIVE: []
7762
+ end
7763
+
7619
7764
  class ListLabelingJobsForWorkteamRequest
7620
7765
  attr_accessor workteam_arn: ::String
7621
7766
  attr_accessor max_results: ::Integer
@@ -9626,6 +9771,7 @@ module Aws::SageMaker
9626
9771
  attr_accessor bedrock_model_import: Types::BedrockModelImportMetadata
9627
9772
  attr_accessor inference_component: Types::InferenceComponentMetadata
9628
9773
  attr_accessor lineage: Types::LineageMetadata
9774
+ attr_accessor job: Types::JobStepMetadata
9629
9775
  SENSITIVE: []
9630
9776
  end
9631
9777
 
@@ -10501,11 +10647,12 @@ module Aws::SageMaker
10501
10647
  attr_accessor hyper_parameter_tuning_job: Types::HyperParameterTuningJobSearchEntity
10502
10648
  attr_accessor model_card: Types::ModelCard
10503
10649
  attr_accessor model: Types::ModelDashboardModel
10650
+ attr_accessor job: Types::Job
10504
10651
  SENSITIVE: []
10505
10652
  end
10506
10653
 
10507
10654
  class SearchRequest
10508
- attr_accessor resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion")
10655
+ attr_accessor resource: ("TrainingJob" | "Experiment" | "ExperimentTrial" | "ExperimentTrialComponent" | "Endpoint" | "Model" | "ModelPackage" | "ModelPackageGroup" | "Pipeline" | "PipelineExecution" | "FeatureGroup" | "FeatureMetadata" | "Image" | "ImageVersion" | "Project" | "HyperParameterTuningJob" | "ModelCard" | "PipelineVersion" | "Job")
10509
10656
  attr_accessor search_expression: Types::SearchExpression
10510
10657
  attr_accessor sort_by: ::String
10511
10658
  attr_accessor sort_order: ("Ascending" | "Descending")
@@ -10888,6 +11035,15 @@ module Aws::SageMaker
10888
11035
  SENSITIVE: []
10889
11036
  end
10890
11037
 
11038
+ class StopJobRequest
11039
+ attr_accessor job_name: ::String
11040
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
11041
+ SENSITIVE: []
11042
+ end
11043
+
11044
+ class StopJobResponse < Aws::EmptyStructure
11045
+ end
11046
+
10891
11047
  class StopLabelingJobRequest
10892
11048
  attr_accessor labeling_job_name: ::String
10893
11049
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.369.0
4
+ version: 1.371.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services