aws-sdk-sagemaker 1.369.0 → 1.370.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.
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: []
@@ -6666,6 +6727,36 @@ module Aws::SageMaker
6666
6727
  SENSITIVE: []
6667
6728
  end
6668
6729
 
6730
+ class JobConfigSchemaVersionSummary
6731
+ attr_accessor job_config_schema_version: ::String
6732
+ SENSITIVE: []
6733
+ end
6734
+
6735
+ class JobSecondaryStatusTransition
6736
+ attr_accessor status: ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
6737
+ attr_accessor start_time: ::Time
6738
+ attr_accessor end_time: ::Time
6739
+ attr_accessor status_message: ::String
6740
+ SENSITIVE: []
6741
+ end
6742
+
6743
+ class JobStepMetadata
6744
+ attr_accessor arn: ::String
6745
+ SENSITIVE: []
6746
+ end
6747
+
6748
+ class JobSummary
6749
+ attr_accessor job_arn: ::String
6750
+ attr_accessor job_name: ::String
6751
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
6752
+ attr_accessor job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
6753
+ attr_accessor job_secondary_status: ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
6754
+ attr_accessor creation_time: ::Time
6755
+ attr_accessor last_modified_time: ::Time
6756
+ attr_accessor end_time: ::Time
6757
+ SENSITIVE: []
6758
+ end
6759
+
6669
6760
  class JupyterLabAppImageConfig
6670
6761
  attr_accessor file_system_config: Types::FileSystemConfig
6671
6762
  attr_accessor container_config: Types::ContainerConfig
@@ -7616,6 +7707,40 @@ module Aws::SageMaker
7616
7707
  SENSITIVE: []
7617
7708
  end
7618
7709
 
7710
+ class ListJobSchemaVersionsRequest
7711
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
7712
+ attr_accessor next_token: ::String
7713
+ attr_accessor max_results: ::Integer
7714
+ SENSITIVE: []
7715
+ end
7716
+
7717
+ class ListJobSchemaVersionsResponse
7718
+ attr_accessor next_token: ::String
7719
+ attr_accessor job_config_schemas: ::Array[Types::JobConfigSchemaVersionSummary]
7720
+ SENSITIVE: []
7721
+ end
7722
+
7723
+ class ListJobsRequest
7724
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
7725
+ attr_accessor next_token: ::String
7726
+ attr_accessor max_results: ::Integer
7727
+ attr_accessor creation_time_after: ::Time
7728
+ attr_accessor creation_time_before: ::Time
7729
+ attr_accessor last_modified_time_after: ::Time
7730
+ attr_accessor last_modified_time_before: ::Time
7731
+ attr_accessor name_contains: ::String
7732
+ attr_accessor sort_by: ("Name" | "CreationTime" | "Status")
7733
+ attr_accessor sort_order: ("Ascending" | "Descending")
7734
+ attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
7735
+ SENSITIVE: []
7736
+ end
7737
+
7738
+ class ListJobsResponse
7739
+ attr_accessor next_token: ::String
7740
+ attr_accessor job_summaries: ::Array[Types::JobSummary]
7741
+ SENSITIVE: []
7742
+ end
7743
+
7619
7744
  class ListLabelingJobsForWorkteamRequest
7620
7745
  attr_accessor workteam_arn: ::String
7621
7746
  attr_accessor max_results: ::Integer
@@ -9626,6 +9751,7 @@ module Aws::SageMaker
9626
9751
  attr_accessor bedrock_model_import: Types::BedrockModelImportMetadata
9627
9752
  attr_accessor inference_component: Types::InferenceComponentMetadata
9628
9753
  attr_accessor lineage: Types::LineageMetadata
9754
+ attr_accessor job: Types::JobStepMetadata
9629
9755
  SENSITIVE: []
9630
9756
  end
9631
9757
 
@@ -10888,6 +11014,15 @@ module Aws::SageMaker
10888
11014
  SENSITIVE: []
10889
11015
  end
10890
11016
 
11017
+ class StopJobRequest
11018
+ attr_accessor job_name: ::String
11019
+ attr_accessor job_category: ("AgentRFT" | "AgentRFTEvaluation")
11020
+ SENSITIVE: []
11021
+ end
11022
+
11023
+ class StopJobResponse < Aws::EmptyStructure
11024
+ end
11025
+
10891
11026
  class StopLabelingJobRequest
10892
11027
  attr_accessor labeling_job_name: ::String
10893
11028
  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.370.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services