aws-sdk-sagemaker 1.279.0 → 1.280.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7829909dfcb7888d0c2eb5a22c6a1a7b0b5e15f352df42e5fc63d392cb7d16f6
4
- data.tar.gz: d611640d5a15e070969a40bfdaaf84647d3bd10f892225f030aa6f6b73a78785
3
+ metadata.gz: 1cb524b7661055afb9c2d218a10c642fe753ede3813624c6ee14df8d6b16d7e5
4
+ data.tar.gz: 02d641a3b2710078c3d4e383b2137a9ad241b40baf0c925375b92c8e55d89cfe
5
5
  SHA512:
6
- metadata.gz: 9b36a04931d6ecda070057d16b8f3f2719ca8bfc07e46cdd11091de49e2ac766b4894964b89ff9604d1cffbe30f4b5e141b46c41c0351b020f8dc424fbd0097c
7
- data.tar.gz: 1445e80a5f69d11c9acad6d6e64a8de48459cc92a321ccc64fa201ebc04cf118007d5c93c3dae0ab0f3caddff252b31471b5f6e7337464636c56137eb5563809
6
+ metadata.gz: c1d7d1f522302713f87364cff25f14df3ce55931eeeab408e6a60ce1d45d4d62cf2692b00e21392c60289de852065c9d1db847a132c906d55d20ca53bc024830
7
+ data.tar.gz: 582181239efc4347e144f81678229be580f5dbc8c49c968a6ca893970445abddbd153df5513a54e1e79e27fe8c04b46a62fc7f7665fce6221f03f7fb6aa8831d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.280.0 (2025-01-08)
5
+ ------------------
6
+
7
+ * Feature - Adds support for IPv6 for SageMaker HyperPod cluster nodes.
8
+
4
9
  1.279.0 (2025-01-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.279.0
1
+ 1.280.0
@@ -12798,6 +12798,7 @@ module Aws::SageMaker
12798
12798
  # resp.node_details.instance_storage_configs #=> Array
12799
12799
  # resp.node_details.instance_storage_configs[0].ebs_volume_config.volume_size_in_gb #=> Integer
12800
12800
  # resp.node_details.private_primary_ip #=> String
12801
+ # resp.node_details.private_primary_ipv_6 #=> String
12801
12802
  # resp.node_details.private_dns_hostname #=> String
12802
12803
  # resp.node_details.placement.availability_zone #=> String
12803
12804
  # resp.node_details.placement.availability_zone_id #=> String
@@ -29445,7 +29446,7 @@ module Aws::SageMaker
29445
29446
  tracer: tracer
29446
29447
  )
29447
29448
  context[:gem_name] = 'aws-sdk-sagemaker'
29448
- context[:gem_version] = '1.279.0'
29449
+ context[:gem_version] = '1.280.0'
29449
29450
  Seahorse::Client::Request.new(handlers, context)
29450
29451
  end
29451
29452
 
@@ -302,6 +302,7 @@ module Aws::SageMaker
302
302
  ClusterOrchestratorEksConfig = Shapes::StructureShape.new(name: 'ClusterOrchestratorEksConfig')
303
303
  ClusterPrivateDnsHostname = Shapes::StringShape.new(name: 'ClusterPrivateDnsHostname')
304
304
  ClusterPrivatePrimaryIp = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIp')
305
+ ClusterPrivatePrimaryIpv6 = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIpv6')
305
306
  ClusterSchedulerConfigArn = Shapes::StringShape.new(name: 'ClusterSchedulerConfigArn')
306
307
  ClusterSchedulerConfigId = Shapes::StringShape.new(name: 'ClusterSchedulerConfigId')
307
308
  ClusterSchedulerConfigSummary = Shapes::StructureShape.new(name: 'ClusterSchedulerConfigSummary')
@@ -3176,6 +3177,7 @@ module Aws::SageMaker
3176
3177
  ClusterNodeDetails.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: ClusterThreadsPerCore, location_name: "ThreadsPerCore"))
3177
3178
  ClusterNodeDetails.add_member(:instance_storage_configs, Shapes::ShapeRef.new(shape: ClusterInstanceStorageConfigs, location_name: "InstanceStorageConfigs"))
3178
3179
  ClusterNodeDetails.add_member(:private_primary_ip, Shapes::ShapeRef.new(shape: ClusterPrivatePrimaryIp, location_name: "PrivatePrimaryIp"))
3180
+ ClusterNodeDetails.add_member(:private_primary_ipv_6, Shapes::ShapeRef.new(shape: ClusterPrivatePrimaryIpv6, location_name: "PrivatePrimaryIpv6"))
3179
3181
  ClusterNodeDetails.add_member(:private_dns_hostname, Shapes::ShapeRef.new(shape: ClusterPrivateDnsHostname, location_name: "PrivateDnsHostname"))
3180
3182
  ClusterNodeDetails.add_member(:placement, Shapes::ShapeRef.new(shape: ClusterInstancePlacement, location_name: "Placement"))
3181
3183
  ClusterNodeDetails.struct_class = Types::ClusterNodeDetails
@@ -4547,6 +4547,11 @@ module Aws::SageMaker
4547
4547
  # node.
4548
4548
  # @return [String]
4549
4549
  #
4550
+ # @!attribute [rw] private_primary_ipv_6
4551
+ # The private primary IPv6 address of the SageMaker HyperPod cluster
4552
+ # node.
4553
+ # @return [String]
4554
+ #
4550
4555
  # @!attribute [rw] private_dns_hostname
4551
4556
  # The private DNS hostname of the SageMaker HyperPod cluster node.
4552
4557
  # @return [String]
@@ -4568,6 +4573,7 @@ module Aws::SageMaker
4568
4573
  :threads_per_core,
4569
4574
  :instance_storage_configs,
4570
4575
  :private_primary_ip,
4576
+ :private_primary_ipv_6,
4571
4577
  :private_dns_hostname,
4572
4578
  :placement)
4573
4579
  SENSITIVE = []
@@ -34696,8 +34702,8 @@ module Aws::SageMaker
34696
34702
  # @return [String]
34697
34703
  #
34698
34704
  # @!attribute [rw] image
34699
- # The Amazon EC2 Container Registry (Amazon ECR) path where inference
34700
- # code is stored.
34705
+ # The Amazon EC2 Container Registry path where inference code is
34706
+ # stored.
34701
34707
  #
34702
34708
  # If you are using your own custom algorithm instead of an algorithm
34703
34709
  # provided by SageMaker, the inference code must meet SageMaker
@@ -41609,7 +41615,7 @@ module Aws::SageMaker
41609
41615
  # manifest file containing a list of object keys that you want
41610
41616
  # SageMaker to use for model training.
41611
41617
  #
41612
- # If you choose `AugmentedManifestFile`, S3Uri identifies an object
41618
+ # If you choose `AugmentedManifestFile`, `S3Uri` identifies an object
41613
41619
  # that is an augmented manifest file in JSON lines format. This file
41614
41620
  # contains the data you want to use for model training.
41615
41621
  # `AugmentedManifestFile` can only be used if the Channel's input
@@ -41820,7 +41826,7 @@ module Aws::SageMaker
41820
41826
  # @return [String]
41821
41827
  #
41822
41828
  # @!attribute [rw] manifest_etag
41823
- # The ETag associated with Manifest S3URI.
41829
+ # The ETag associated with Manifest S3 URI.
41824
41830
  # @return [String]
41825
41831
  #
41826
41832
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3ModelDataSource AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.279.0'
58
+ GEM_VERSION = '1.280.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -792,6 +792,7 @@ module Aws::SageMaker
792
792
  attr_accessor threads_per_core: ::Integer
793
793
  attr_accessor instance_storage_configs: ::Array[Types::ClusterInstanceStorageConfig]
794
794
  attr_accessor private_primary_ip: ::String
795
+ attr_accessor private_primary_ipv_6: ::String
795
796
  attr_accessor private_dns_hostname: ::String
796
797
  attr_accessor placement: Types::ClusterInstancePlacement
797
798
  SENSITIVE: []
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.279.0
4
+ version: 1.280.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-01-02 00:00:00.000000000 Z
11
+ date: 2025-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core