aws-sdk-sagemaker 1.353.0 → 1.354.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +123 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +80 -0
- data/lib/aws-sdk-sagemaker/types.rb +208 -3
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +26 -1
- data/sig/types.rbs +53 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b31ce4da46a108aa4c8c41b2b5f635fa04c56569eff02010ea00a12db0f7421
|
|
4
|
+
data.tar.gz: c1066466d28b74579d7ea03e819a9c9dea76133624f398449549149730cf2f99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce840f7b09da1f439afc881dd00dd461468a73b098fcfb181445525beda6b54589eb286095be29de87d93c7d00d837cb601498efbd1f33c6f25f07fec5af0489
|
|
7
|
+
data.tar.gz: 2c93b24db44e923005c65f309c427cefd94ed281d2d06b131b434521b4554c5a37d1877cb14f5275734a1d951f29116941e5a749303a28e0faeb9fa00f0c552c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.354.0 (2026-03-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - SageMaker training plans allow you to extend your existing training plans to avoid workload interruptions without workload reconfiguration. When a training plan is approaching expiration, you can extend it directly through the SageMaker AI console or programmatically using the API or AWS CLI.
|
|
8
|
+
|
|
4
9
|
1.353.0 (2026-03-05)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.354.0
|
|
@@ -19148,6 +19148,60 @@ module Aws::SageMaker
|
|
|
19148
19148
|
req.send_request(options)
|
|
19149
19149
|
end
|
|
19150
19150
|
|
|
19151
|
+
# Retrieves the extension history for a specified training plan. The
|
|
19152
|
+
# response includes details about each extension, such as the offering
|
|
19153
|
+
# ID, start and end dates, status, payment status, and cost information.
|
|
19154
|
+
#
|
|
19155
|
+
# @option params [required, String] :training_plan_arn
|
|
19156
|
+
# The Amazon Resource Name (ARN); of the training plan to retrieve
|
|
19157
|
+
# extension history for.
|
|
19158
|
+
#
|
|
19159
|
+
# @option params [String] :next_token
|
|
19160
|
+
# A token to continue pagination if more results are available.
|
|
19161
|
+
#
|
|
19162
|
+
# @option params [Integer] :max_results
|
|
19163
|
+
# The maximum number of extensions to return in the response.
|
|
19164
|
+
#
|
|
19165
|
+
# @return [Types::DescribeTrainingPlanExtensionHistoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19166
|
+
#
|
|
19167
|
+
# * {Types::DescribeTrainingPlanExtensionHistoryResponse#training_plan_extensions #training_plan_extensions} => Array<Types::TrainingPlanExtension>
|
|
19168
|
+
# * {Types::DescribeTrainingPlanExtensionHistoryResponse#next_token #next_token} => String
|
|
19169
|
+
#
|
|
19170
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
19171
|
+
#
|
|
19172
|
+
# @example Request syntax with placeholder values
|
|
19173
|
+
#
|
|
19174
|
+
# resp = client.describe_training_plan_extension_history({
|
|
19175
|
+
# training_plan_arn: "TrainingPlanArn", # required
|
|
19176
|
+
# next_token: "NextToken",
|
|
19177
|
+
# max_results: 1,
|
|
19178
|
+
# })
|
|
19179
|
+
#
|
|
19180
|
+
# @example Response structure
|
|
19181
|
+
#
|
|
19182
|
+
# resp.training_plan_extensions #=> Array
|
|
19183
|
+
# resp.training_plan_extensions[0].training_plan_extension_offering_id #=> String
|
|
19184
|
+
# resp.training_plan_extensions[0].extended_at #=> Time
|
|
19185
|
+
# resp.training_plan_extensions[0].start_date #=> Time
|
|
19186
|
+
# resp.training_plan_extensions[0].end_date #=> Time
|
|
19187
|
+
# resp.training_plan_extensions[0].status #=> String
|
|
19188
|
+
# resp.training_plan_extensions[0].payment_status #=> String
|
|
19189
|
+
# resp.training_plan_extensions[0].availability_zone #=> String
|
|
19190
|
+
# resp.training_plan_extensions[0].availability_zone_id #=> String
|
|
19191
|
+
# resp.training_plan_extensions[0].duration_hours #=> Integer
|
|
19192
|
+
# resp.training_plan_extensions[0].upfront_fee #=> String
|
|
19193
|
+
# resp.training_plan_extensions[0].currency_code #=> String
|
|
19194
|
+
# resp.next_token #=> String
|
|
19195
|
+
#
|
|
19196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingPlanExtensionHistory AWS API Documentation
|
|
19197
|
+
#
|
|
19198
|
+
# @overload describe_training_plan_extension_history(params = {})
|
|
19199
|
+
# @param [Hash] params ({})
|
|
19200
|
+
def describe_training_plan_extension_history(params = {}, options = {})
|
|
19201
|
+
req = build_request(:describe_training_plan_extension_history, params)
|
|
19202
|
+
req.send_request(options)
|
|
19203
|
+
end
|
|
19204
|
+
|
|
19151
19205
|
# Returns information about a transform job.
|
|
19152
19206
|
#
|
|
19153
19207
|
# @option params [required, String] :transform_job_name
|
|
@@ -19809,6 +19863,57 @@ module Aws::SageMaker
|
|
|
19809
19863
|
req.send_request(options)
|
|
19810
19864
|
end
|
|
19811
19865
|
|
|
19866
|
+
# Extends an existing training plan by purchasing an extension offering.
|
|
19867
|
+
# This allows you to add additional compute capacity time to your
|
|
19868
|
+
# training plan without creating a new plan or reconfiguring your
|
|
19869
|
+
# workloads.
|
|
19870
|
+
#
|
|
19871
|
+
# To find available extension offerings, use the `
|
|
19872
|
+
# SearchTrainingPlanOfferings ` API with the `TrainingPlanArn`
|
|
19873
|
+
# parameter.
|
|
19874
|
+
#
|
|
19875
|
+
# To view the history of extensions for a training plan, use the `
|
|
19876
|
+
# DescribeTrainingPlanExtensionHistory ` API.
|
|
19877
|
+
#
|
|
19878
|
+
# @option params [required, String] :training_plan_extension_offering_id
|
|
19879
|
+
# The unique identifier of the extension offering to purchase. You can
|
|
19880
|
+
# retrieve this ID from the `TrainingPlanExtensionOfferings` in the
|
|
19881
|
+
# response of the `SearchTrainingPlanOfferings` API.
|
|
19882
|
+
#
|
|
19883
|
+
# @return [Types::ExtendTrainingPlanResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19884
|
+
#
|
|
19885
|
+
# * {Types::ExtendTrainingPlanResponse#training_plan_extensions #training_plan_extensions} => Array<Types::TrainingPlanExtension>
|
|
19886
|
+
#
|
|
19887
|
+
# @example Request syntax with placeholder values
|
|
19888
|
+
#
|
|
19889
|
+
# resp = client.extend_training_plan({
|
|
19890
|
+
# training_plan_extension_offering_id: "TrainingPlanExtensionOfferingId", # required
|
|
19891
|
+
# })
|
|
19892
|
+
#
|
|
19893
|
+
# @example Response structure
|
|
19894
|
+
#
|
|
19895
|
+
# resp.training_plan_extensions #=> Array
|
|
19896
|
+
# resp.training_plan_extensions[0].training_plan_extension_offering_id #=> String
|
|
19897
|
+
# resp.training_plan_extensions[0].extended_at #=> Time
|
|
19898
|
+
# resp.training_plan_extensions[0].start_date #=> Time
|
|
19899
|
+
# resp.training_plan_extensions[0].end_date #=> Time
|
|
19900
|
+
# resp.training_plan_extensions[0].status #=> String
|
|
19901
|
+
# resp.training_plan_extensions[0].payment_status #=> String
|
|
19902
|
+
# resp.training_plan_extensions[0].availability_zone #=> String
|
|
19903
|
+
# resp.training_plan_extensions[0].availability_zone_id #=> String
|
|
19904
|
+
# resp.training_plan_extensions[0].duration_hours #=> Integer
|
|
19905
|
+
# resp.training_plan_extensions[0].upfront_fee #=> String
|
|
19906
|
+
# resp.training_plan_extensions[0].currency_code #=> String
|
|
19907
|
+
#
|
|
19908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ExtendTrainingPlan AWS API Documentation
|
|
19909
|
+
#
|
|
19910
|
+
# @overload extend_training_plan(params = {})
|
|
19911
|
+
# @param [Hash] params ({})
|
|
19912
|
+
def extend_training_plan(params = {}, options = {})
|
|
19913
|
+
req = build_request(:extend_training_plan, params)
|
|
19914
|
+
req.send_request(options)
|
|
19915
|
+
end
|
|
19916
|
+
|
|
19812
19917
|
# Describes a fleet.
|
|
19813
19918
|
#
|
|
19814
19919
|
# @option params [required, String] :device_fleet_name
|
|
@@ -27320,9 +27425,15 @@ module Aws::SageMaker
|
|
|
27320
27425
|
# provide compute resources to SageMaker endpoints for model
|
|
27321
27426
|
# deployment.
|
|
27322
27427
|
#
|
|
27428
|
+
# @option params [String] :training_plan_arn
|
|
27429
|
+
# The Amazon Resource Name (ARN); of an existing training plan to search
|
|
27430
|
+
# for extension offerings. When specified, the API returns extension
|
|
27431
|
+
# offerings that can be used to extend the specified training plan.
|
|
27432
|
+
#
|
|
27323
27433
|
# @return [Types::SearchTrainingPlanOfferingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
27324
27434
|
#
|
|
27325
27435
|
# * {Types::SearchTrainingPlanOfferingsResponse#training_plan_offerings #training_plan_offerings} => Array<Types::TrainingPlanOffering>
|
|
27436
|
+
# * {Types::SearchTrainingPlanOfferingsResponse#training_plan_extension_offerings #training_plan_extension_offerings} => Array<Types::TrainingPlanExtensionOffering>
|
|
27326
27437
|
#
|
|
27327
27438
|
# @example Request syntax with placeholder values
|
|
27328
27439
|
#
|
|
@@ -27335,6 +27446,7 @@ module Aws::SageMaker
|
|
|
27335
27446
|
# end_time_before: Time.now,
|
|
27336
27447
|
# duration_hours: 1,
|
|
27337
27448
|
# target_resources: ["training-job"], # accepts training-job, hyperpod-cluster, endpoint
|
|
27449
|
+
# training_plan_arn: "String",
|
|
27338
27450
|
# })
|
|
27339
27451
|
#
|
|
27340
27452
|
# @example Response structure
|
|
@@ -27360,6 +27472,16 @@ module Aws::SageMaker
|
|
|
27360
27472
|
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].duration_minutes #=> Integer
|
|
27361
27473
|
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].start_time #=> Time
|
|
27362
27474
|
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].end_time #=> Time
|
|
27475
|
+
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].extension_start_time #=> Time
|
|
27476
|
+
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].extension_end_time #=> Time
|
|
27477
|
+
# resp.training_plan_extension_offerings #=> Array
|
|
27478
|
+
# resp.training_plan_extension_offerings[0].training_plan_extension_offering_id #=> String
|
|
27479
|
+
# resp.training_plan_extension_offerings[0].availability_zone #=> String
|
|
27480
|
+
# resp.training_plan_extension_offerings[0].start_date #=> Time
|
|
27481
|
+
# resp.training_plan_extension_offerings[0].end_date #=> Time
|
|
27482
|
+
# resp.training_plan_extension_offerings[0].duration_hours #=> Integer
|
|
27483
|
+
# resp.training_plan_extension_offerings[0].upfront_fee #=> String
|
|
27484
|
+
# resp.training_plan_extension_offerings[0].currency_code #=> String
|
|
27363
27485
|
#
|
|
27364
27486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchTrainingPlanOfferings AWS API Documentation
|
|
27365
27487
|
#
|
|
@@ -32373,7 +32495,7 @@ module Aws::SageMaker
|
|
|
32373
32495
|
tracer: tracer
|
|
32374
32496
|
)
|
|
32375
32497
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
32376
|
-
context[:gem_version] = '1.
|
|
32498
|
+
context[:gem_version] = '1.354.0'
|
|
32377
32499
|
Seahorse::Client::Request.new(handlers, context)
|
|
32378
32500
|
end
|
|
32379
32501
|
|
|
@@ -194,6 +194,7 @@ module Aws::SageMaker
|
|
|
194
194
|
Autotune = Shapes::StructureShape.new(name: 'Autotune')
|
|
195
195
|
AutotuneMode = Shapes::StringShape.new(name: 'AutotuneMode')
|
|
196
196
|
AvailabilityZone = Shapes::StringShape.new(name: 'AvailabilityZone')
|
|
197
|
+
AvailabilityZoneId = Shapes::StringShape.new(name: 'AvailabilityZoneId')
|
|
197
198
|
AvailableInstanceCount = Shapes::IntegerShape.new(name: 'AvailableInstanceCount')
|
|
198
199
|
AvailableSpareInstanceCount = Shapes::IntegerShape.new(name: 'AvailableSpareInstanceCount')
|
|
199
200
|
AvailableUpgrade = Shapes::StructureShape.new(name: 'AvailableUpgrade')
|
|
@@ -913,6 +914,8 @@ module Aws::SageMaker
|
|
|
913
914
|
DescribeSubscribedWorkteamResponse = Shapes::StructureShape.new(name: 'DescribeSubscribedWorkteamResponse')
|
|
914
915
|
DescribeTrainingJobRequest = Shapes::StructureShape.new(name: 'DescribeTrainingJobRequest')
|
|
915
916
|
DescribeTrainingJobResponse = Shapes::StructureShape.new(name: 'DescribeTrainingJobResponse')
|
|
917
|
+
DescribeTrainingPlanExtensionHistoryRequest = Shapes::StructureShape.new(name: 'DescribeTrainingPlanExtensionHistoryRequest')
|
|
918
|
+
DescribeTrainingPlanExtensionHistoryResponse = Shapes::StructureShape.new(name: 'DescribeTrainingPlanExtensionHistoryResponse')
|
|
916
919
|
DescribeTrainingPlanRequest = Shapes::StructureShape.new(name: 'DescribeTrainingPlanRequest')
|
|
917
920
|
DescribeTrainingPlanResponse = Shapes::StructureShape.new(name: 'DescribeTrainingPlanResponse')
|
|
918
921
|
DescribeTransformJobRequest = Shapes::StructureShape.new(name: 'DescribeTransformJobRequest')
|
|
@@ -1097,6 +1100,8 @@ module Aws::SageMaker
|
|
|
1097
1100
|
Explainability = Shapes::StructureShape.new(name: 'Explainability')
|
|
1098
1101
|
ExplainabilityLocation = Shapes::StringShape.new(name: 'ExplainabilityLocation')
|
|
1099
1102
|
ExplainerConfig = Shapes::StructureShape.new(name: 'ExplainerConfig')
|
|
1103
|
+
ExtendTrainingPlanRequest = Shapes::StructureShape.new(name: 'ExtendTrainingPlanRequest')
|
|
1104
|
+
ExtendTrainingPlanResponse = Shapes::StructureShape.new(name: 'ExtendTrainingPlanResponse')
|
|
1100
1105
|
FSxLustreConfig = Shapes::StructureShape.new(name: 'FSxLustreConfig')
|
|
1101
1106
|
FSxLustreFileSystem = Shapes::StructureShape.new(name: 'FSxLustreFileSystem')
|
|
1102
1107
|
FSxLustreFileSystemConfig = Shapes::StructureShape.new(name: 'FSxLustreFileSystemConfig')
|
|
@@ -2579,6 +2584,12 @@ module Aws::SageMaker
|
|
|
2579
2584
|
TrainingPlanDurationHours = Shapes::IntegerShape.new(name: 'TrainingPlanDurationHours')
|
|
2580
2585
|
TrainingPlanDurationHoursInput = Shapes::IntegerShape.new(name: 'TrainingPlanDurationHoursInput')
|
|
2581
2586
|
TrainingPlanDurationMinutes = Shapes::IntegerShape.new(name: 'TrainingPlanDurationMinutes')
|
|
2587
|
+
TrainingPlanExtension = Shapes::StructureShape.new(name: 'TrainingPlanExtension')
|
|
2588
|
+
TrainingPlanExtensionDurationHours = Shapes::IntegerShape.new(name: 'TrainingPlanExtensionDurationHours')
|
|
2589
|
+
TrainingPlanExtensionOffering = Shapes::StructureShape.new(name: 'TrainingPlanExtensionOffering')
|
|
2590
|
+
TrainingPlanExtensionOfferingId = Shapes::StringShape.new(name: 'TrainingPlanExtensionOfferingId')
|
|
2591
|
+
TrainingPlanExtensionOfferings = Shapes::ListShape.new(name: 'TrainingPlanExtensionOfferings')
|
|
2592
|
+
TrainingPlanExtensions = Shapes::ListShape.new(name: 'TrainingPlanExtensions')
|
|
2582
2593
|
TrainingPlanFilter = Shapes::StructureShape.new(name: 'TrainingPlanFilter')
|
|
2583
2594
|
TrainingPlanFilterName = Shapes::StringShape.new(name: 'TrainingPlanFilterName')
|
|
2584
2595
|
TrainingPlanFilters = Shapes::ListShape.new(name: 'TrainingPlanFilters')
|
|
@@ -6572,6 +6583,15 @@ module Aws::SageMaker
|
|
|
6572
6583
|
DescribeTrainingJobResponse.add_member(:output_model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, location_name: "OutputModelPackageArn"))
|
|
6573
6584
|
DescribeTrainingJobResponse.struct_class = Types::DescribeTrainingJobResponse
|
|
6574
6585
|
|
|
6586
|
+
DescribeTrainingPlanExtensionHistoryRequest.add_member(:training_plan_arn, Shapes::ShapeRef.new(shape: TrainingPlanArn, required: true, location_name: "TrainingPlanArn"))
|
|
6587
|
+
DescribeTrainingPlanExtensionHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
6588
|
+
DescribeTrainingPlanExtensionHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
6589
|
+
DescribeTrainingPlanExtensionHistoryRequest.struct_class = Types::DescribeTrainingPlanExtensionHistoryRequest
|
|
6590
|
+
|
|
6591
|
+
DescribeTrainingPlanExtensionHistoryResponse.add_member(:training_plan_extensions, Shapes::ShapeRef.new(shape: TrainingPlanExtensions, required: true, location_name: "TrainingPlanExtensions"))
|
|
6592
|
+
DescribeTrainingPlanExtensionHistoryResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
6593
|
+
DescribeTrainingPlanExtensionHistoryResponse.struct_class = Types::DescribeTrainingPlanExtensionHistoryResponse
|
|
6594
|
+
|
|
6575
6595
|
DescribeTrainingPlanRequest.add_member(:training_plan_name, Shapes::ShapeRef.new(shape: TrainingPlanName, required: true, location_name: "TrainingPlanName"))
|
|
6576
6596
|
DescribeTrainingPlanRequest.struct_class = Types::DescribeTrainingPlanRequest
|
|
6577
6597
|
|
|
@@ -7134,6 +7154,12 @@ module Aws::SageMaker
|
|
|
7134
7154
|
ExplainerConfig.add_member(:clarify_explainer_config, Shapes::ShapeRef.new(shape: ClarifyExplainerConfig, location_name: "ClarifyExplainerConfig"))
|
|
7135
7155
|
ExplainerConfig.struct_class = Types::ExplainerConfig
|
|
7136
7156
|
|
|
7157
|
+
ExtendTrainingPlanRequest.add_member(:training_plan_extension_offering_id, Shapes::ShapeRef.new(shape: TrainingPlanExtensionOfferingId, required: true, location_name: "TrainingPlanExtensionOfferingId"))
|
|
7158
|
+
ExtendTrainingPlanRequest.struct_class = Types::ExtendTrainingPlanRequest
|
|
7159
|
+
|
|
7160
|
+
ExtendTrainingPlanResponse.add_member(:training_plan_extensions, Shapes::ShapeRef.new(shape: TrainingPlanExtensions, required: true, location_name: "TrainingPlanExtensions"))
|
|
7161
|
+
ExtendTrainingPlanResponse.struct_class = Types::ExtendTrainingPlanResponse
|
|
7162
|
+
|
|
7137
7163
|
FSxLustreConfig.add_member(:size_in_gi_b, Shapes::ShapeRef.new(shape: FSxLustreSizeInGiB, required: true, location_name: "SizeInGiB"))
|
|
7138
7164
|
FSxLustreConfig.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: FSxLustrePerUnitStorageThroughput, required: true, location_name: "PerUnitStorageThroughput"))
|
|
7139
7165
|
FSxLustreConfig.struct_class = Types::FSxLustreConfig
|
|
@@ -10753,6 +10779,8 @@ module Aws::SageMaker
|
|
|
10753
10779
|
ReservedCapacityOffering.add_member(:duration_minutes, Shapes::ShapeRef.new(shape: ReservedCapacityDurationMinutes, location_name: "DurationMinutes"))
|
|
10754
10780
|
ReservedCapacityOffering.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
|
|
10755
10781
|
ReservedCapacityOffering.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTime"))
|
|
10782
|
+
ReservedCapacityOffering.add_member(:extension_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExtensionStartTime"))
|
|
10783
|
+
ReservedCapacityOffering.add_member(:extension_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExtensionEndTime"))
|
|
10756
10784
|
ReservedCapacityOffering.struct_class = Types::ReservedCapacityOffering
|
|
10757
10785
|
|
|
10758
10786
|
ReservedCapacityOfferings.member = Shapes::ShapeRef.new(shape: ReservedCapacityOffering)
|
|
@@ -10979,9 +11007,11 @@ module Aws::SageMaker
|
|
|
10979
11007
|
SearchTrainingPlanOfferingsRequest.add_member(:end_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTimeBefore"))
|
|
10980
11008
|
SearchTrainingPlanOfferingsRequest.add_member(:duration_hours, Shapes::ShapeRef.new(shape: TrainingPlanDurationHoursInput, location_name: "DurationHours"))
|
|
10981
11009
|
SearchTrainingPlanOfferingsRequest.add_member(:target_resources, Shapes::ShapeRef.new(shape: SageMakerResourceNames, location_name: "TargetResources"))
|
|
11010
|
+
SearchTrainingPlanOfferingsRequest.add_member(:training_plan_arn, Shapes::ShapeRef.new(shape: String, location_name: "TrainingPlanArn"))
|
|
10982
11011
|
SearchTrainingPlanOfferingsRequest.struct_class = Types::SearchTrainingPlanOfferingsRequest
|
|
10983
11012
|
|
|
10984
11013
|
SearchTrainingPlanOfferingsResponse.add_member(:training_plan_offerings, Shapes::ShapeRef.new(shape: TrainingPlanOfferings, required: true, location_name: "TrainingPlanOfferings"))
|
|
11014
|
+
SearchTrainingPlanOfferingsResponse.add_member(:training_plan_extension_offerings, Shapes::ShapeRef.new(shape: TrainingPlanExtensionOfferings, location_name: "TrainingPlanExtensionOfferings"))
|
|
10985
11015
|
SearchTrainingPlanOfferingsResponse.struct_class = Types::SearchTrainingPlanOfferingsResponse
|
|
10986
11016
|
|
|
10987
11017
|
SecondaryStatusTransition.add_member(:status, Shapes::ShapeRef.new(shape: SecondaryStatus, required: true, location_name: "Status"))
|
|
@@ -11497,6 +11527,32 @@ module Aws::SageMaker
|
|
|
11497
11527
|
|
|
11498
11528
|
TrainingPlanArns.member = Shapes::ShapeRef.new(shape: TrainingPlanArn)
|
|
11499
11529
|
|
|
11530
|
+
TrainingPlanExtension.add_member(:training_plan_extension_offering_id, Shapes::ShapeRef.new(shape: TrainingPlanExtensionOfferingId, required: true, location_name: "TrainingPlanExtensionOfferingId"))
|
|
11531
|
+
TrainingPlanExtension.add_member(:extended_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExtendedAt"))
|
|
11532
|
+
TrainingPlanExtension.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartDate"))
|
|
11533
|
+
TrainingPlanExtension.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndDate"))
|
|
11534
|
+
TrainingPlanExtension.add_member(:status, Shapes::ShapeRef.new(shape: String256, location_name: "Status"))
|
|
11535
|
+
TrainingPlanExtension.add_member(:payment_status, Shapes::ShapeRef.new(shape: String256, location_name: "PaymentStatus"))
|
|
11536
|
+
TrainingPlanExtension.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String256, location_name: "AvailabilityZone"))
|
|
11537
|
+
TrainingPlanExtension.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "AvailabilityZoneId"))
|
|
11538
|
+
TrainingPlanExtension.add_member(:duration_hours, Shapes::ShapeRef.new(shape: TrainingPlanExtensionDurationHours, location_name: "DurationHours"))
|
|
11539
|
+
TrainingPlanExtension.add_member(:upfront_fee, Shapes::ShapeRef.new(shape: String256, location_name: "UpfrontFee"))
|
|
11540
|
+
TrainingPlanExtension.add_member(:currency_code, Shapes::ShapeRef.new(shape: CurrencyCode, location_name: "CurrencyCode"))
|
|
11541
|
+
TrainingPlanExtension.struct_class = Types::TrainingPlanExtension
|
|
11542
|
+
|
|
11543
|
+
TrainingPlanExtensionOffering.add_member(:training_plan_extension_offering_id, Shapes::ShapeRef.new(shape: TrainingPlanExtensionOfferingId, required: true, location_name: "TrainingPlanExtensionOfferingId"))
|
|
11544
|
+
TrainingPlanExtensionOffering.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String256, location_name: "AvailabilityZone"))
|
|
11545
|
+
TrainingPlanExtensionOffering.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartDate"))
|
|
11546
|
+
TrainingPlanExtensionOffering.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndDate"))
|
|
11547
|
+
TrainingPlanExtensionOffering.add_member(:duration_hours, Shapes::ShapeRef.new(shape: TrainingPlanExtensionDurationHours, location_name: "DurationHours"))
|
|
11548
|
+
TrainingPlanExtensionOffering.add_member(:upfront_fee, Shapes::ShapeRef.new(shape: String256, location_name: "UpfrontFee"))
|
|
11549
|
+
TrainingPlanExtensionOffering.add_member(:currency_code, Shapes::ShapeRef.new(shape: CurrencyCode, location_name: "CurrencyCode"))
|
|
11550
|
+
TrainingPlanExtensionOffering.struct_class = Types::TrainingPlanExtensionOffering
|
|
11551
|
+
|
|
11552
|
+
TrainingPlanExtensionOfferings.member = Shapes::ShapeRef.new(shape: TrainingPlanExtensionOffering)
|
|
11553
|
+
|
|
11554
|
+
TrainingPlanExtensions.member = Shapes::ShapeRef.new(shape: TrainingPlanExtension)
|
|
11555
|
+
|
|
11500
11556
|
TrainingPlanFilter.add_member(:name, Shapes::ShapeRef.new(shape: TrainingPlanFilterName, required: true, location_name: "Name"))
|
|
11501
11557
|
TrainingPlanFilter.add_member(:value, Shapes::ShapeRef.new(shape: String64, required: true, location_name: "Value"))
|
|
11502
11558
|
TrainingPlanFilter.struct_class = Types::TrainingPlanFilter
|
|
@@ -14280,6 +14336,21 @@ module Aws::SageMaker
|
|
|
14280
14336
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
14281
14337
|
end)
|
|
14282
14338
|
|
|
14339
|
+
api.add_operation(:describe_training_plan_extension_history, Seahorse::Model::Operation.new.tap do |o|
|
|
14340
|
+
o.name = "DescribeTrainingPlanExtensionHistory"
|
|
14341
|
+
o.http_method = "POST"
|
|
14342
|
+
o.http_request_uri = "/"
|
|
14343
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeTrainingPlanExtensionHistoryRequest)
|
|
14344
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeTrainingPlanExtensionHistoryResponse)
|
|
14345
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
14346
|
+
o[:pager] = Aws::Pager.new(
|
|
14347
|
+
limit_key: "max_results",
|
|
14348
|
+
tokens: {
|
|
14349
|
+
"next_token" => "next_token"
|
|
14350
|
+
}
|
|
14351
|
+
)
|
|
14352
|
+
end)
|
|
14353
|
+
|
|
14283
14354
|
api.add_operation(:describe_transform_job, Seahorse::Model::Operation.new.tap do |o|
|
|
14284
14355
|
o.name = "DescribeTransformJob"
|
|
14285
14356
|
o.http_method = "POST"
|
|
@@ -14367,6 +14438,15 @@ module Aws::SageMaker
|
|
|
14367
14438
|
o.output = Shapes::ShapeRef.new(shape: EnableSagemakerServicecatalogPortfolioOutput)
|
|
14368
14439
|
end)
|
|
14369
14440
|
|
|
14441
|
+
api.add_operation(:extend_training_plan, Seahorse::Model::Operation.new.tap do |o|
|
|
14442
|
+
o.name = "ExtendTrainingPlan"
|
|
14443
|
+
o.http_method = "POST"
|
|
14444
|
+
o.http_request_uri = "/"
|
|
14445
|
+
o.input = Shapes::ShapeRef.new(shape: ExtendTrainingPlanRequest)
|
|
14446
|
+
o.output = Shapes::ShapeRef.new(shape: ExtendTrainingPlanResponse)
|
|
14447
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
14448
|
+
end)
|
|
14449
|
+
|
|
14370
14450
|
api.add_operation(:get_device_fleet_report, Seahorse::Model::Operation.new.tap do |o|
|
|
14371
14451
|
o.name = "GetDeviceFleetReport"
|
|
14372
14452
|
o.http_method = "POST"
|
|
@@ -21962,6 +21962,46 @@ module Aws::SageMaker
|
|
|
21962
21962
|
include Aws::Structure
|
|
21963
21963
|
end
|
|
21964
21964
|
|
|
21965
|
+
# @!attribute [rw] training_plan_arn
|
|
21966
|
+
# The Amazon Resource Name (ARN); of the training plan to retrieve
|
|
21967
|
+
# extension history for.
|
|
21968
|
+
# @return [String]
|
|
21969
|
+
#
|
|
21970
|
+
# @!attribute [rw] next_token
|
|
21971
|
+
# A token to continue pagination if more results are available.
|
|
21972
|
+
# @return [String]
|
|
21973
|
+
#
|
|
21974
|
+
# @!attribute [rw] max_results
|
|
21975
|
+
# The maximum number of extensions to return in the response.
|
|
21976
|
+
# @return [Integer]
|
|
21977
|
+
#
|
|
21978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingPlanExtensionHistoryRequest AWS API Documentation
|
|
21979
|
+
#
|
|
21980
|
+
class DescribeTrainingPlanExtensionHistoryRequest < Struct.new(
|
|
21981
|
+
:training_plan_arn,
|
|
21982
|
+
:next_token,
|
|
21983
|
+
:max_results)
|
|
21984
|
+
SENSITIVE = []
|
|
21985
|
+
include Aws::Structure
|
|
21986
|
+
end
|
|
21987
|
+
|
|
21988
|
+
# @!attribute [rw] training_plan_extensions
|
|
21989
|
+
# A list of extensions for the specified training plan.
|
|
21990
|
+
# @return [Array<Types::TrainingPlanExtension>]
|
|
21991
|
+
#
|
|
21992
|
+
# @!attribute [rw] next_token
|
|
21993
|
+
# A token to continue pagination if more results are available.
|
|
21994
|
+
# @return [String]
|
|
21995
|
+
#
|
|
21996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingPlanExtensionHistoryResponse AWS API Documentation
|
|
21997
|
+
#
|
|
21998
|
+
class DescribeTrainingPlanExtensionHistoryResponse < Struct.new(
|
|
21999
|
+
:training_plan_extensions,
|
|
22000
|
+
:next_token)
|
|
22001
|
+
SENSITIVE = []
|
|
22002
|
+
include Aws::Structure
|
|
22003
|
+
end
|
|
22004
|
+
|
|
21965
22005
|
# @!attribute [rw] training_plan_name
|
|
21966
22006
|
# The name of the training plan to describe.
|
|
21967
22007
|
# @return [String]
|
|
@@ -24767,6 +24807,33 @@ module Aws::SageMaker
|
|
|
24767
24807
|
include Aws::Structure
|
|
24768
24808
|
end
|
|
24769
24809
|
|
|
24810
|
+
# @!attribute [rw] training_plan_extension_offering_id
|
|
24811
|
+
# The unique identifier of the extension offering to purchase. You can
|
|
24812
|
+
# retrieve this ID from the `TrainingPlanExtensionOfferings` in the
|
|
24813
|
+
# response of the `SearchTrainingPlanOfferings` API.
|
|
24814
|
+
# @return [String]
|
|
24815
|
+
#
|
|
24816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ExtendTrainingPlanRequest AWS API Documentation
|
|
24817
|
+
#
|
|
24818
|
+
class ExtendTrainingPlanRequest < Struct.new(
|
|
24819
|
+
:training_plan_extension_offering_id)
|
|
24820
|
+
SENSITIVE = []
|
|
24821
|
+
include Aws::Structure
|
|
24822
|
+
end
|
|
24823
|
+
|
|
24824
|
+
# @!attribute [rw] training_plan_extensions
|
|
24825
|
+
# The list of extensions for the training plan, including the newly
|
|
24826
|
+
# created extension.
|
|
24827
|
+
# @return [Array<Types::TrainingPlanExtension>]
|
|
24828
|
+
#
|
|
24829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ExtendTrainingPlanResponse AWS API Documentation
|
|
24830
|
+
#
|
|
24831
|
+
class ExtendTrainingPlanResponse < Struct.new(
|
|
24832
|
+
:training_plan_extensions)
|
|
24833
|
+
SENSITIVE = []
|
|
24834
|
+
include Aws::Structure
|
|
24835
|
+
end
|
|
24836
|
+
|
|
24770
24837
|
# Configuration settings for an Amazon FSx for Lustre file system to be
|
|
24771
24838
|
# used with the cluster.
|
|
24772
24839
|
#
|
|
@@ -45812,6 +45879,14 @@ module Aws::SageMaker
|
|
|
45812
45879
|
# The end time of the reserved capacity offering.
|
|
45813
45880
|
# @return [Time]
|
|
45814
45881
|
#
|
|
45882
|
+
# @!attribute [rw] extension_start_time
|
|
45883
|
+
# The start time of the extension for the reserved capacity offering.
|
|
45884
|
+
# @return [Time]
|
|
45885
|
+
#
|
|
45886
|
+
# @!attribute [rw] extension_end_time
|
|
45887
|
+
# The end time of the extension for the reserved capacity offering.
|
|
45888
|
+
# @return [Time]
|
|
45889
|
+
#
|
|
45815
45890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ReservedCapacityOffering AWS API Documentation
|
|
45816
45891
|
#
|
|
45817
45892
|
class ReservedCapacityOffering < Struct.new(
|
|
@@ -45824,7 +45899,9 @@ module Aws::SageMaker
|
|
|
45824
45899
|
:duration_hours,
|
|
45825
45900
|
:duration_minutes,
|
|
45826
45901
|
:start_time,
|
|
45827
|
-
:end_time
|
|
45902
|
+
:end_time,
|
|
45903
|
+
:extension_start_time,
|
|
45904
|
+
:extension_end_time)
|
|
45828
45905
|
SENSITIVE = []
|
|
45829
45906
|
include Aws::Structure
|
|
45830
45907
|
end
|
|
@@ -47339,6 +47416,13 @@ module Aws::SageMaker
|
|
|
47339
47416
|
# deployment.
|
|
47340
47417
|
# @return [Array<String>]
|
|
47341
47418
|
#
|
|
47419
|
+
# @!attribute [rw] training_plan_arn
|
|
47420
|
+
# The Amazon Resource Name (ARN); of an existing training plan to
|
|
47421
|
+
# search for extension offerings. When specified, the API returns
|
|
47422
|
+
# extension offerings that can be used to extend the specified
|
|
47423
|
+
# training plan.
|
|
47424
|
+
# @return [String]
|
|
47425
|
+
#
|
|
47342
47426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchTrainingPlanOfferingsRequest AWS API Documentation
|
|
47343
47427
|
#
|
|
47344
47428
|
class SearchTrainingPlanOfferingsRequest < Struct.new(
|
|
@@ -47349,7 +47433,8 @@ module Aws::SageMaker
|
|
|
47349
47433
|
:start_time_after,
|
|
47350
47434
|
:end_time_before,
|
|
47351
47435
|
:duration_hours,
|
|
47352
|
-
:target_resources
|
|
47436
|
+
:target_resources,
|
|
47437
|
+
:training_plan_arn)
|
|
47353
47438
|
SENSITIVE = []
|
|
47354
47439
|
include Aws::Structure
|
|
47355
47440
|
end
|
|
@@ -47358,10 +47443,17 @@ module Aws::SageMaker
|
|
|
47358
47443
|
# A list of training plan offerings that match the search criteria.
|
|
47359
47444
|
# @return [Array<Types::TrainingPlanOffering>]
|
|
47360
47445
|
#
|
|
47446
|
+
# @!attribute [rw] training_plan_extension_offerings
|
|
47447
|
+
# A list of extension offerings available for the specified training
|
|
47448
|
+
# plan. These offerings can be used with the ` ExtendTrainingPlan `
|
|
47449
|
+
# API to extend an existing training plan.
|
|
47450
|
+
# @return [Array<Types::TrainingPlanExtensionOffering>]
|
|
47451
|
+
#
|
|
47361
47452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchTrainingPlanOfferingsResponse AWS API Documentation
|
|
47362
47453
|
#
|
|
47363
47454
|
class SearchTrainingPlanOfferingsResponse < Struct.new(
|
|
47364
|
-
:training_plan_offerings
|
|
47455
|
+
:training_plan_offerings,
|
|
47456
|
+
:training_plan_extension_offerings)
|
|
47365
47457
|
SENSITIVE = []
|
|
47366
47458
|
include Aws::Structure
|
|
47367
47459
|
end
|
|
@@ -50615,6 +50707,119 @@ module Aws::SageMaker
|
|
|
50615
50707
|
include Aws::Structure
|
|
50616
50708
|
end
|
|
50617
50709
|
|
|
50710
|
+
# Details about an extension to a training plan, including the offering
|
|
50711
|
+
# ID, dates, status, and cost information.
|
|
50712
|
+
#
|
|
50713
|
+
# @!attribute [rw] training_plan_extension_offering_id
|
|
50714
|
+
# The unique identifier of the extension offering that was used to
|
|
50715
|
+
# create this extension.
|
|
50716
|
+
# @return [String]
|
|
50717
|
+
#
|
|
50718
|
+
# @!attribute [rw] extended_at
|
|
50719
|
+
# The timestamp when the extension was created.
|
|
50720
|
+
# @return [Time]
|
|
50721
|
+
#
|
|
50722
|
+
# @!attribute [rw] start_date
|
|
50723
|
+
# The start date of the extension period.
|
|
50724
|
+
# @return [Time]
|
|
50725
|
+
#
|
|
50726
|
+
# @!attribute [rw] end_date
|
|
50727
|
+
# The end date of the extension period.
|
|
50728
|
+
# @return [Time]
|
|
50729
|
+
#
|
|
50730
|
+
# @!attribute [rw] status
|
|
50731
|
+
# The current status of the extension (e.g., Pending, Active,
|
|
50732
|
+
# Scheduled, Failed, Expired).
|
|
50733
|
+
# @return [String]
|
|
50734
|
+
#
|
|
50735
|
+
# @!attribute [rw] payment_status
|
|
50736
|
+
# The payment processing status of the extension.
|
|
50737
|
+
# @return [String]
|
|
50738
|
+
#
|
|
50739
|
+
# @!attribute [rw] availability_zone
|
|
50740
|
+
# The Availability Zone of the extension.
|
|
50741
|
+
# @return [String]
|
|
50742
|
+
#
|
|
50743
|
+
# @!attribute [rw] availability_zone_id
|
|
50744
|
+
# The Availability Zone ID of the extension.
|
|
50745
|
+
# @return [String]
|
|
50746
|
+
#
|
|
50747
|
+
# @!attribute [rw] duration_hours
|
|
50748
|
+
# The duration of the extension in hours.
|
|
50749
|
+
# @return [Integer]
|
|
50750
|
+
#
|
|
50751
|
+
# @!attribute [rw] upfront_fee
|
|
50752
|
+
# The upfront fee for the extension.
|
|
50753
|
+
# @return [String]
|
|
50754
|
+
#
|
|
50755
|
+
# @!attribute [rw] currency_code
|
|
50756
|
+
# The currency code for the upfront fee (e.g., USD).
|
|
50757
|
+
# @return [String]
|
|
50758
|
+
#
|
|
50759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrainingPlanExtension AWS API Documentation
|
|
50760
|
+
#
|
|
50761
|
+
class TrainingPlanExtension < Struct.new(
|
|
50762
|
+
:training_plan_extension_offering_id,
|
|
50763
|
+
:extended_at,
|
|
50764
|
+
:start_date,
|
|
50765
|
+
:end_date,
|
|
50766
|
+
:status,
|
|
50767
|
+
:payment_status,
|
|
50768
|
+
:availability_zone,
|
|
50769
|
+
:availability_zone_id,
|
|
50770
|
+
:duration_hours,
|
|
50771
|
+
:upfront_fee,
|
|
50772
|
+
:currency_code)
|
|
50773
|
+
SENSITIVE = []
|
|
50774
|
+
include Aws::Structure
|
|
50775
|
+
end
|
|
50776
|
+
|
|
50777
|
+
# Details about an available extension offering for a training plan. Use
|
|
50778
|
+
# the offering ID with the ` ExtendTrainingPlan ` API to extend a
|
|
50779
|
+
# training plan.
|
|
50780
|
+
#
|
|
50781
|
+
# @!attribute [rw] training_plan_extension_offering_id
|
|
50782
|
+
# The unique identifier for this extension offering.
|
|
50783
|
+
# @return [String]
|
|
50784
|
+
#
|
|
50785
|
+
# @!attribute [rw] availability_zone
|
|
50786
|
+
# The Availability Zone for this extension offering.
|
|
50787
|
+
# @return [String]
|
|
50788
|
+
#
|
|
50789
|
+
# @!attribute [rw] start_date
|
|
50790
|
+
# The start date of this extension offering.
|
|
50791
|
+
# @return [Time]
|
|
50792
|
+
#
|
|
50793
|
+
# @!attribute [rw] end_date
|
|
50794
|
+
# The end date of this extension offering.
|
|
50795
|
+
# @return [Time]
|
|
50796
|
+
#
|
|
50797
|
+
# @!attribute [rw] duration_hours
|
|
50798
|
+
# The duration of this extension offering in hours.
|
|
50799
|
+
# @return [Integer]
|
|
50800
|
+
#
|
|
50801
|
+
# @!attribute [rw] upfront_fee
|
|
50802
|
+
# The upfront fee for this extension offering.
|
|
50803
|
+
# @return [String]
|
|
50804
|
+
#
|
|
50805
|
+
# @!attribute [rw] currency_code
|
|
50806
|
+
# The currency code for the upfront fee (e.g., USD).
|
|
50807
|
+
# @return [String]
|
|
50808
|
+
#
|
|
50809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrainingPlanExtensionOffering AWS API Documentation
|
|
50810
|
+
#
|
|
50811
|
+
class TrainingPlanExtensionOffering < Struct.new(
|
|
50812
|
+
:training_plan_extension_offering_id,
|
|
50813
|
+
:availability_zone,
|
|
50814
|
+
:start_date,
|
|
50815
|
+
:end_date,
|
|
50816
|
+
:duration_hours,
|
|
50817
|
+
:upfront_fee,
|
|
50818
|
+
:currency_code)
|
|
50819
|
+
SENSITIVE = []
|
|
50820
|
+
include Aws::Structure
|
|
50821
|
+
end
|
|
50822
|
+
|
|
50618
50823
|
# A filter to apply when listing or searching for training plans.
|
|
50619
50824
|
#
|
|
50620
50825
|
# For more information about how to reserve GPU capacity for your
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -6925,6 +6925,19 @@ module Aws
|
|
|
6925
6925
|
) -> _DescribeTrainingPlanResponseSuccess
|
|
6926
6926
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrainingPlanResponseSuccess
|
|
6927
6927
|
|
|
6928
|
+
interface _DescribeTrainingPlanExtensionHistoryResponseSuccess
|
|
6929
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrainingPlanExtensionHistoryResponse]
|
|
6930
|
+
def training_plan_extensions: () -> ::Array[Types::TrainingPlanExtension]
|
|
6931
|
+
def next_token: () -> ::String
|
|
6932
|
+
end
|
|
6933
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_training_plan_extension_history-instance_method
|
|
6934
|
+
def describe_training_plan_extension_history: (
|
|
6935
|
+
training_plan_arn: ::String,
|
|
6936
|
+
?next_token: ::String,
|
|
6937
|
+
?max_results: ::Integer
|
|
6938
|
+
) -> _DescribeTrainingPlanExtensionHistoryResponseSuccess
|
|
6939
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrainingPlanExtensionHistoryResponseSuccess
|
|
6940
|
+
|
|
6928
6941
|
interface _DescribeTransformJobResponseSuccess
|
|
6929
6942
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTransformJobResponse]
|
|
6930
6943
|
def transform_job_name: () -> ::String
|
|
@@ -7087,6 +7100,16 @@ module Aws
|
|
|
7087
7100
|
) -> _EnableSagemakerServicecatalogPortfolioResponseSuccess
|
|
7088
7101
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableSagemakerServicecatalogPortfolioResponseSuccess
|
|
7089
7102
|
|
|
7103
|
+
interface _ExtendTrainingPlanResponseSuccess
|
|
7104
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ExtendTrainingPlanResponse]
|
|
7105
|
+
def training_plan_extensions: () -> ::Array[Types::TrainingPlanExtension]
|
|
7106
|
+
end
|
|
7107
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#extend_training_plan-instance_method
|
|
7108
|
+
def extend_training_plan: (
|
|
7109
|
+
training_plan_extension_offering_id: ::String
|
|
7110
|
+
) -> _ExtendTrainingPlanResponseSuccess
|
|
7111
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExtendTrainingPlanResponseSuccess
|
|
7112
|
+
|
|
7090
7113
|
interface _GetDeviceFleetReportResponseSuccess
|
|
7091
7114
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDeviceFleetReportResponse]
|
|
7092
7115
|
def device_fleet_arn: () -> ::String
|
|
@@ -8873,6 +8896,7 @@ module Aws
|
|
|
8873
8896
|
interface _SearchTrainingPlanOfferingsResponseSuccess
|
|
8874
8897
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchTrainingPlanOfferingsResponse]
|
|
8875
8898
|
def training_plan_offerings: () -> ::Array[Types::TrainingPlanOffering]
|
|
8899
|
+
def training_plan_extension_offerings: () -> ::Array[Types::TrainingPlanExtensionOffering]
|
|
8876
8900
|
end
|
|
8877
8901
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#search_training_plan_offerings-instance_method
|
|
8878
8902
|
def search_training_plan_offerings: (
|
|
@@ -8883,7 +8907,8 @@ module Aws
|
|
|
8883
8907
|
?start_time_after: ::Time,
|
|
8884
8908
|
?end_time_before: ::Time,
|
|
8885
8909
|
?duration_hours: ::Integer,
|
|
8886
|
-
?target_resources: Array[("training-job" | "hyperpod-cluster" | "endpoint")]
|
|
8910
|
+
?target_resources: Array[("training-job" | "hyperpod-cluster" | "endpoint")],
|
|
8911
|
+
?training_plan_arn: ::String
|
|
8887
8912
|
) -> _SearchTrainingPlanOfferingsResponseSuccess
|
|
8888
8913
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchTrainingPlanOfferingsResponseSuccess
|
|
8889
8914
|
|
data/sig/types.rbs
CHANGED
|
@@ -4644,6 +4644,19 @@ module Aws::SageMaker
|
|
|
4644
4644
|
SENSITIVE: []
|
|
4645
4645
|
end
|
|
4646
4646
|
|
|
4647
|
+
class DescribeTrainingPlanExtensionHistoryRequest
|
|
4648
|
+
attr_accessor training_plan_arn: ::String
|
|
4649
|
+
attr_accessor next_token: ::String
|
|
4650
|
+
attr_accessor max_results: ::Integer
|
|
4651
|
+
SENSITIVE: []
|
|
4652
|
+
end
|
|
4653
|
+
|
|
4654
|
+
class DescribeTrainingPlanExtensionHistoryResponse
|
|
4655
|
+
attr_accessor training_plan_extensions: ::Array[Types::TrainingPlanExtension]
|
|
4656
|
+
attr_accessor next_token: ::String
|
|
4657
|
+
SENSITIVE: []
|
|
4658
|
+
end
|
|
4659
|
+
|
|
4647
4660
|
class DescribeTrainingPlanRequest
|
|
4648
4661
|
attr_accessor training_plan_name: ::String
|
|
4649
4662
|
SENSITIVE: []
|
|
@@ -5319,6 +5332,16 @@ module Aws::SageMaker
|
|
|
5319
5332
|
SENSITIVE: []
|
|
5320
5333
|
end
|
|
5321
5334
|
|
|
5335
|
+
class ExtendTrainingPlanRequest
|
|
5336
|
+
attr_accessor training_plan_extension_offering_id: ::String
|
|
5337
|
+
SENSITIVE: []
|
|
5338
|
+
end
|
|
5339
|
+
|
|
5340
|
+
class ExtendTrainingPlanResponse
|
|
5341
|
+
attr_accessor training_plan_extensions: ::Array[Types::TrainingPlanExtension]
|
|
5342
|
+
SENSITIVE: []
|
|
5343
|
+
end
|
|
5344
|
+
|
|
5322
5345
|
class FSxLustreConfig
|
|
5323
5346
|
attr_accessor size_in_gi_b: ::Integer
|
|
5324
5347
|
attr_accessor per_unit_storage_throughput: ::Integer
|
|
@@ -9674,6 +9697,8 @@ module Aws::SageMaker
|
|
|
9674
9697
|
attr_accessor duration_minutes: ::Integer
|
|
9675
9698
|
attr_accessor start_time: ::Time
|
|
9676
9699
|
attr_accessor end_time: ::Time
|
|
9700
|
+
attr_accessor extension_start_time: ::Time
|
|
9701
|
+
attr_accessor extension_end_time: ::Time
|
|
9677
9702
|
SENSITIVE: []
|
|
9678
9703
|
end
|
|
9679
9704
|
|
|
@@ -9950,11 +9975,13 @@ module Aws::SageMaker
|
|
|
9950
9975
|
attr_accessor end_time_before: ::Time
|
|
9951
9976
|
attr_accessor duration_hours: ::Integer
|
|
9952
9977
|
attr_accessor target_resources: ::Array[("training-job" | "hyperpod-cluster" | "endpoint")]
|
|
9978
|
+
attr_accessor training_plan_arn: ::String
|
|
9953
9979
|
SENSITIVE: []
|
|
9954
9980
|
end
|
|
9955
9981
|
|
|
9956
9982
|
class SearchTrainingPlanOfferingsResponse
|
|
9957
9983
|
attr_accessor training_plan_offerings: ::Array[Types::TrainingPlanOffering]
|
|
9984
|
+
attr_accessor training_plan_extension_offerings: ::Array[Types::TrainingPlanExtensionOffering]
|
|
9958
9985
|
SENSITIVE: []
|
|
9959
9986
|
end
|
|
9960
9987
|
|
|
@@ -10612,6 +10639,32 @@ module Aws::SageMaker
|
|
|
10612
10639
|
SENSITIVE: []
|
|
10613
10640
|
end
|
|
10614
10641
|
|
|
10642
|
+
class TrainingPlanExtension
|
|
10643
|
+
attr_accessor training_plan_extension_offering_id: ::String
|
|
10644
|
+
attr_accessor extended_at: ::Time
|
|
10645
|
+
attr_accessor start_date: ::Time
|
|
10646
|
+
attr_accessor end_date: ::Time
|
|
10647
|
+
attr_accessor status: ::String
|
|
10648
|
+
attr_accessor payment_status: ::String
|
|
10649
|
+
attr_accessor availability_zone: ::String
|
|
10650
|
+
attr_accessor availability_zone_id: ::String
|
|
10651
|
+
attr_accessor duration_hours: ::Integer
|
|
10652
|
+
attr_accessor upfront_fee: ::String
|
|
10653
|
+
attr_accessor currency_code: ::String
|
|
10654
|
+
SENSITIVE: []
|
|
10655
|
+
end
|
|
10656
|
+
|
|
10657
|
+
class TrainingPlanExtensionOffering
|
|
10658
|
+
attr_accessor training_plan_extension_offering_id: ::String
|
|
10659
|
+
attr_accessor availability_zone: ::String
|
|
10660
|
+
attr_accessor start_date: ::Time
|
|
10661
|
+
attr_accessor end_date: ::Time
|
|
10662
|
+
attr_accessor duration_hours: ::Integer
|
|
10663
|
+
attr_accessor upfront_fee: ::String
|
|
10664
|
+
attr_accessor currency_code: ::String
|
|
10665
|
+
SENSITIVE: []
|
|
10666
|
+
end
|
|
10667
|
+
|
|
10615
10668
|
class TrainingPlanFilter
|
|
10616
10669
|
attr_accessor name: ("Status")
|
|
10617
10670
|
attr_accessor value: ::String
|