aws-sdk-sagemaker 1.271.0 → 1.273.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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')
@@ -2781,6 +2787,21 @@ module Aws::SageMaker
2781
2787
  BatchDataCaptureConfig.add_member(:generate_inference_id, Shapes::ShapeRef.new(shape: Boolean, location_name: "GenerateInferenceId"))
2782
2788
  BatchDataCaptureConfig.struct_class = Types::BatchDataCaptureConfig
2783
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
+
2784
2805
  BatchDescribeModelPackageError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ErrorCode"))
2785
2806
  BatchDescribeModelPackageError.add_member(:error_response, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ErrorResponse"))
2786
2807
  BatchDescribeModelPackageError.struct_class = Types::BatchDescribeModelPackageError
@@ -3030,6 +3051,8 @@ module Aws::SageMaker
3030
3051
  ClusterNodeDetails.add_member(:placement, Shapes::ShapeRef.new(shape: ClusterInstancePlacement, location_name: "Placement"))
3031
3052
  ClusterNodeDetails.struct_class = Types::ClusterNodeDetails
3032
3053
 
3054
+ ClusterNodeIds.member = Shapes::ShapeRef.new(shape: ClusterNodeId)
3055
+
3033
3056
  ClusterNodeSummaries.member = Shapes::ShapeRef.new(shape: ClusterNodeSummary)
3034
3057
 
3035
3058
  ClusterNodeSummary.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, required: true, location_name: "InstanceGroupName"))
@@ -9752,6 +9775,7 @@ module Aws::SageMaker
9752
9775
  TrainingJobSummary.add_member(:training_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "TrainingEndTime"))
9753
9776
  TrainingJobSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
9754
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"))
9755
9779
  TrainingJobSummary.add_member(:warm_pool_status, Shapes::ShapeRef.new(shape: WarmPoolStatus, location_name: "WarmPoolStatus"))
9756
9780
  TrainingJobSummary.struct_class = Types::TrainingJobSummary
9757
9781
 
@@ -10525,6 +10549,15 @@ module Aws::SageMaker
10525
10549
  o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
10526
10550
  end)
10527
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
+
10528
10561
  api.add_operation(:batch_describe_model_package, Seahorse::Model::Operation.new.tap do |o|
10529
10562
  o.name = "BatchDescribeModelPackage"
10530
10563
  o.http_method = "POST"