aws-sdk-sagemaker 1.270.0 → 1.272.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +135 -37
- data/lib/aws-sdk-sagemaker/client_api.rb +45 -0
- data/lib/aws-sdk-sagemaker/types.rb +136 -3
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +40 -16
- data/sig/types.rbs +41 -9
- metadata +2 -2
@@ -175,6 +175,11 @@ module Aws::SageMaker
|
|
175
175
|
BacktestResultsLocation = Shapes::StringShape.new(name: 'BacktestResultsLocation')
|
176
176
|
BaseModelName = Shapes::StringShape.new(name: 'BaseModelName')
|
177
177
|
BatchDataCaptureConfig = Shapes::StructureShape.new(name: 'BatchDataCaptureConfig')
|
178
|
+
BatchDeleteClusterNodesError = Shapes::StructureShape.new(name: 'BatchDeleteClusterNodesError')
|
179
|
+
BatchDeleteClusterNodesErrorCode = Shapes::StringShape.new(name: 'BatchDeleteClusterNodesErrorCode')
|
180
|
+
BatchDeleteClusterNodesErrorList = Shapes::ListShape.new(name: 'BatchDeleteClusterNodesErrorList')
|
181
|
+
BatchDeleteClusterNodesRequest = Shapes::StructureShape.new(name: 'BatchDeleteClusterNodesRequest')
|
182
|
+
BatchDeleteClusterNodesResponse = Shapes::StructureShape.new(name: 'BatchDeleteClusterNodesResponse')
|
178
183
|
BatchDescribeModelPackageError = Shapes::StructureShape.new(name: 'BatchDescribeModelPackageError')
|
179
184
|
BatchDescribeModelPackageErrorMap = Shapes::MapShape.new(name: 'BatchDescribeModelPackageErrorMap')
|
180
185
|
BatchDescribeModelPackageInput = Shapes::StructureShape.new(name: 'BatchDescribeModelPackageInput')
|
@@ -284,6 +289,7 @@ module Aws::SageMaker
|
|
284
289
|
ClusterNameOrArn = Shapes::StringShape.new(name: 'ClusterNameOrArn')
|
285
290
|
ClusterNodeDetails = Shapes::StructureShape.new(name: 'ClusterNodeDetails')
|
286
291
|
ClusterNodeId = Shapes::StringShape.new(name: 'ClusterNodeId')
|
292
|
+
ClusterNodeIds = Shapes::ListShape.new(name: 'ClusterNodeIds')
|
287
293
|
ClusterNodeRecovery = Shapes::StringShape.new(name: 'ClusterNodeRecovery')
|
288
294
|
ClusterNodeSummaries = Shapes::ListShape.new(name: 'ClusterNodeSummaries')
|
289
295
|
ClusterNodeSummary = Shapes::StructureShape.new(name: 'ClusterNodeSummary')
|
@@ -1484,6 +1490,7 @@ module Aws::SageMaker
|
|
1484
1490
|
ModelInsightsLocation = Shapes::StringShape.new(name: 'ModelInsightsLocation')
|
1485
1491
|
ModelLatencyThreshold = Shapes::StructureShape.new(name: 'ModelLatencyThreshold')
|
1486
1492
|
ModelLatencyThresholds = Shapes::ListShape.new(name: 'ModelLatencyThresholds')
|
1493
|
+
ModelLifeCycle = Shapes::StructureShape.new(name: 'ModelLifeCycle')
|
1487
1494
|
ModelMetadataFilter = Shapes::StructureShape.new(name: 'ModelMetadataFilter')
|
1488
1495
|
ModelMetadataFilterType = Shapes::StringShape.new(name: 'ModelMetadataFilterType')
|
1489
1496
|
ModelMetadataFilters = Shapes::ListShape.new(name: 'ModelMetadataFilters')
|
@@ -2034,6 +2041,7 @@ module Aws::SageMaker
|
|
2034
2041
|
SpaceStorageSettings = Shapes::StructureShape.new(name: 'SpaceStorageSettings')
|
2035
2042
|
SpawnRate = Shapes::IntegerShape.new(name: 'SpawnRate')
|
2036
2043
|
SplitType = Shapes::StringShape.new(name: 'SplitType')
|
2044
|
+
StageDescription = Shapes::StringShape.new(name: 'StageDescription')
|
2037
2045
|
StageStatus = Shapes::StringShape.new(name: 'StageStatus')
|
2038
2046
|
Stairs = Shapes::StructureShape.new(name: 'Stairs')
|
2039
2047
|
StartEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'StartEdgeDeploymentStageRequest')
|
@@ -2779,6 +2787,21 @@ module Aws::SageMaker
|
|
2779
2787
|
BatchDataCaptureConfig.add_member(:generate_inference_id, Shapes::ShapeRef.new(shape: Boolean, location_name: "GenerateInferenceId"))
|
2780
2788
|
BatchDataCaptureConfig.struct_class = Types::BatchDataCaptureConfig
|
2781
2789
|
|
2790
|
+
BatchDeleteClusterNodesError.add_member(:code, Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesErrorCode, required: true, location_name: "Code"))
|
2791
|
+
BatchDeleteClusterNodesError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
2792
|
+
BatchDeleteClusterNodesError.add_member(:node_id, Shapes::ShapeRef.new(shape: ClusterNodeId, required: true, location_name: "NodeId"))
|
2793
|
+
BatchDeleteClusterNodesError.struct_class = Types::BatchDeleteClusterNodesError
|
2794
|
+
|
2795
|
+
BatchDeleteClusterNodesErrorList.member = Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesError)
|
2796
|
+
|
2797
|
+
BatchDeleteClusterNodesRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
2798
|
+
BatchDeleteClusterNodesRequest.add_member(:node_ids, Shapes::ShapeRef.new(shape: ClusterNodeIds, required: true, location_name: "NodeIds"))
|
2799
|
+
BatchDeleteClusterNodesRequest.struct_class = Types::BatchDeleteClusterNodesRequest
|
2800
|
+
|
2801
|
+
BatchDeleteClusterNodesResponse.add_member(:failed, Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesErrorList, location_name: "Failed"))
|
2802
|
+
BatchDeleteClusterNodesResponse.add_member(:successful, Shapes::ShapeRef.new(shape: ClusterNodeIds, location_name: "Successful"))
|
2803
|
+
BatchDeleteClusterNodesResponse.struct_class = Types::BatchDeleteClusterNodesResponse
|
2804
|
+
|
2782
2805
|
BatchDescribeModelPackageError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ErrorCode"))
|
2783
2806
|
BatchDescribeModelPackageError.add_member(:error_response, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ErrorResponse"))
|
2784
2807
|
BatchDescribeModelPackageError.struct_class = Types::BatchDescribeModelPackageError
|
@@ -3028,6 +3051,8 @@ module Aws::SageMaker
|
|
3028
3051
|
ClusterNodeDetails.add_member(:placement, Shapes::ShapeRef.new(shape: ClusterInstancePlacement, location_name: "Placement"))
|
3029
3052
|
ClusterNodeDetails.struct_class = Types::ClusterNodeDetails
|
3030
3053
|
|
3054
|
+
ClusterNodeIds.member = Shapes::ShapeRef.new(shape: ClusterNodeId)
|
3055
|
+
|
3031
3056
|
ClusterNodeSummaries.member = Shapes::ShapeRef.new(shape: ClusterNodeSummary)
|
3032
3057
|
|
3033
3058
|
ClusterNodeSummary.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, required: true, location_name: "InstanceGroupName"))
|
@@ -3668,6 +3693,7 @@ module Aws::SageMaker
|
|
3668
3693
|
CreateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
|
3669
3694
|
CreateModelPackageInput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
|
3670
3695
|
CreateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
|
3696
|
+
CreateModelPackageInput.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
|
3671
3697
|
CreateModelPackageInput.struct_class = Types::CreateModelPackageInput
|
3672
3698
|
|
3673
3699
|
CreateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
|
@@ -5109,6 +5135,7 @@ module Aws::SageMaker
|
|
5109
5135
|
DescribeModelPackageOutput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
|
5110
5136
|
DescribeModelPackageOutput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
|
5111
5137
|
DescribeModelPackageOutput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
|
5138
|
+
DescribeModelPackageOutput.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
|
5112
5139
|
DescribeModelPackageOutput.struct_class = Types::DescribeModelPackageOutput
|
5113
5140
|
|
5114
5141
|
DescribeModelQualityJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionName, required: true, location_name: "JobDefinitionName"))
|
@@ -7975,6 +8002,11 @@ module Aws::SageMaker
|
|
7975
8002
|
|
7976
8003
|
ModelLatencyThresholds.member = Shapes::ShapeRef.new(shape: ModelLatencyThreshold)
|
7977
8004
|
|
8005
|
+
ModelLifeCycle.add_member(:stage, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "Stage"))
|
8006
|
+
ModelLifeCycle.add_member(:stage_status, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageStatus"))
|
8007
|
+
ModelLifeCycle.add_member(:stage_description, Shapes::ShapeRef.new(shape: StageDescription, location_name: "StageDescription"))
|
8008
|
+
ModelLifeCycle.struct_class = Types::ModelLifeCycle
|
8009
|
+
|
7978
8010
|
ModelMetadataFilter.add_member(:name, Shapes::ShapeRef.new(shape: ModelMetadataFilterType, required: true, location_name: "Name"))
|
7979
8011
|
ModelMetadataFilter.add_member(:value, Shapes::ShapeRef.new(shape: String256, required: true, location_name: "Value"))
|
7980
8012
|
ModelMetadataFilter.struct_class = Types::ModelMetadataFilter
|
@@ -8025,6 +8057,7 @@ module Aws::SageMaker
|
|
8025
8057
|
ModelPackage.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
|
8026
8058
|
ModelPackage.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
|
8027
8059
|
ModelPackage.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
|
8060
|
+
ModelPackage.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
|
8028
8061
|
ModelPackage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
8029
8062
|
ModelPackage.add_member(:customer_metadata_properties, Shapes::ShapeRef.new(shape: CustomerMetadataMap, location_name: "CustomerMetadataProperties"))
|
8030
8063
|
ModelPackage.add_member(:drift_check_baselines, Shapes::ShapeRef.new(shape: DriftCheckBaselines, location_name: "DriftCheckBaselines"))
|
@@ -9742,6 +9775,7 @@ module Aws::SageMaker
|
|
9742
9775
|
TrainingJobSummary.add_member(:training_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "TrainingEndTime"))
|
9743
9776
|
TrainingJobSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
9744
9777
|
TrainingJobSummary.add_member(:training_job_status, Shapes::ShapeRef.new(shape: TrainingJobStatus, required: true, location_name: "TrainingJobStatus"))
|
9778
|
+
TrainingJobSummary.add_member(:secondary_status, Shapes::ShapeRef.new(shape: SecondaryStatus, location_name: "SecondaryStatus"))
|
9745
9779
|
TrainingJobSummary.add_member(:warm_pool_status, Shapes::ShapeRef.new(shape: WarmPoolStatus, location_name: "WarmPoolStatus"))
|
9746
9780
|
TrainingJobSummary.struct_class = Types::TrainingJobSummary
|
9747
9781
|
|
@@ -10194,6 +10228,8 @@ module Aws::SageMaker
|
|
10194
10228
|
UpdateModelPackageInput.add_member(:inference_specification, Shapes::ShapeRef.new(shape: InferenceSpecification, location_name: "InferenceSpecification"))
|
10195
10229
|
UpdateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
|
10196
10230
|
UpdateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
|
10231
|
+
UpdateModelPackageInput.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
|
10232
|
+
UpdateModelPackageInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
|
10197
10233
|
UpdateModelPackageInput.struct_class = Types::UpdateModelPackageInput
|
10198
10234
|
|
10199
10235
|
UpdateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
|
@@ -10513,6 +10549,15 @@ module Aws::SageMaker
|
|
10513
10549
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
10514
10550
|
end)
|
10515
10551
|
|
10552
|
+
api.add_operation(:batch_delete_cluster_nodes, Seahorse::Model::Operation.new.tap do |o|
|
10553
|
+
o.name = "BatchDeleteClusterNodes"
|
10554
|
+
o.http_method = "POST"
|
10555
|
+
o.http_request_uri = "/"
|
10556
|
+
o.input = Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesRequest)
|
10557
|
+
o.output = Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesResponse)
|
10558
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
10559
|
+
end)
|
10560
|
+
|
10516
10561
|
api.add_operation(:batch_describe_model_package, Seahorse::Model::Operation.new.tap do |o|
|
10517
10562
|
o.name = "BatchDescribeModelPackage"
|
10518
10563
|
o.http_method = "POST"
|
@@ -2935,6 +2935,79 @@ module Aws::SageMaker
|
|
2935
2935
|
include Aws::Structure
|
2936
2936
|
end
|
2937
2937
|
|
2938
|
+
# Represents an error encountered when deleting a node from a SageMaker
|
2939
|
+
# HyperPod cluster.
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] code
|
2942
|
+
# The error code associated with the error encountered when deleting a
|
2943
|
+
# node.
|
2944
|
+
#
|
2945
|
+
# The code provides information about the specific issue encountered,
|
2946
|
+
# such as the node not being found, the node's status being invalid
|
2947
|
+
# for deletion, or the node ID being in use by another process.
|
2948
|
+
# @return [String]
|
2949
|
+
#
|
2950
|
+
# @!attribute [rw] message
|
2951
|
+
# A message describing the error encountered when deleting a node.
|
2952
|
+
# @return [String]
|
2953
|
+
#
|
2954
|
+
# @!attribute [rw] node_id
|
2955
|
+
# The ID of the node that encountered an error during the deletion
|
2956
|
+
# process.
|
2957
|
+
# @return [String]
|
2958
|
+
#
|
2959
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDeleteClusterNodesError AWS API Documentation
|
2960
|
+
#
|
2961
|
+
class BatchDeleteClusterNodesError < Struct.new(
|
2962
|
+
:code,
|
2963
|
+
:message,
|
2964
|
+
:node_id)
|
2965
|
+
SENSITIVE = []
|
2966
|
+
include Aws::Structure
|
2967
|
+
end
|
2968
|
+
|
2969
|
+
# @!attribute [rw] cluster_name
|
2970
|
+
# The name of the SageMaker HyperPod cluster from which to delete the
|
2971
|
+
# specified nodes.
|
2972
|
+
# @return [String]
|
2973
|
+
#
|
2974
|
+
# @!attribute [rw] node_ids
|
2975
|
+
# A list of node IDs to be deleted from the specified cluster.
|
2976
|
+
#
|
2977
|
+
# <note markdown="1"> For SageMaker HyperPod clusters using the Slurm workload manager,
|
2978
|
+
# you cannot remove instances that are configured as Slurm controller
|
2979
|
+
# nodes.
|
2980
|
+
#
|
2981
|
+
# </note>
|
2982
|
+
# @return [Array<String>]
|
2983
|
+
#
|
2984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDeleteClusterNodesRequest AWS API Documentation
|
2985
|
+
#
|
2986
|
+
class BatchDeleteClusterNodesRequest < Struct.new(
|
2987
|
+
:cluster_name,
|
2988
|
+
:node_ids)
|
2989
|
+
SENSITIVE = []
|
2990
|
+
include Aws::Structure
|
2991
|
+
end
|
2992
|
+
|
2993
|
+
# @!attribute [rw] failed
|
2994
|
+
# A list of errors encountered when deleting the specified nodes.
|
2995
|
+
# @return [Array<Types::BatchDeleteClusterNodesError>]
|
2996
|
+
#
|
2997
|
+
# @!attribute [rw] successful
|
2998
|
+
# A list of node IDs that were successfully deleted from the specified
|
2999
|
+
# cluster.
|
3000
|
+
# @return [Array<String>]
|
3001
|
+
#
|
3002
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDeleteClusterNodesResponse AWS API Documentation
|
3003
|
+
#
|
3004
|
+
class BatchDeleteClusterNodesResponse < Struct.new(
|
3005
|
+
:failed,
|
3006
|
+
:successful)
|
3007
|
+
SENSITIVE = []
|
3008
|
+
include Aws::Structure
|
3009
|
+
end
|
3010
|
+
|
2938
3011
|
# The error code and error description associated with the resource.
|
2939
3012
|
#
|
2940
3013
|
# @!attribute [rw] error_code
|
@@ -8484,6 +8557,11 @@ module Aws::SageMaker
|
|
8484
8557
|
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
8485
8558
|
# @return [Types::ModelPackageModelCard]
|
8486
8559
|
#
|
8560
|
+
# @!attribute [rw] model_life_cycle
|
8561
|
+
# A structure describing the current state of the model in its life
|
8562
|
+
# cycle.
|
8563
|
+
# @return [Types::ModelLifeCycle]
|
8564
|
+
#
|
8487
8565
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
|
8488
8566
|
#
|
8489
8567
|
class CreateModelPackageInput < Struct.new(
|
@@ -8508,7 +8586,8 @@ module Aws::SageMaker
|
|
8508
8586
|
:skip_model_validation,
|
8509
8587
|
:source_uri,
|
8510
8588
|
:security_config,
|
8511
|
-
:model_card
|
8589
|
+
:model_card,
|
8590
|
+
:model_life_cycle)
|
8512
8591
|
SENSITIVE = []
|
8513
8592
|
include Aws::Structure
|
8514
8593
|
end
|
@@ -16287,6 +16366,11 @@ module Aws::SageMaker
|
|
16287
16366
|
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
16288
16367
|
# @return [Types::ModelPackageModelCard]
|
16289
16368
|
#
|
16369
|
+
# @!attribute [rw] model_life_cycle
|
16370
|
+
# A structure describing the current state of the model in its life
|
16371
|
+
# cycle.
|
16372
|
+
# @return [Types::ModelLifeCycle]
|
16373
|
+
#
|
16290
16374
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
|
16291
16375
|
#
|
16292
16376
|
class DescribeModelPackageOutput < Struct.new(
|
@@ -16318,7 +16402,8 @@ module Aws::SageMaker
|
|
16318
16402
|
:skip_model_validation,
|
16319
16403
|
:source_uri,
|
16320
16404
|
:security_config,
|
16321
|
-
:model_card
|
16405
|
+
:model_card,
|
16406
|
+
:model_life_cycle)
|
16322
16407
|
SENSITIVE = []
|
16323
16408
|
include Aws::Structure
|
16324
16409
|
end
|
@@ -32845,6 +32930,31 @@ module Aws::SageMaker
|
|
32845
32930
|
include Aws::Structure
|
32846
32931
|
end
|
32847
32932
|
|
32933
|
+
# A structure describing the current state of the model in its life
|
32934
|
+
# cycle.
|
32935
|
+
#
|
32936
|
+
# @!attribute [rw] stage
|
32937
|
+
# The current stage in the model life cycle.
|
32938
|
+
# @return [String]
|
32939
|
+
#
|
32940
|
+
# @!attribute [rw] stage_status
|
32941
|
+
# The current status of a stage in model life cycle.
|
32942
|
+
# @return [String]
|
32943
|
+
#
|
32944
|
+
# @!attribute [rw] stage_description
|
32945
|
+
# Describes the stage related details.
|
32946
|
+
# @return [String]
|
32947
|
+
#
|
32948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelLifeCycle AWS API Documentation
|
32949
|
+
#
|
32950
|
+
class ModelLifeCycle < Struct.new(
|
32951
|
+
:stage,
|
32952
|
+
:stage_status,
|
32953
|
+
:stage_description)
|
32954
|
+
SENSITIVE = []
|
32955
|
+
include Aws::Structure
|
32956
|
+
end
|
32957
|
+
|
32848
32958
|
# Part of the search expression. You can specify the name and value
|
32849
32959
|
# (domain, task, framework, framework version, task, and model).
|
32850
32960
|
#
|
@@ -33105,6 +33215,11 @@ module Aws::SageMaker
|
|
33105
33215
|
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
33106
33216
|
# @return [Types::ModelPackageModelCard]
|
33107
33217
|
#
|
33218
|
+
# @!attribute [rw] model_life_cycle
|
33219
|
+
# A structure describing the current state of the model in its life
|
33220
|
+
# cycle.
|
33221
|
+
# @return [Types::ModelLifeCycle]
|
33222
|
+
#
|
33108
33223
|
# @!attribute [rw] tags
|
33109
33224
|
# A list of the tags associated with the model package. For more
|
33110
33225
|
# information, see [Tagging Amazon Web Services resources][1] in the
|
@@ -33157,6 +33272,7 @@ module Aws::SageMaker
|
|
33157
33272
|
:source_uri,
|
33158
33273
|
:security_config,
|
33159
33274
|
:model_card,
|
33275
|
+
:model_life_cycle,
|
33160
33276
|
:tags,
|
33161
33277
|
:customer_metadata_properties,
|
33162
33278
|
:drift_check_baselines,
|
@@ -43455,6 +43571,10 @@ module Aws::SageMaker
|
|
43455
43571
|
# The status of the training job.
|
43456
43572
|
# @return [String]
|
43457
43573
|
#
|
43574
|
+
# @!attribute [rw] secondary_status
|
43575
|
+
# The secondary status of the training job.
|
43576
|
+
# @return [String]
|
43577
|
+
#
|
43458
43578
|
# @!attribute [rw] warm_pool_status
|
43459
43579
|
# The status of the warm pool associated with the training job.
|
43460
43580
|
# @return [Types::WarmPoolStatus]
|
@@ -43468,6 +43588,7 @@ module Aws::SageMaker
|
|
43468
43588
|
:training_end_time,
|
43469
43589
|
:last_modified_time,
|
43470
43590
|
:training_job_status,
|
43591
|
+
:secondary_status,
|
43471
43592
|
:warm_pool_status)
|
43472
43593
|
SENSITIVE = []
|
43473
43594
|
include Aws::Structure
|
@@ -46063,6 +46184,16 @@ module Aws::SageMaker
|
|
46063
46184
|
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
46064
46185
|
# @return [Types::ModelPackageModelCard]
|
46065
46186
|
#
|
46187
|
+
# @!attribute [rw] model_life_cycle
|
46188
|
+
# A structure describing the current state of the model in its life
|
46189
|
+
# cycle.
|
46190
|
+
# @return [Types::ModelLifeCycle]
|
46191
|
+
#
|
46192
|
+
# @!attribute [rw] client_token
|
46193
|
+
# A unique token that guarantees that the call to this API is
|
46194
|
+
# idempotent.
|
46195
|
+
# @return [String]
|
46196
|
+
#
|
46066
46197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
|
46067
46198
|
#
|
46068
46199
|
class UpdateModelPackageInput < Struct.new(
|
@@ -46074,7 +46205,9 @@ module Aws::SageMaker
|
|
46074
46205
|
:additional_inference_specifications_to_add,
|
46075
46206
|
:inference_specification,
|
46076
46207
|
:source_uri,
|
46077
|
-
:model_card
|
46208
|
+
:model_card,
|
46209
|
+
:model_life_cycle,
|
46210
|
+
:client_token)
|
46078
46211
|
SENSITIVE = []
|
46079
46212
|
include Aws::Structure
|
46080
46213
|
end
|