aws-sdk-sagemaker 1.368.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +477 -5
- data/lib/aws-sdk-sagemaker/client_api.rb +237 -0
- data/lib/aws-sdk-sagemaker/types.rb +601 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +115 -1
- data/sig/params.rbs +10 -0
- data/sig/types.rbs +166 -3
- metadata +1 -1
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -281,7 +281,7 @@ module Aws
|
|
|
281
281
|
},
|
|
282
282
|
?optimize_model: bool,
|
|
283
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")]?,
|
|
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" | "ml.p6-b200.48xlarge")]?,
|
|
285
285
|
capacity_reservation_config: {
|
|
286
286
|
capacity_reservation_preference: ("capacity-reservations-only")?,
|
|
287
287
|
ml_reservation_arns: Array[::String]?
|
|
@@ -748,6 +748,7 @@ module Aws
|
|
|
748
748
|
?restricted_instance_groups: Array[
|
|
749
749
|
Params::cluster_restricted_instance_group_specification
|
|
750
750
|
],
|
|
751
|
+
?restricted_instance_groups_config: Params::cluster_restricted_instance_groups_config,
|
|
751
752
|
?vpc_config: {
|
|
752
753
|
security_group_ids: Array[::String],
|
|
753
754
|
subnets: Array[::String]
|
|
@@ -1660,6 +1661,26 @@ module Aws
|
|
|
1660
1661
|
) -> _CreateInferenceRecommendationsJobResponseSuccess
|
|
1661
1662
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInferenceRecommendationsJobResponseSuccess
|
|
1662
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
|
+
|
|
1663
1684
|
interface _CreateLabelingJobResponseSuccess
|
|
1664
1685
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLabelingJobResponse]
|
|
1665
1686
|
def labeling_job_arn: () -> ::String
|
|
@@ -3246,6 +3267,16 @@ module Aws
|
|
|
3246
3267
|
) -> _DeleteInferenceExperimentResponseSuccess
|
|
3247
3268
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInferenceExperimentResponseSuccess
|
|
3248
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
|
+
|
|
3249
3280
|
interface _DeleteMlflowAppResponseSuccess
|
|
3250
3281
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMlflowAppResponse]
|
|
3251
3282
|
def arn: () -> ::String
|
|
@@ -3694,6 +3725,7 @@ module Aws
|
|
|
3694
3725
|
def failure_message: () -> ::String
|
|
3695
3726
|
def instance_groups: () -> ::Array[Types::ClusterInstanceGroupDetails]
|
|
3696
3727
|
def restricted_instance_groups: () -> ::Array[Types::ClusterRestrictedInstanceGroupDetails]
|
|
3728
|
+
def restricted_instance_groups_config: () -> Types::ClusterRestrictedInstanceGroupsConfigOutput
|
|
3697
3729
|
def vpc_config: () -> Types::VpcConfig
|
|
3698
3730
|
def orchestrator: () -> Types::ClusterOrchestrator
|
|
3699
3731
|
def tiered_storage_config: () -> Types::ClusterTieredStorageConfig
|
|
@@ -4315,6 +4347,43 @@ module Aws
|
|
|
4315
4347
|
) -> _DescribeInferenceRecommendationsJobResponseSuccess
|
|
4316
4348
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInferenceRecommendationsJobResponseSuccess
|
|
4317
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
|
+
|
|
4318
4387
|
interface _DescribeLabelingJobResponseSuccess
|
|
4319
4388
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLabelingJobResponse]
|
|
4320
4389
|
def labeling_job_status: () -> ("Initializing" | "InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
@@ -6043,6 +6112,40 @@ module Aws
|
|
|
6043
6112
|
) -> _ListInferenceRecommendationsJobsResponseSuccess
|
|
6044
6113
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInferenceRecommendationsJobsResponseSuccess
|
|
6045
6114
|
|
|
6115
|
+
interface _ListJobSchemaVersionsResponseSuccess
|
|
6116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobSchemaVersionsResponse]
|
|
6117
|
+
def next_token: () -> ::String
|
|
6118
|
+
def job_config_schemas: () -> ::Array[Types::JobConfigSchemaVersionSummary]
|
|
6119
|
+
end
|
|
6120
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_job_schema_versions-instance_method
|
|
6121
|
+
def list_job_schema_versions: (
|
|
6122
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation"),
|
|
6123
|
+
?next_token: ::String,
|
|
6124
|
+
?max_results: ::Integer
|
|
6125
|
+
) -> _ListJobSchemaVersionsResponseSuccess
|
|
6126
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobSchemaVersionsResponseSuccess
|
|
6127
|
+
|
|
6128
|
+
interface _ListJobsResponseSuccess
|
|
6129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResponse]
|
|
6130
|
+
def next_token: () -> ::String
|
|
6131
|
+
def job_summaries: () -> ::Array[Types::JobSummary]
|
|
6132
|
+
end
|
|
6133
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_jobs-instance_method
|
|
6134
|
+
def list_jobs: (
|
|
6135
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation"),
|
|
6136
|
+
?next_token: ::String,
|
|
6137
|
+
?max_results: ::Integer,
|
|
6138
|
+
?creation_time_after: ::Time,
|
|
6139
|
+
?creation_time_before: ::Time,
|
|
6140
|
+
?last_modified_time_after: ::Time,
|
|
6141
|
+
?last_modified_time_before: ::Time,
|
|
6142
|
+
?name_contains: ::String,
|
|
6143
|
+
?sort_by: ("Name" | "CreationTime" | "Status"),
|
|
6144
|
+
?sort_order: ("Ascending" | "Descending"),
|
|
6145
|
+
?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
|
|
6146
|
+
) -> _ListJobsResponseSuccess
|
|
6147
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsResponseSuccess
|
|
6148
|
+
|
|
6046
6149
|
interface _ListLabelingJobsResponseSuccess
|
|
6047
6150
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListLabelingJobsResponse]
|
|
6048
6151
|
def labeling_job_summary_list: () -> ::Array[Types::LabelingJobSummary]
|
|
@@ -7192,6 +7295,16 @@ module Aws
|
|
|
7192
7295
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
7193
7296
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
7194
7297
|
|
|
7298
|
+
interface _StopJobResponseSuccess
|
|
7299
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopJobResponse]
|
|
7300
|
+
end
|
|
7301
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_job-instance_method
|
|
7302
|
+
def stop_job: (
|
|
7303
|
+
job_name: ::String,
|
|
7304
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation")
|
|
7305
|
+
) -> _StopJobResponseSuccess
|
|
7306
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopJobResponseSuccess
|
|
7307
|
+
|
|
7195
7308
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_labeling_job-instance_method
|
|
7196
7309
|
def stop_labeling_job: (
|
|
7197
7310
|
labeling_job_name: ::String
|
|
@@ -7308,6 +7421,7 @@ module Aws
|
|
|
7308
7421
|
?restricted_instance_groups: Array[
|
|
7309
7422
|
Params::cluster_restricted_instance_group_specification
|
|
7310
7423
|
],
|
|
7424
|
+
?restricted_instance_groups_config: Params::cluster_restricted_instance_groups_config,
|
|
7311
7425
|
?tiered_storage_config: {
|
|
7312
7426
|
mode: ("Enable" | "Disable"),
|
|
7313
7427
|
instance_memory_allocation_percentage: ::Integer?
|
data/sig/params.rbs
CHANGED
|
@@ -348,6 +348,16 @@ module Aws
|
|
|
348
348
|
}?
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
+
type cluster_restricted_instance_groups_config = {
|
|
352
|
+
shared_environment_config: {
|
|
353
|
+
f_sx_lustre_deletion_policy: ("DeleteIfNotUsed" | "Keep"),
|
|
354
|
+
f_sx_lustre_config: {
|
|
355
|
+
size_in_gi_b: ::Integer,
|
|
356
|
+
per_unit_storage_throughput: ::Integer
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
351
361
|
type cluster_orchestrator = {
|
|
352
362
|
eks: {
|
|
353
363
|
cluster_arn: ::String
|
data/sig/types.rbs
CHANGED
|
@@ -107,7 +107,7 @@ module Aws::SageMaker
|
|
|
107
107
|
end
|
|
108
108
|
|
|
109
109
|
class AIRecommendationComputeSpec
|
|
110
|
-
attr_accessor 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")]
|
|
110
|
+
attr_accessor 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" | "ml.p6-b200.48xlarge")]
|
|
111
111
|
attr_accessor capacity_reservation_config: Types::AICapacityReservationConfig
|
|
112
112
|
SENSITIVE: []
|
|
113
113
|
end
|
|
@@ -120,7 +120,7 @@ module Aws::SageMaker
|
|
|
120
120
|
class AIRecommendationDeploymentConfiguration
|
|
121
121
|
attr_accessor s3: ::Array[Types::AIRecommendationDeploymentS3Channel]
|
|
122
122
|
attr_accessor image_uri: ::String
|
|
123
|
-
attr_accessor instance_type: ("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")
|
|
123
|
+
attr_accessor instance_type: ("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" | "ml.p6-b200.48xlarge")
|
|
124
124
|
attr_accessor instance_count: ::Integer
|
|
125
125
|
attr_accessor copy_count_per_instance: ::Integer
|
|
126
126
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
@@ -139,7 +139,7 @@ module Aws::SageMaker
|
|
|
139
139
|
end
|
|
140
140
|
|
|
141
141
|
class AIRecommendationInstanceDetail
|
|
142
|
-
attr_accessor instance_type: ("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")
|
|
142
|
+
attr_accessor instance_type: ("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" | "ml.p6-b200.48xlarge")
|
|
143
143
|
attr_accessor instance_count: ::Integer
|
|
144
144
|
attr_accessor copy_count_per_instance: ::Integer
|
|
145
145
|
SENSITIVE: []
|
|
@@ -1480,6 +1480,16 @@ module Aws::SageMaker
|
|
|
1480
1480
|
SENSITIVE: []
|
|
1481
1481
|
end
|
|
1482
1482
|
|
|
1483
|
+
class ClusterRestrictedInstanceGroupsConfig
|
|
1484
|
+
attr_accessor shared_environment_config: Types::ClusterSharedEnvironmentConfig
|
|
1485
|
+
SENSITIVE: []
|
|
1486
|
+
end
|
|
1487
|
+
|
|
1488
|
+
class ClusterRestrictedInstanceGroupsConfigOutput
|
|
1489
|
+
attr_accessor shared_environment_config: Types::ClusterSharedEnvironmentConfigDetails
|
|
1490
|
+
SENSITIVE: []
|
|
1491
|
+
end
|
|
1492
|
+
|
|
1483
1493
|
class ClusterSchedulerConfigSummary
|
|
1484
1494
|
attr_accessor cluster_scheduler_config_arn: ::String
|
|
1485
1495
|
attr_accessor cluster_scheduler_config_id: ::String
|
|
@@ -1492,6 +1502,20 @@ module Aws::SageMaker
|
|
|
1492
1502
|
SENSITIVE: []
|
|
1493
1503
|
end
|
|
1494
1504
|
|
|
1505
|
+
class ClusterSharedEnvironmentConfig
|
|
1506
|
+
attr_accessor f_sx_lustre_deletion_policy: ("DeleteIfNotUsed" | "Keep")
|
|
1507
|
+
attr_accessor f_sx_lustre_config: Types::FSxLustreConfig
|
|
1508
|
+
SENSITIVE: []
|
|
1509
|
+
end
|
|
1510
|
+
|
|
1511
|
+
class ClusterSharedEnvironmentConfigDetails
|
|
1512
|
+
attr_accessor current_f_sx_lustre_config: Types::FSxLustreConfig
|
|
1513
|
+
attr_accessor desired_f_sx_lustre_config: Types::FSxLustreConfig
|
|
1514
|
+
attr_accessor current_f_sx_lustre_deletion_policy: ("DeleteIfNotUsed" | "Keep")
|
|
1515
|
+
attr_accessor desired_f_sx_lustre_deletion_policy: ("DeleteIfNotUsed" | "Keep")
|
|
1516
|
+
SENSITIVE: []
|
|
1517
|
+
end
|
|
1518
|
+
|
|
1495
1519
|
class ClusterSlurmConfig
|
|
1496
1520
|
attr_accessor node_type: ("Controller" | "Login" | "Compute")
|
|
1497
1521
|
attr_accessor partition_names: ::Array[::String]
|
|
@@ -1872,6 +1896,7 @@ module Aws::SageMaker
|
|
|
1872
1896
|
attr_accessor cluster_name: ::String
|
|
1873
1897
|
attr_accessor instance_groups: ::Array[Types::ClusterInstanceGroupSpecification]
|
|
1874
1898
|
attr_accessor restricted_instance_groups: ::Array[Types::ClusterRestrictedInstanceGroupSpecification]
|
|
1899
|
+
attr_accessor restricted_instance_groups_config: Types::ClusterRestrictedInstanceGroupsConfig
|
|
1875
1900
|
attr_accessor vpc_config: Types::VpcConfig
|
|
1876
1901
|
attr_accessor tags: ::Array[Types::Tag]
|
|
1877
1902
|
attr_accessor orchestrator: Types::ClusterOrchestrator
|
|
@@ -2294,6 +2319,21 @@ module Aws::SageMaker
|
|
|
2294
2319
|
SENSITIVE: []
|
|
2295
2320
|
end
|
|
2296
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
|
+
|
|
2297
2337
|
class CreateLabelingJobRequest
|
|
2298
2338
|
attr_accessor labeling_job_name: ::String
|
|
2299
2339
|
attr_accessor label_attribute_name: ::String
|
|
@@ -3321,6 +3361,15 @@ module Aws::SageMaker
|
|
|
3321
3361
|
SENSITIVE: []
|
|
3322
3362
|
end
|
|
3323
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
|
+
|
|
3324
3373
|
class DeleteMlflowAppRequest
|
|
3325
3374
|
attr_accessor arn: ::String
|
|
3326
3375
|
SENSITIVE: []
|
|
@@ -3822,6 +3871,7 @@ module Aws::SageMaker
|
|
|
3822
3871
|
attr_accessor failure_message: ::String
|
|
3823
3872
|
attr_accessor instance_groups: ::Array[Types::ClusterInstanceGroupDetails]
|
|
3824
3873
|
attr_accessor restricted_instance_groups: ::Array[Types::ClusterRestrictedInstanceGroupDetails]
|
|
3874
|
+
attr_accessor restricted_instance_groups_config: Types::ClusterRestrictedInstanceGroupsConfigOutput
|
|
3825
3875
|
attr_accessor vpc_config: Types::VpcConfig
|
|
3826
3876
|
attr_accessor orchestrator: Types::ClusterOrchestrator
|
|
3827
3877
|
attr_accessor tiered_storage_config: Types::ClusterTieredStorageConfig
|
|
@@ -4416,6 +4466,43 @@ module Aws::SageMaker
|
|
|
4416
4466
|
SENSITIVE: []
|
|
4417
4467
|
end
|
|
4418
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
|
+
|
|
4419
4506
|
class DescribeLabelingJobRequest
|
|
4420
4507
|
attr_accessor labeling_job_name: ::String
|
|
4421
4508
|
SENSITIVE: []
|
|
@@ -6640,6 +6727,36 @@ module Aws::SageMaker
|
|
|
6640
6727
|
SENSITIVE: []
|
|
6641
6728
|
end
|
|
6642
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
|
+
|
|
6643
6760
|
class JupyterLabAppImageConfig
|
|
6644
6761
|
attr_accessor file_system_config: Types::FileSystemConfig
|
|
6645
6762
|
attr_accessor container_config: Types::ContainerConfig
|
|
@@ -7590,6 +7707,40 @@ module Aws::SageMaker
|
|
|
7590
7707
|
SENSITIVE: []
|
|
7591
7708
|
end
|
|
7592
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
|
+
|
|
7593
7744
|
class ListLabelingJobsForWorkteamRequest
|
|
7594
7745
|
attr_accessor workteam_arn: ::String
|
|
7595
7746
|
attr_accessor max_results: ::Integer
|
|
@@ -9600,6 +9751,7 @@ module Aws::SageMaker
|
|
|
9600
9751
|
attr_accessor bedrock_model_import: Types::BedrockModelImportMetadata
|
|
9601
9752
|
attr_accessor inference_component: Types::InferenceComponentMetadata
|
|
9602
9753
|
attr_accessor lineage: Types::LineageMetadata
|
|
9754
|
+
attr_accessor job: Types::JobStepMetadata
|
|
9603
9755
|
SENSITIVE: []
|
|
9604
9756
|
end
|
|
9605
9757
|
|
|
@@ -10240,6 +10392,7 @@ module Aws::SageMaker
|
|
|
10240
10392
|
attr_accessor total_instance_count: ::Integer
|
|
10241
10393
|
attr_accessor status: ("Pending" | "Active" | "Scheduled" | "Expired" | "Failed")
|
|
10242
10394
|
attr_accessor availability_zone: ::String
|
|
10395
|
+
attr_accessor availability_zone_id: ::String
|
|
10243
10396
|
attr_accessor duration_hours: ::Integer
|
|
10244
10397
|
attr_accessor duration_minutes: ::Integer
|
|
10245
10398
|
attr_accessor start_time: ::Time
|
|
@@ -10861,6 +11014,15 @@ module Aws::SageMaker
|
|
|
10861
11014
|
SENSITIVE: []
|
|
10862
11015
|
end
|
|
10863
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
|
+
|
|
10864
11026
|
class StopLabelingJobRequest
|
|
10865
11027
|
attr_accessor labeling_job_name: ::String
|
|
10866
11028
|
SENSITIVE: []
|
|
@@ -11640,6 +11802,7 @@ module Aws::SageMaker
|
|
|
11640
11802
|
attr_accessor cluster_name: ::String
|
|
11641
11803
|
attr_accessor instance_groups: ::Array[Types::ClusterInstanceGroupSpecification]
|
|
11642
11804
|
attr_accessor restricted_instance_groups: ::Array[Types::ClusterRestrictedInstanceGroupSpecification]
|
|
11805
|
+
attr_accessor restricted_instance_groups_config: Types::ClusterRestrictedInstanceGroupsConfig
|
|
11643
11806
|
attr_accessor tiered_storage_config: Types::ClusterTieredStorageConfig
|
|
11644
11807
|
attr_accessor node_recovery: ("Automatic" | "None")
|
|
11645
11808
|
attr_accessor instance_groups_to_delete: ::Array[::String]
|