aws-sdk-sagemaker 1.391.0 → 1.392.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 +51 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +25 -0
- data/lib/aws-sdk-sagemaker/types.rb +58 -0
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +15 -0
- data/sig/types.rbs +15 -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: e827fbcb46c96eab13cf6f7d74153f5bb085bd6b81871a2e2860d4329406daac
|
|
4
|
+
data.tar.gz: 40e33aa52978ce8d8c7fbf1754f65223ef4c1261e34cc628869954ab778c8932
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39ae1e4833008499f01c9e065138f41803da92e94227d3f78b86274e57850565340a92ad4e285b4e1f94f9fa56ed5e56c328f73e67eb49e8de9cb4678376d273
|
|
7
|
+
data.tar.gz: 5bb4755c3933852118fdbcae29937731e60ed861a90727db55e4a0d17c976b681b333d00b17e9c9d9a8f5b92222b0f57c1e6334edad693c82b8ee6ffff13f2ac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.392.0 (2026-09-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds the ability for customers to attach customer owned Elastic Network Interfaces (ENIs) to HyperPod cluster nodes.
|
|
8
|
+
|
|
4
9
|
1.391.0 (2026-09-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.392.0
|
|
@@ -665,6 +665,56 @@ module Aws::SageMaker
|
|
|
665
665
|
req.send_request(options)
|
|
666
666
|
end
|
|
667
667
|
|
|
668
|
+
# Attaches an elastic network interface (ENI) to a node in a HyperPod
|
|
669
|
+
# cluster.
|
|
670
|
+
#
|
|
671
|
+
# To use this operation, you must have the
|
|
672
|
+
# `sagemaker:AttachClusterNodeNetworkInterface` permission.
|
|
673
|
+
#
|
|
674
|
+
# @option params [required, String] :cluster_name
|
|
675
|
+
# The name or Amazon Resource Name (ARN) of the SageMaker HyperPod
|
|
676
|
+
# cluster that contains the target node.
|
|
677
|
+
#
|
|
678
|
+
# @option params [required, String] :node_id
|
|
679
|
+
# The unique identifier of the cluster node to which you want to attach
|
|
680
|
+
# the network interface. The node must belong to your specified HyperPod
|
|
681
|
+
# cluster and cannot be part of a Restricted Instance Group (RIG).
|
|
682
|
+
#
|
|
683
|
+
# @option params [required, String] :network_interface_id
|
|
684
|
+
# The unique identifier of the elastic network interface (ENI) to
|
|
685
|
+
# attach.
|
|
686
|
+
#
|
|
687
|
+
# @return [Types::AttachClusterNodeNetworkInterfaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
688
|
+
#
|
|
689
|
+
# * {Types::AttachClusterNodeNetworkInterfaceResponse#cluster_arn #cluster_arn} => String
|
|
690
|
+
# * {Types::AttachClusterNodeNetworkInterfaceResponse#node_id #node_id} => String
|
|
691
|
+
# * {Types::AttachClusterNodeNetworkInterfaceResponse#network_interface_id #network_interface_id} => String
|
|
692
|
+
# * {Types::AttachClusterNodeNetworkInterfaceResponse#attachment_id #attachment_id} => String
|
|
693
|
+
#
|
|
694
|
+
# @example Request syntax with placeholder values
|
|
695
|
+
#
|
|
696
|
+
# resp = client.attach_cluster_node_network_interface({
|
|
697
|
+
# cluster_name: "ClusterNameOrArn", # required
|
|
698
|
+
# node_id: "ClusterNodeId", # required
|
|
699
|
+
# network_interface_id: "ClusterNetworkInterfaceId", # required
|
|
700
|
+
# })
|
|
701
|
+
#
|
|
702
|
+
# @example Response structure
|
|
703
|
+
#
|
|
704
|
+
# resp.cluster_arn #=> String
|
|
705
|
+
# resp.node_id #=> String
|
|
706
|
+
# resp.network_interface_id #=> String
|
|
707
|
+
# resp.attachment_id #=> String
|
|
708
|
+
#
|
|
709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AttachClusterNodeNetworkInterface AWS API Documentation
|
|
710
|
+
#
|
|
711
|
+
# @overload attach_cluster_node_network_interface(params = {})
|
|
712
|
+
# @param [Hash] params ({})
|
|
713
|
+
def attach_cluster_node_network_interface(params = {}, options = {})
|
|
714
|
+
req = build_request(:attach_cluster_node_network_interface, params)
|
|
715
|
+
req.send_request(options)
|
|
716
|
+
end
|
|
717
|
+
|
|
668
718
|
# Attaches your Amazon Elastic Block Store (Amazon EBS) volume to a node
|
|
669
719
|
# in your EKS orchestrated HyperPod cluster.
|
|
670
720
|
#
|
|
@@ -34710,7 +34760,7 @@ module Aws::SageMaker
|
|
|
34710
34760
|
tracer: tracer
|
|
34711
34761
|
)
|
|
34712
34762
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
34713
|
-
context[:gem_version] = '1.
|
|
34763
|
+
context[:gem_version] = '1.392.0'
|
|
34714
34764
|
Seahorse::Client::Request.new(handlers, context)
|
|
34715
34765
|
end
|
|
34716
34766
|
|
|
@@ -200,6 +200,8 @@ module Aws::SageMaker
|
|
|
200
200
|
AthenaResultCompressionType = Shapes::StringShape.new(name: 'AthenaResultCompressionType')
|
|
201
201
|
AthenaResultFormat = Shapes::StringShape.new(name: 'AthenaResultFormat')
|
|
202
202
|
AthenaWorkGroup = Shapes::StringShape.new(name: 'AthenaWorkGroup')
|
|
203
|
+
AttachClusterNodeNetworkInterfaceRequest = Shapes::StructureShape.new(name: 'AttachClusterNodeNetworkInterfaceRequest')
|
|
204
|
+
AttachClusterNodeNetworkInterfaceResponse = Shapes::StructureShape.new(name: 'AttachClusterNodeNetworkInterfaceResponse')
|
|
203
205
|
AttachClusterNodeVolumeRequest = Shapes::StructureShape.new(name: 'AttachClusterNodeVolumeRequest')
|
|
204
206
|
AttachClusterNodeVolumeResponse = Shapes::StructureShape.new(name: 'AttachClusterNodeVolumeResponse')
|
|
205
207
|
AttributeName = Shapes::StringShape.new(name: 'AttributeName')
|
|
@@ -492,7 +494,9 @@ module Aws::SageMaker
|
|
|
492
494
|
ClusterName = Shapes::StringShape.new(name: 'ClusterName')
|
|
493
495
|
ClusterNameOrArn = Shapes::StringShape.new(name: 'ClusterNameOrArn')
|
|
494
496
|
ClusterNetworkInterface = Shapes::StructureShape.new(name: 'ClusterNetworkInterface')
|
|
497
|
+
ClusterNetworkInterfaceAttachmentId = Shapes::StringShape.new(name: 'ClusterNetworkInterfaceAttachmentId')
|
|
495
498
|
ClusterNetworkInterfaceDetails = Shapes::StructureShape.new(name: 'ClusterNetworkInterfaceDetails')
|
|
499
|
+
ClusterNetworkInterfaceId = Shapes::StringShape.new(name: 'ClusterNetworkInterfaceId')
|
|
496
500
|
ClusterNodeDetails = Shapes::StructureShape.new(name: 'ClusterNodeDetails')
|
|
497
501
|
ClusterNodeId = Shapes::StringShape.new(name: 'ClusterNodeId')
|
|
498
502
|
ClusterNodeIds = Shapes::ListShape.new(name: 'ClusterNodeIds')
|
|
@@ -3515,6 +3519,17 @@ module Aws::SageMaker
|
|
|
3515
3519
|
AthenaDatasetDefinition.add_member(:output_compression, Shapes::ShapeRef.new(shape: AthenaResultCompressionType, location_name: "OutputCompression"))
|
|
3516
3520
|
AthenaDatasetDefinition.struct_class = Types::AthenaDatasetDefinition
|
|
3517
3521
|
|
|
3522
|
+
AttachClusterNodeNetworkInterfaceRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
|
3523
|
+
AttachClusterNodeNetworkInterfaceRequest.add_member(:node_id, Shapes::ShapeRef.new(shape: ClusterNodeId, required: true, location_name: "NodeId"))
|
|
3524
|
+
AttachClusterNodeNetworkInterfaceRequest.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: ClusterNetworkInterfaceId, required: true, location_name: "NetworkInterfaceId"))
|
|
3525
|
+
AttachClusterNodeNetworkInterfaceRequest.struct_class = Types::AttachClusterNodeNetworkInterfaceRequest
|
|
3526
|
+
|
|
3527
|
+
AttachClusterNodeNetworkInterfaceResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
|
|
3528
|
+
AttachClusterNodeNetworkInterfaceResponse.add_member(:node_id, Shapes::ShapeRef.new(shape: ClusterNodeId, required: true, location_name: "NodeId"))
|
|
3529
|
+
AttachClusterNodeNetworkInterfaceResponse.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: ClusterNetworkInterfaceId, required: true, location_name: "NetworkInterfaceId"))
|
|
3530
|
+
AttachClusterNodeNetworkInterfaceResponse.add_member(:attachment_id, Shapes::ShapeRef.new(shape: ClusterNetworkInterfaceAttachmentId, required: true, location_name: "AttachmentId"))
|
|
3531
|
+
AttachClusterNodeNetworkInterfaceResponse.struct_class = Types::AttachClusterNodeNetworkInterfaceResponse
|
|
3532
|
+
|
|
3518
3533
|
AttachClusterNodeVolumeRequest.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
|
|
3519
3534
|
AttachClusterNodeVolumeRequest.add_member(:node_id, Shapes::ShapeRef.new(shape: ClusterNodeId, required: true, location_name: "NodeId"))
|
|
3520
3535
|
AttachClusterNodeVolumeRequest.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "VolumeId"))
|
|
@@ -13468,6 +13483,16 @@ module Aws::SageMaker
|
|
|
13468
13483
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
|
13469
13484
|
end)
|
|
13470
13485
|
|
|
13486
|
+
api.add_operation(:attach_cluster_node_network_interface, Seahorse::Model::Operation.new.tap do |o|
|
|
13487
|
+
o.name = "AttachClusterNodeNetworkInterface"
|
|
13488
|
+
o.http_method = "POST"
|
|
13489
|
+
o.http_request_uri = "/"
|
|
13490
|
+
o.input = Shapes::ShapeRef.new(shape: AttachClusterNodeNetworkInterfaceRequest)
|
|
13491
|
+
o.output = Shapes::ShapeRef.new(shape: AttachClusterNodeNetworkInterfaceResponse)
|
|
13492
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
13493
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
|
13494
|
+
end)
|
|
13495
|
+
|
|
13471
13496
|
api.add_operation(:attach_cluster_node_volume, Seahorse::Model::Operation.new.tap do |o|
|
|
13472
13497
|
o.name = "AttachClusterNodeVolume"
|
|
13473
13498
|
o.http_method = "POST"
|
|
@@ -2768,6 +2768,64 @@ module Aws::SageMaker
|
|
|
2768
2768
|
include Aws::Structure
|
|
2769
2769
|
end
|
|
2770
2770
|
|
|
2771
|
+
# @!attribute [rw] cluster_name
|
|
2772
|
+
# The name or Amazon Resource Name (ARN) of the SageMaker HyperPod
|
|
2773
|
+
# cluster that contains the target node.
|
|
2774
|
+
# @return [String]
|
|
2775
|
+
#
|
|
2776
|
+
# @!attribute [rw] node_id
|
|
2777
|
+
# The unique identifier of the cluster node to which you want to
|
|
2778
|
+
# attach the network interface. The node must belong to your specified
|
|
2779
|
+
# HyperPod cluster and cannot be part of a Restricted Instance Group
|
|
2780
|
+
# (RIG).
|
|
2781
|
+
# @return [String]
|
|
2782
|
+
#
|
|
2783
|
+
# @!attribute [rw] network_interface_id
|
|
2784
|
+
# The unique identifier of the elastic network interface (ENI) to
|
|
2785
|
+
# attach.
|
|
2786
|
+
# @return [String]
|
|
2787
|
+
#
|
|
2788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AttachClusterNodeNetworkInterfaceRequest AWS API Documentation
|
|
2789
|
+
#
|
|
2790
|
+
class AttachClusterNodeNetworkInterfaceRequest < Struct.new(
|
|
2791
|
+
:cluster_name,
|
|
2792
|
+
:node_id,
|
|
2793
|
+
:network_interface_id)
|
|
2794
|
+
SENSITIVE = []
|
|
2795
|
+
include Aws::Structure
|
|
2796
|
+
end
|
|
2797
|
+
|
|
2798
|
+
# @!attribute [rw] cluster_arn
|
|
2799
|
+
# The Amazon Resource Name (ARN) of your SageMaker HyperPod cluster
|
|
2800
|
+
# where the network interface attachment operation was performed.
|
|
2801
|
+
# @return [String]
|
|
2802
|
+
#
|
|
2803
|
+
# @!attribute [rw] node_id
|
|
2804
|
+
# The unique identifier of the cluster node where your network
|
|
2805
|
+
# interface was attached.
|
|
2806
|
+
# @return [String]
|
|
2807
|
+
#
|
|
2808
|
+
# @!attribute [rw] network_interface_id
|
|
2809
|
+
# The unique identifier of the elastic network interface (ENI) that
|
|
2810
|
+
# was attached.
|
|
2811
|
+
# @return [String]
|
|
2812
|
+
#
|
|
2813
|
+
# @!attribute [rw] attachment_id
|
|
2814
|
+
# The unique identifier of the network interface attachment. Use this
|
|
2815
|
+
# value to reference or detach the network interface later.
|
|
2816
|
+
# @return [String]
|
|
2817
|
+
#
|
|
2818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AttachClusterNodeNetworkInterfaceResponse AWS API Documentation
|
|
2819
|
+
#
|
|
2820
|
+
class AttachClusterNodeNetworkInterfaceResponse < Struct.new(
|
|
2821
|
+
:cluster_arn,
|
|
2822
|
+
:node_id,
|
|
2823
|
+
:network_interface_id,
|
|
2824
|
+
:attachment_id)
|
|
2825
|
+
SENSITIVE = []
|
|
2826
|
+
include Aws::Structure
|
|
2827
|
+
end
|
|
2828
|
+
|
|
2771
2829
|
# @!attribute [rw] cluster_arn
|
|
2772
2830
|
# The Amazon Resource Name (ARN) of your SageMaker HyperPod cluster
|
|
2773
2831
|
# containing the target node. Your cluster must use EKS as the
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -120,6 +120,21 @@ module Aws
|
|
|
120
120
|
) -> _AssociateTrialComponentResponseSuccess
|
|
121
121
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateTrialComponentResponseSuccess
|
|
122
122
|
|
|
123
|
+
interface _AttachClusterNodeNetworkInterfaceResponseSuccess
|
|
124
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AttachClusterNodeNetworkInterfaceResponse]
|
|
125
|
+
def cluster_arn: () -> ::String
|
|
126
|
+
def node_id: () -> ::String
|
|
127
|
+
def network_interface_id: () -> ::String
|
|
128
|
+
def attachment_id: () -> ::String
|
|
129
|
+
end
|
|
130
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#attach_cluster_node_network_interface-instance_method
|
|
131
|
+
def attach_cluster_node_network_interface: (
|
|
132
|
+
cluster_name: ::String,
|
|
133
|
+
node_id: ::String,
|
|
134
|
+
network_interface_id: ::String
|
|
135
|
+
) -> _AttachClusterNodeNetworkInterfaceResponseSuccess
|
|
136
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachClusterNodeNetworkInterfaceResponseSuccess
|
|
137
|
+
|
|
123
138
|
interface _AttachClusterNodeVolumeResponseSuccess
|
|
124
139
|
include ::Seahorse::Client::_ResponseSuccess[Types::AttachClusterNodeVolumeResponse]
|
|
125
140
|
def cluster_arn: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -551,6 +551,21 @@ module Aws::SageMaker
|
|
|
551
551
|
SENSITIVE: []
|
|
552
552
|
end
|
|
553
553
|
|
|
554
|
+
class AttachClusterNodeNetworkInterfaceRequest
|
|
555
|
+
attr_accessor cluster_name: ::String
|
|
556
|
+
attr_accessor node_id: ::String
|
|
557
|
+
attr_accessor network_interface_id: ::String
|
|
558
|
+
SENSITIVE: []
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
class AttachClusterNodeNetworkInterfaceResponse
|
|
562
|
+
attr_accessor cluster_arn: ::String
|
|
563
|
+
attr_accessor node_id: ::String
|
|
564
|
+
attr_accessor network_interface_id: ::String
|
|
565
|
+
attr_accessor attachment_id: ::String
|
|
566
|
+
SENSITIVE: []
|
|
567
|
+
end
|
|
568
|
+
|
|
554
569
|
class AttachClusterNodeVolumeRequest
|
|
555
570
|
attr_accessor cluster_arn: ::String
|
|
556
571
|
attr_accessor node_id: ::String
|