aws-sdk-sagemaker 1.289.0 → 1.290.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 +6 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +4 -0
- data/lib/aws-sdk-sagemaker/types.rb +7 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7585a2b33cf3be98151203eec0f678e5e8369e91dcc4b82d1679de664b30dcba
|
4
|
+
data.tar.gz: ee5136a0505064cc45e1da2accf1de18d1c0cd2ccc4a12781c69c82a2a8fe6d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05a5926baaf8aba419097937e437f9505781c8e62e0a247b612be9a9a51b9aba7de1a8b9e05311d4e94b81e81639a10f748504edda65b40db123bc96dcdcaaac
|
7
|
+
data.tar.gz: 346974375a5d32dd751baa5c705b118c3a106986e8afb36ad2751121440bb061d71c3bb442cf58563a3126304e95b342c74fdd5433438938a399f8a52de862cd
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.290.0 (2025-02-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added new capability in the UpdateCluster operation to remove instance groups from your SageMaker HyperPod cluster.
|
8
|
+
|
4
9
|
1.289.0 (2025-02-19)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.290.0
|
@@ -26207,6 +26207,10 @@ module Aws::SageMaker
|
|
26207
26207
|
# The node recovery mode to be applied to the SageMaker HyperPod
|
26208
26208
|
# cluster.
|
26209
26209
|
#
|
26210
|
+
# @option params [Array<String>] :instance_groups_to_delete
|
26211
|
+
# Specify the names of the instance groups to delete. Use a single `,`
|
26212
|
+
# as the separator between multiple names.
|
26213
|
+
#
|
26210
26214
|
# @return [Types::UpdateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26211
26215
|
#
|
26212
26216
|
# * {Types::UpdateClusterResponse#cluster_arn #cluster_arn} => String
|
@@ -26242,6 +26246,7 @@ module Aws::SageMaker
|
|
26242
26246
|
# },
|
26243
26247
|
# ],
|
26244
26248
|
# node_recovery: "Automatic", # accepts Automatic, None
|
26249
|
+
# instance_groups_to_delete: ["ClusterInstanceGroupName"],
|
26245
26250
|
# })
|
26246
26251
|
#
|
26247
26252
|
# @example Response structure
|
@@ -29497,7 +29502,7 @@ module Aws::SageMaker
|
|
29497
29502
|
tracer: tracer
|
29498
29503
|
)
|
29499
29504
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
29500
|
-
context[:gem_version] = '1.
|
29505
|
+
context[:gem_version] = '1.290.0'
|
29501
29506
|
Seahorse::Client::Request.new(handlers, context)
|
29502
29507
|
end
|
29503
29508
|
|
@@ -281,6 +281,7 @@ module Aws::SageMaker
|
|
281
281
|
ClusterInstanceGroupName = Shapes::StringShape.new(name: 'ClusterInstanceGroupName')
|
282
282
|
ClusterInstanceGroupSpecification = Shapes::StructureShape.new(name: 'ClusterInstanceGroupSpecification')
|
283
283
|
ClusterInstanceGroupSpecifications = Shapes::ListShape.new(name: 'ClusterInstanceGroupSpecifications')
|
284
|
+
ClusterInstanceGroupsToDelete = Shapes::ListShape.new(name: 'ClusterInstanceGroupsToDelete')
|
284
285
|
ClusterInstancePlacement = Shapes::StructureShape.new(name: 'ClusterInstancePlacement')
|
285
286
|
ClusterInstanceStatus = Shapes::StringShape.new(name: 'ClusterInstanceStatus')
|
286
287
|
ClusterInstanceStatusDetails = Shapes::StructureShape.new(name: 'ClusterInstanceStatusDetails')
|
@@ -3147,6 +3148,8 @@ module Aws::SageMaker
|
|
3147
3148
|
|
3148
3149
|
ClusterInstanceGroupSpecifications.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecification)
|
3149
3150
|
|
3151
|
+
ClusterInstanceGroupsToDelete.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupName)
|
3152
|
+
|
3150
3153
|
ClusterInstancePlacement.add_member(:availability_zone, Shapes::ShapeRef.new(shape: ClusterAvailabilityZone, location_name: "AvailabilityZone"))
|
3151
3154
|
ClusterInstancePlacement.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: ClusterAvailabilityZoneId, location_name: "AvailabilityZoneId"))
|
3152
3155
|
ClusterInstancePlacement.struct_class = Types::ClusterInstancePlacement
|
@@ -10561,6 +10564,7 @@ module Aws::SageMaker
|
|
10561
10564
|
UpdateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
10562
10565
|
UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, required: true, location_name: "InstanceGroups"))
|
10563
10566
|
UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
10567
|
+
UpdateClusterRequest.add_member(:instance_groups_to_delete, Shapes::ShapeRef.new(shape: ClusterInstanceGroupsToDelete, location_name: "InstanceGroupsToDelete"))
|
10564
10568
|
UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
|
10565
10569
|
|
10566
10570
|
UpdateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
|
@@ -47402,12 +47402,18 @@ module Aws::SageMaker
|
|
47402
47402
|
# cluster.
|
47403
47403
|
# @return [String]
|
47404
47404
|
#
|
47405
|
+
# @!attribute [rw] instance_groups_to_delete
|
47406
|
+
# Specify the names of the instance groups to delete. Use a single `,`
|
47407
|
+
# as the separator between multiple names.
|
47408
|
+
# @return [Array<String>]
|
47409
|
+
#
|
47405
47410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterRequest AWS API Documentation
|
47406
47411
|
#
|
47407
47412
|
class UpdateClusterRequest < Struct.new(
|
47408
47413
|
:cluster_name,
|
47409
47414
|
:instance_groups,
|
47410
|
-
:node_recovery
|
47415
|
+
:node_recovery,
|
47416
|
+
:instance_groups_to_delete)
|
47411
47417
|
SENSITIVE = []
|
47412
47418
|
include Aws::Structure
|
47413
47419
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -8526,7 +8526,8 @@ module Aws
|
|
8526
8526
|
}?
|
8527
8527
|
},
|
8528
8528
|
],
|
8529
|
-
?node_recovery: ("Automatic" | "None")
|
8529
|
+
?node_recovery: ("Automatic" | "None"),
|
8530
|
+
?instance_groups_to_delete: Array[::String]
|
8530
8531
|
) -> _UpdateClusterResponseSuccess
|
8531
8532
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterResponseSuccess
|
8532
8533
|
|
data/sig/types.rbs
CHANGED
@@ -9869,6 +9869,7 @@ module Aws::SageMaker
|
|
9869
9869
|
attr_accessor cluster_name: ::String
|
9870
9870
|
attr_accessor instance_groups: ::Array[Types::ClusterInstanceGroupSpecification]
|
9871
9871
|
attr_accessor node_recovery: ("Automatic" | "None")
|
9872
|
+
attr_accessor instance_groups_to_delete: ::Array[::String]
|
9872
9873
|
SENSITIVE: []
|
9873
9874
|
end
|
9874
9875
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sagemaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.290.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|