aws-sdk-sagemaker 1.332.0 → 1.333.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 +67 -8
- data/lib/aws-sdk-sagemaker/client_api.rb +28 -0
- data/lib/aws-sdk-sagemaker/types.rb +24 -0
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +15 -3
- data/sig/types.rbs +16 -6
- 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: cd74105e925d60738cd48f7efb561ae52ae2606b89da391a5355b9ce16dd326e
|
|
4
|
+
data.tar.gz: 82df2a2596866265d4936055eb69c32c4ce375c29c854459320f87e349f4a796
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2bdeb5447224d439f56162d75ec5c906456a5839c919b16753633423b09a219e4972a4beac9678e3ff7b132d8115cfa13064e3b42a5ae3d5f5ff3eab7086763b
|
|
7
|
+
data.tar.gz: 55382c8641ad9382772ed2d92acc4c26ea6b72020a379d867e0b4a4ecb2c141624882e1fc799d8f4023befcff8a54d8798e8d10a67e64f4210d02f5e26f9ce9a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.333.0
|
|
@@ -12241,6 +12241,33 @@ module Aws::SageMaker
|
|
|
12241
12241
|
req.send_request(options)
|
|
12242
12242
|
end
|
|
12243
12243
|
|
|
12244
|
+
# Deletes a processing job. After Amazon SageMaker deletes a processing
|
|
12245
|
+
# job, all of the metadata for the processing job is lost. You can
|
|
12246
|
+
# delete only processing jobs that are in a terminal state (`Stopped`,
|
|
12247
|
+
# `Failed`, or `Completed`). You cannot delete a job that is in the
|
|
12248
|
+
# `InProgress` or `Stopping` state. After deleting the job, you can
|
|
12249
|
+
# reuse its name to create another processing job.
|
|
12250
|
+
#
|
|
12251
|
+
# @option params [required, String] :processing_job_name
|
|
12252
|
+
# The name of the processing job to delete.
|
|
12253
|
+
#
|
|
12254
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
12255
|
+
#
|
|
12256
|
+
# @example Request syntax with placeholder values
|
|
12257
|
+
#
|
|
12258
|
+
# resp = client.delete_processing_job({
|
|
12259
|
+
# processing_job_name: "ProcessingJobName", # required
|
|
12260
|
+
# })
|
|
12261
|
+
#
|
|
12262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteProcessingJob AWS API Documentation
|
|
12263
|
+
#
|
|
12264
|
+
# @overload delete_processing_job(params = {})
|
|
12265
|
+
# @param [Hash] params ({})
|
|
12266
|
+
def delete_processing_job(params = {}, options = {})
|
|
12267
|
+
req = build_request(:delete_processing_job, params)
|
|
12268
|
+
req.send_request(options)
|
|
12269
|
+
end
|
|
12270
|
+
|
|
12244
12271
|
# Delete the specified project.
|
|
12245
12272
|
#
|
|
12246
12273
|
# @option params [required, String] :project_name
|
|
@@ -12357,6 +12384,38 @@ module Aws::SageMaker
|
|
|
12357
12384
|
req.send_request(options)
|
|
12358
12385
|
end
|
|
12359
12386
|
|
|
12387
|
+
# Deletes a training job. After SageMaker deletes a training job, all of
|
|
12388
|
+
# the metadata for the training job is lost. You can delete only
|
|
12389
|
+
# training jobs that are in a terminal state (`Stopped`, `Failed`, or
|
|
12390
|
+
# `Completed`) and don't retain an `Available` [managed warm pool][1].
|
|
12391
|
+
# You cannot delete a job that is in the `InProgress` or `Stopping`
|
|
12392
|
+
# state. After deleting the job, you can reuse its name to create
|
|
12393
|
+
# another training job.
|
|
12394
|
+
#
|
|
12395
|
+
#
|
|
12396
|
+
#
|
|
12397
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-warm-pools.html
|
|
12398
|
+
#
|
|
12399
|
+
# @option params [required, String] :training_job_name
|
|
12400
|
+
# The name of the training job to delete.
|
|
12401
|
+
#
|
|
12402
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
12403
|
+
#
|
|
12404
|
+
# @example Request syntax with placeholder values
|
|
12405
|
+
#
|
|
12406
|
+
# resp = client.delete_training_job({
|
|
12407
|
+
# training_job_name: "TrainingJobName", # required
|
|
12408
|
+
# })
|
|
12409
|
+
#
|
|
12410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteTrainingJob AWS API Documentation
|
|
12411
|
+
#
|
|
12412
|
+
# @overload delete_training_job(params = {})
|
|
12413
|
+
# @param [Hash] params ({})
|
|
12414
|
+
def delete_training_job(params = {}, options = {})
|
|
12415
|
+
req = build_request(:delete_training_job, params)
|
|
12416
|
+
req.send_request(options)
|
|
12417
|
+
end
|
|
12418
|
+
|
|
12360
12419
|
# Deletes the specified trial. All trial components that make up the
|
|
12361
12420
|
# trial must be deleted first. Use the [DescribeTrialComponent][1] API
|
|
12362
12421
|
# to get the list of trial components.
|
|
@@ -15568,7 +15627,7 @@ module Aws::SageMaker
|
|
|
15568
15627
|
# resp.best_training_job.creation_time #=> Time
|
|
15569
15628
|
# resp.best_training_job.training_start_time #=> Time
|
|
15570
15629
|
# resp.best_training_job.training_end_time #=> Time
|
|
15571
|
-
# resp.best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
|
15630
|
+
# resp.best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
|
|
15572
15631
|
# resp.best_training_job.tuned_hyper_parameters #=> Hash
|
|
15573
15632
|
# resp.best_training_job.tuned_hyper_parameters["HyperParameterKey"] #=> String
|
|
15574
15633
|
# resp.best_training_job.failure_reason #=> String
|
|
@@ -15583,7 +15642,7 @@ module Aws::SageMaker
|
|
|
15583
15642
|
# resp.overall_best_training_job.creation_time #=> Time
|
|
15584
15643
|
# resp.overall_best_training_job.training_start_time #=> Time
|
|
15585
15644
|
# resp.overall_best_training_job.training_end_time #=> Time
|
|
15586
|
-
# resp.overall_best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
|
15645
|
+
# resp.overall_best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
|
|
15587
15646
|
# resp.overall_best_training_job.tuned_hyper_parameters #=> Hash
|
|
15588
15647
|
# resp.overall_best_training_job.tuned_hyper_parameters["HyperParameterKey"] #=> String
|
|
15589
15648
|
# resp.overall_best_training_job.failure_reason #=> String
|
|
@@ -18091,7 +18150,7 @@ module Aws::SageMaker
|
|
|
18091
18150
|
# resp.labeling_job_arn #=> String
|
|
18092
18151
|
# resp.auto_ml_job_arn #=> String
|
|
18093
18152
|
# resp.model_artifacts.s3_model_artifacts #=> String
|
|
18094
|
-
# resp.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
|
18153
|
+
# resp.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
|
|
18095
18154
|
# resp.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting", "Pending"
|
|
18096
18155
|
# resp.failure_reason #=> String
|
|
18097
18156
|
# resp.hyper_parameters #=> Hash
|
|
@@ -25167,7 +25226,7 @@ module Aws::SageMaker
|
|
|
25167
25226
|
# last_modified_time_after: Time.now,
|
|
25168
25227
|
# last_modified_time_before: Time.now,
|
|
25169
25228
|
# name_contains: "NameContains",
|
|
25170
|
-
# status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped
|
|
25229
|
+
# status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped, Deleting
|
|
25171
25230
|
# sort_by: "Name", # accepts Name, CreationTime, Status
|
|
25172
25231
|
# sort_order: "Ascending", # accepts Ascending, Descending
|
|
25173
25232
|
# warm_pool_status_equals: "Available", # accepts Available, Terminated, Reused, InUse
|
|
@@ -25182,7 +25241,7 @@ module Aws::SageMaker
|
|
|
25182
25241
|
# resp.training_job_summaries[0].creation_time #=> Time
|
|
25183
25242
|
# resp.training_job_summaries[0].training_end_time #=> Time
|
|
25184
25243
|
# resp.training_job_summaries[0].last_modified_time #=> Time
|
|
25185
|
-
# resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
|
25244
|
+
# resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
|
|
25186
25245
|
# resp.training_job_summaries[0].secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting", "Pending"
|
|
25187
25246
|
# resp.training_job_summaries[0].warm_pool_status.status #=> String, one of "Available", "Terminated", "Reused", "InUse"
|
|
25188
25247
|
# resp.training_job_summaries[0].warm_pool_status.resource_retained_billable_time_in_seconds #=> Integer
|
|
@@ -25244,7 +25303,7 @@ module Aws::SageMaker
|
|
|
25244
25303
|
# hyper_parameter_tuning_job_name: "HyperParameterTuningJobName", # required
|
|
25245
25304
|
# next_token: "NextToken",
|
|
25246
25305
|
# max_results: 1,
|
|
25247
|
-
# status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped
|
|
25306
|
+
# status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped, Deleting
|
|
25248
25307
|
# sort_by: "Name", # accepts Name, CreationTime, Status, FinalObjectiveMetricValue
|
|
25249
25308
|
# sort_order: "Ascending", # accepts Ascending, Descending
|
|
25250
25309
|
# })
|
|
@@ -25259,7 +25318,7 @@ module Aws::SageMaker
|
|
|
25259
25318
|
# resp.training_job_summaries[0].creation_time #=> Time
|
|
25260
25319
|
# resp.training_job_summaries[0].training_start_time #=> Time
|
|
25261
25320
|
# resp.training_job_summaries[0].training_end_time #=> Time
|
|
25262
|
-
# resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
|
25321
|
+
# resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
|
|
25263
25322
|
# resp.training_job_summaries[0].tuned_hyper_parameters #=> Hash
|
|
25264
25323
|
# resp.training_job_summaries[0].tuned_hyper_parameters["HyperParameterKey"] #=> String
|
|
25265
25324
|
# resp.training_job_summaries[0].failure_reason #=> String
|
|
@@ -31204,7 +31263,7 @@ module Aws::SageMaker
|
|
|
31204
31263
|
tracer: tracer
|
|
31205
31264
|
)
|
|
31206
31265
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
31207
|
-
context[:gem_version] = '1.
|
|
31266
|
+
context[:gem_version] = '1.333.0'
|
|
31208
31267
|
Seahorse::Client::Request.new(handlers, context)
|
|
31209
31268
|
end
|
|
31210
31269
|
|
|
@@ -686,11 +686,13 @@ module Aws::SageMaker
|
|
|
686
686
|
DeletePartnerAppResponse = Shapes::StructureShape.new(name: 'DeletePartnerAppResponse')
|
|
687
687
|
DeletePipelineRequest = Shapes::StructureShape.new(name: 'DeletePipelineRequest')
|
|
688
688
|
DeletePipelineResponse = Shapes::StructureShape.new(name: 'DeletePipelineResponse')
|
|
689
|
+
DeleteProcessingJobRequest = Shapes::StructureShape.new(name: 'DeleteProcessingJobRequest')
|
|
689
690
|
DeleteProjectInput = Shapes::StructureShape.new(name: 'DeleteProjectInput')
|
|
690
691
|
DeleteSpaceRequest = Shapes::StructureShape.new(name: 'DeleteSpaceRequest')
|
|
691
692
|
DeleteStudioLifecycleConfigRequest = Shapes::StructureShape.new(name: 'DeleteStudioLifecycleConfigRequest')
|
|
692
693
|
DeleteTagsInput = Shapes::StructureShape.new(name: 'DeleteTagsInput')
|
|
693
694
|
DeleteTagsOutput = Shapes::StructureShape.new(name: 'DeleteTagsOutput')
|
|
695
|
+
DeleteTrainingJobRequest = Shapes::StructureShape.new(name: 'DeleteTrainingJobRequest')
|
|
694
696
|
DeleteTrialComponentRequest = Shapes::StructureShape.new(name: 'DeleteTrialComponentRequest')
|
|
695
697
|
DeleteTrialComponentResponse = Shapes::StructureShape.new(name: 'DeleteTrialComponentResponse')
|
|
696
698
|
DeleteTrialRequest = Shapes::StructureShape.new(name: 'DeleteTrialRequest')
|
|
@@ -4952,6 +4954,9 @@ module Aws::SageMaker
|
|
|
4952
4954
|
DeletePipelineResponse.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
|
|
4953
4955
|
DeletePipelineResponse.struct_class = Types::DeletePipelineResponse
|
|
4954
4956
|
|
|
4957
|
+
DeleteProcessingJobRequest.add_member(:processing_job_name, Shapes::ShapeRef.new(shape: ProcessingJobName, required: true, location_name: "ProcessingJobName"))
|
|
4958
|
+
DeleteProcessingJobRequest.struct_class = Types::DeleteProcessingJobRequest
|
|
4959
|
+
|
|
4955
4960
|
DeleteProjectInput.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
|
|
4956
4961
|
DeleteProjectInput.struct_class = Types::DeleteProjectInput
|
|
4957
4962
|
|
|
@@ -4968,6 +4973,9 @@ module Aws::SageMaker
|
|
|
4968
4973
|
|
|
4969
4974
|
DeleteTagsOutput.struct_class = Types::DeleteTagsOutput
|
|
4970
4975
|
|
|
4976
|
+
DeleteTrainingJobRequest.add_member(:training_job_name, Shapes::ShapeRef.new(shape: TrainingJobName, required: true, location_name: "TrainingJobName"))
|
|
4977
|
+
DeleteTrainingJobRequest.struct_class = Types::DeleteTrainingJobRequest
|
|
4978
|
+
|
|
4971
4979
|
DeleteTrialComponentRequest.add_member(:trial_component_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, required: true, location_name: "TrialComponentName"))
|
|
4972
4980
|
DeleteTrialComponentRequest.struct_class = Types::DeleteTrialComponentRequest
|
|
4973
4981
|
|
|
@@ -13020,6 +13028,16 @@ module Aws::SageMaker
|
|
|
13020
13028
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
13021
13029
|
end)
|
|
13022
13030
|
|
|
13031
|
+
api.add_operation(:delete_processing_job, Seahorse::Model::Operation.new.tap do |o|
|
|
13032
|
+
o.name = "DeleteProcessingJob"
|
|
13033
|
+
o.http_method = "POST"
|
|
13034
|
+
o.http_request_uri = "/"
|
|
13035
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteProcessingJobRequest)
|
|
13036
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
13037
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
13038
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
|
13039
|
+
end)
|
|
13040
|
+
|
|
13023
13041
|
api.add_operation(:delete_project, Seahorse::Model::Operation.new.tap do |o|
|
|
13024
13042
|
o.name = "DeleteProject"
|
|
13025
13043
|
o.http_method = "POST"
|
|
@@ -13057,6 +13075,16 @@ module Aws::SageMaker
|
|
|
13057
13075
|
o.output = Shapes::ShapeRef.new(shape: DeleteTagsOutput)
|
|
13058
13076
|
end)
|
|
13059
13077
|
|
|
13078
|
+
api.add_operation(:delete_training_job, Seahorse::Model::Operation.new.tap do |o|
|
|
13079
|
+
o.name = "DeleteTrainingJob"
|
|
13080
|
+
o.http_method = "POST"
|
|
13081
|
+
o.http_request_uri = "/"
|
|
13082
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteTrainingJobRequest)
|
|
13083
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
13084
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
13085
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
|
13086
|
+
end)
|
|
13087
|
+
|
|
13060
13088
|
api.add_operation(:delete_trial, Seahorse::Model::Operation.new.tap do |o|
|
|
13061
13089
|
o.name = "DeleteTrial"
|
|
13062
13090
|
o.http_method = "POST"
|
|
@@ -13916,6 +13916,18 @@ module Aws::SageMaker
|
|
|
13916
13916
|
include Aws::Structure
|
|
13917
13917
|
end
|
|
13918
13918
|
|
|
13919
|
+
# @!attribute [rw] processing_job_name
|
|
13920
|
+
# The name of the processing job to delete.
|
|
13921
|
+
# @return [String]
|
|
13922
|
+
#
|
|
13923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteProcessingJobRequest AWS API Documentation
|
|
13924
|
+
#
|
|
13925
|
+
class DeleteProcessingJobRequest < Struct.new(
|
|
13926
|
+
:processing_job_name)
|
|
13927
|
+
SENSITIVE = []
|
|
13928
|
+
include Aws::Structure
|
|
13929
|
+
end
|
|
13930
|
+
|
|
13919
13931
|
# @!attribute [rw] project_name
|
|
13920
13932
|
# The name of the project to delete.
|
|
13921
13933
|
# @return [String]
|
|
@@ -13980,6 +13992,18 @@ module Aws::SageMaker
|
|
|
13980
13992
|
#
|
|
13981
13993
|
class DeleteTagsOutput < Aws::EmptyStructure; end
|
|
13982
13994
|
|
|
13995
|
+
# @!attribute [rw] training_job_name
|
|
13996
|
+
# The name of the training job to delete.
|
|
13997
|
+
# @return [String]
|
|
13998
|
+
#
|
|
13999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteTrainingJobRequest AWS API Documentation
|
|
14000
|
+
#
|
|
14001
|
+
class DeleteTrainingJobRequest < Struct.new(
|
|
14002
|
+
:training_job_name)
|
|
14003
|
+
SENSITIVE = []
|
|
14004
|
+
include Aws::Structure
|
|
14005
|
+
end
|
|
14006
|
+
|
|
13983
14007
|
# @!attribute [rw] trial_component_name
|
|
13984
14008
|
# The name of the component to delete.
|
|
13985
14009
|
# @return [String]
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -5167,6 +5167,12 @@ module Aws
|
|
|
5167
5167
|
) -> _DeletePipelineResponseSuccess
|
|
5168
5168
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePipelineResponseSuccess
|
|
5169
5169
|
|
|
5170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_processing_job-instance_method
|
|
5171
|
+
def delete_processing_job: (
|
|
5172
|
+
processing_job_name: ::String
|
|
5173
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5174
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5175
|
+
|
|
5170
5176
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_project-instance_method
|
|
5171
5177
|
def delete_project: (
|
|
5172
5178
|
project_name: ::String
|
|
@@ -5196,6 +5202,12 @@ module Aws
|
|
|
5196
5202
|
) -> _DeleteTagsResponseSuccess
|
|
5197
5203
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTagsResponseSuccess
|
|
5198
5204
|
|
|
5205
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_training_job-instance_method
|
|
5206
|
+
def delete_training_job: (
|
|
5207
|
+
training_job_name: ::String
|
|
5208
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5209
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
5210
|
+
|
|
5199
5211
|
interface _DeleteTrialResponseSuccess
|
|
5200
5212
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTrialResponse]
|
|
5201
5213
|
def trial_arn: () -> ::String
|
|
@@ -6588,7 +6600,7 @@ module Aws
|
|
|
6588
6600
|
def labeling_job_arn: () -> ::String
|
|
6589
6601
|
def auto_ml_job_arn: () -> ::String
|
|
6590
6602
|
def model_artifacts: () -> Types::ModelArtifacts
|
|
6591
|
-
def training_job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
6603
|
+
def training_job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
|
|
6592
6604
|
def secondary_status: () -> ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
|
|
6593
6605
|
def failure_reason: () -> ::String
|
|
6594
6606
|
def hyper_parameters: () -> ::Hash[::String, ::String]
|
|
@@ -8286,7 +8298,7 @@ module Aws
|
|
|
8286
8298
|
?last_modified_time_after: ::Time,
|
|
8287
8299
|
?last_modified_time_before: ::Time,
|
|
8288
8300
|
?name_contains: ::String,
|
|
8289
|
-
?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped"),
|
|
8301
|
+
?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting"),
|
|
8290
8302
|
?sort_by: ("Name" | "CreationTime" | "Status"),
|
|
8291
8303
|
?sort_order: ("Ascending" | "Descending"),
|
|
8292
8304
|
?warm_pool_status_equals: ("Available" | "Terminated" | "Reused" | "InUse"),
|
|
@@ -8304,7 +8316,7 @@ module Aws
|
|
|
8304
8316
|
hyper_parameter_tuning_job_name: ::String,
|
|
8305
8317
|
?next_token: ::String,
|
|
8306
8318
|
?max_results: ::Integer,
|
|
8307
|
-
?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped"),
|
|
8319
|
+
?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting"),
|
|
8308
8320
|
?sort_by: ("Name" | "CreationTime" | "Status" | "FinalObjectiveMetricValue"),
|
|
8309
8321
|
?sort_order: ("Ascending" | "Descending")
|
|
8310
8322
|
) -> _ListTrainingJobsForHyperParameterTuningJobResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -2833,6 +2833,11 @@ module Aws::SageMaker
|
|
|
2833
2833
|
SENSITIVE: []
|
|
2834
2834
|
end
|
|
2835
2835
|
|
|
2836
|
+
class DeleteProcessingJobRequest
|
|
2837
|
+
attr_accessor processing_job_name: ::String
|
|
2838
|
+
SENSITIVE: []
|
|
2839
|
+
end
|
|
2840
|
+
|
|
2836
2841
|
class DeleteProjectInput
|
|
2837
2842
|
attr_accessor project_name: ::String
|
|
2838
2843
|
SENSITIVE: []
|
|
@@ -2858,6 +2863,11 @@ module Aws::SageMaker
|
|
|
2858
2863
|
class DeleteTagsOutput < Aws::EmptyStructure
|
|
2859
2864
|
end
|
|
2860
2865
|
|
|
2866
|
+
class DeleteTrainingJobRequest
|
|
2867
|
+
attr_accessor training_job_name: ::String
|
|
2868
|
+
SENSITIVE: []
|
|
2869
|
+
end
|
|
2870
|
+
|
|
2861
2871
|
class DeleteTrialComponentRequest
|
|
2862
2872
|
attr_accessor trial_component_name: ::String
|
|
2863
2873
|
SENSITIVE: []
|
|
@@ -4299,7 +4309,7 @@ module Aws::SageMaker
|
|
|
4299
4309
|
attr_accessor labeling_job_arn: ::String
|
|
4300
4310
|
attr_accessor auto_ml_job_arn: ::String
|
|
4301
4311
|
attr_accessor model_artifacts: Types::ModelArtifacts
|
|
4302
|
-
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
4312
|
+
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
|
|
4303
4313
|
attr_accessor secondary_status: ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
|
|
4304
4314
|
attr_accessor failure_reason: ::String
|
|
4305
4315
|
attr_accessor hyper_parameters: ::Hash[::String, ::String]
|
|
@@ -5400,7 +5410,7 @@ module Aws::SageMaker
|
|
|
5400
5410
|
attr_accessor creation_time: ::Time
|
|
5401
5411
|
attr_accessor training_start_time: ::Time
|
|
5402
5412
|
attr_accessor training_end_time: ::Time
|
|
5403
|
-
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
5413
|
+
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
|
|
5404
5414
|
attr_accessor tuned_hyper_parameters: ::Hash[::String, ::String]
|
|
5405
5415
|
attr_accessor failure_reason: ::String
|
|
5406
5416
|
attr_accessor final_hyper_parameter_tuning_job_objective_metric: Types::FinalHyperParameterTuningJobObjectiveMetric
|
|
@@ -7357,7 +7367,7 @@ module Aws::SageMaker
|
|
|
7357
7367
|
attr_accessor hyper_parameter_tuning_job_name: ::String
|
|
7358
7368
|
attr_accessor next_token: ::String
|
|
7359
7369
|
attr_accessor max_results: ::Integer
|
|
7360
|
-
attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
7370
|
+
attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
|
|
7361
7371
|
attr_accessor sort_by: ("Name" | "CreationTime" | "Status" | "FinalObjectiveMetricValue")
|
|
7362
7372
|
attr_accessor sort_order: ("Ascending" | "Descending")
|
|
7363
7373
|
SENSITIVE: []
|
|
@@ -7377,7 +7387,7 @@ module Aws::SageMaker
|
|
|
7377
7387
|
attr_accessor last_modified_time_after: ::Time
|
|
7378
7388
|
attr_accessor last_modified_time_before: ::Time
|
|
7379
7389
|
attr_accessor name_contains: ::String
|
|
7380
|
-
attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
7390
|
+
attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
|
|
7381
7391
|
attr_accessor sort_by: ("Name" | "CreationTime" | "Status")
|
|
7382
7392
|
attr_accessor sort_order: ("Ascending" | "Descending")
|
|
7383
7393
|
attr_accessor warm_pool_status_equals: ("Available" | "Terminated" | "Reused" | "InUse")
|
|
@@ -10103,7 +10113,7 @@ module Aws::SageMaker
|
|
|
10103
10113
|
attr_accessor labeling_job_arn: ::String
|
|
10104
10114
|
attr_accessor auto_ml_job_arn: ::String
|
|
10105
10115
|
attr_accessor model_artifacts: Types::ModelArtifacts
|
|
10106
|
-
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
10116
|
+
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
|
|
10107
10117
|
attr_accessor secondary_status: ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
|
|
10108
10118
|
attr_accessor failure_reason: ::String
|
|
10109
10119
|
attr_accessor hyper_parameters: ::Hash[::String, ::String]
|
|
@@ -10168,7 +10178,7 @@ module Aws::SageMaker
|
|
|
10168
10178
|
attr_accessor creation_time: ::Time
|
|
10169
10179
|
attr_accessor training_end_time: ::Time
|
|
10170
10180
|
attr_accessor last_modified_time: ::Time
|
|
10171
|
-
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
10181
|
+
attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
|
|
10172
10182
|
attr_accessor secondary_status: ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
|
|
10173
10183
|
attr_accessor warm_pool_status: Types::WarmPoolStatus
|
|
10174
10184
|
attr_accessor training_plan_arn: ::String
|