aws-sdk-pcs 1.24.0 → 1.25.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: 7ceb33890e6b378cdcf3d4df60a9bf784d64b9dd5e442ac0ffeece81c64263ab
4
- data.tar.gz: 4042d07e7397011dca51de53f3b572d56a237d63357e091929e7950b69e22319
3
+ metadata.gz: 2650ae07229700616f0e6c536b01f5945fdefe4b156ce050ce349471d234f274
4
+ data.tar.gz: 06f0082874d8caa9fb1aa25870c4104db67dc835524c90f6fa9a6cdc88d25f5e
5
5
  SHA512:
6
- metadata.gz: cde570ba2441efa933aaa4048d1ec7f36ea6abb2b59437bd592dad8bc44881a1eb7325c68335593efe6abda25f3005e4860808be2e6c38bb46a971f621dbefe0
7
- data.tar.gz: d7efb00993d0f307e0177adccbc518519b8b3c7e0a96b2e39fb16849c530d5f7276b86b9365e0570f3c6d62d6651331ccde6c2e5c0dfde3ef731853a026d7608
6
+ metadata.gz: c80302241b93005d94188adf79d1c65944296609a86a0c421e1cbf09746457a7ba00d685405d3eb760fcf17932ee45f8ce213248a7dc15ccdf06d0e00c93d8ac
7
+ data.tar.gz: ab90b247adf078a767cafe447324bf6640d4693db1a4929e8d85043ef079f67a1f8058c9d62097f4cbf8d5ced77ced5e199670a91adb60c7e9a806ccd3112952
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2025-08-01)
5
+ ------------------
6
+
7
+ * Feature - Add support for IPv6 Networking for Clusters.
8
+
4
9
  1.24.0 (2025-07-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.25.0
@@ -557,6 +557,7 @@ module Aws::PCS
557
557
  # networking: { # required
558
558
  # subnet_ids: ["SubnetId"],
559
559
  # security_group_ids: ["SecurityGroupId"],
560
+ # network_type: "IPV4", # accepts IPV4, IPV6
560
561
  # },
561
562
  # slurm_configuration: {
562
563
  # scale_down_idle_time_in_seconds: 1,
@@ -600,10 +601,12 @@ module Aws::PCS
600
601
  # resp.cluster.networking.subnet_ids[0] #=> String
601
602
  # resp.cluster.networking.security_group_ids #=> Array
602
603
  # resp.cluster.networking.security_group_ids[0] #=> String
604
+ # resp.cluster.networking.network_type #=> String, one of "IPV4", "IPV6"
603
605
  # resp.cluster.endpoints #=> Array
604
606
  # resp.cluster.endpoints[0].type #=> String, one of "SLURMCTLD", "SLURMDBD"
605
607
  # resp.cluster.endpoints[0].private_ip_address #=> String
606
608
  # resp.cluster.endpoints[0].public_ip_address #=> String
609
+ # resp.cluster.endpoints[0].ipv6_address #=> String
607
610
  # resp.cluster.endpoints[0].port #=> String
608
611
  # resp.cluster.error_info #=> Array
609
612
  # resp.cluster.error_info[0].code #=> String
@@ -1022,10 +1025,12 @@ module Aws::PCS
1022
1025
  # resp.cluster.networking.subnet_ids[0] #=> String
1023
1026
  # resp.cluster.networking.security_group_ids #=> Array
1024
1027
  # resp.cluster.networking.security_group_ids[0] #=> String
1028
+ # resp.cluster.networking.network_type #=> String, one of "IPV4", "IPV6"
1025
1029
  # resp.cluster.endpoints #=> Array
1026
1030
  # resp.cluster.endpoints[0].type #=> String, one of "SLURMCTLD", "SLURMDBD"
1027
1031
  # resp.cluster.endpoints[0].private_ip_address #=> String
1028
1032
  # resp.cluster.endpoints[0].public_ip_address #=> String
1033
+ # resp.cluster.endpoints[0].ipv6_address #=> String
1029
1034
  # resp.cluster.endpoints[0].port #=> String
1030
1035
  # resp.cluster.error_info #=> Array
1031
1036
  # resp.cluster.error_info[0].code #=> String
@@ -1364,6 +1369,7 @@ module Aws::PCS
1364
1369
  # resp.endpoints[0].type #=> String, one of "SLURMCTLD", "SLURMDBD"
1365
1370
  # resp.endpoints[0].private_ip_address #=> String
1366
1371
  # resp.endpoints[0].public_ip_address #=> String
1372
+ # resp.endpoints[0].ipv6_address #=> String
1367
1373
  # resp.endpoints[0].port #=> String
1368
1374
  #
1369
1375
  # @see http://docs.aws.amazon.com/goto/WebAPI/pcs-2023-02-10/RegisterComputeNodeGroupInstance AWS API Documentation
@@ -1664,7 +1670,7 @@ module Aws::PCS
1664
1670
  tracer: tracer
1665
1671
  )
1666
1672
  context[:gem_name] = 'aws-sdk-pcs'
1667
- context[:gem_version] = '1.24.0'
1673
+ context[:gem_version] = '1.25.0'
1668
1674
  Seahorse::Client::Request.new(handlers, context)
1669
1675
  end
1670
1676
 
@@ -82,6 +82,7 @@ module Aws::PCS
82
82
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
83
83
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
84
84
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
85
+ NetworkType = Shapes::StringShape.new(name: 'NetworkType')
85
86
  Networking = Shapes::StructureShape.new(name: 'Networking')
86
87
  NetworkingRequest = Shapes::StructureShape.new(name: 'NetworkingRequest')
87
88
  PurchaseOption = Shapes::StringShape.new(name: 'PurchaseOption')
@@ -296,6 +297,7 @@ module Aws::PCS
296
297
  Endpoint.add_member(:type, Shapes::ShapeRef.new(shape: EndpointType, required: true, location_name: "type"))
297
298
  Endpoint.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: String, required: true, location_name: "privateIpAddress"))
298
299
  Endpoint.add_member(:public_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "publicIpAddress"))
300
+ Endpoint.add_member(:ipv6_address, Shapes::ShapeRef.new(shape: String, location_name: "ipv6Address"))
299
301
  Endpoint.add_member(:port, Shapes::ShapeRef.new(shape: String, required: true, location_name: "port"))
300
302
  Endpoint.struct_class = Types::Endpoint
301
303
 
@@ -369,10 +371,12 @@ module Aws::PCS
369
371
 
370
372
  Networking.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, location_name: "subnetIds"))
371
373
  Networking.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "securityGroupIds"))
374
+ Networking.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
372
375
  Networking.struct_class = Types::Networking
373
376
 
374
377
  NetworkingRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, location_name: "subnetIds"))
375
378
  NetworkingRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "securityGroupIds"))
379
+ NetworkingRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
376
380
  NetworkingRequest.struct_class = Types::NetworkingRequest
377
381
 
378
382
  Queue.add_member(:name, Shapes::ShapeRef.new(shape: QueueName, required: true, location_name: "name"))
@@ -978,15 +978,24 @@ module Aws::PCS
978
978
  # @return [String]
979
979
  #
980
980
  # @!attribute [rw] private_ip_address
981
- # The endpoint's private IP address.
981
+ # For clusters that use IPv4, this is the endpoint's private IP
982
+ # address.
982
983
  #
983
- # Example: `2.2.2.2`
984
+ # Example: `10.1.2.3`
985
+ #
986
+ # For clusters configured to use IPv6, this is an empty string.
984
987
  # @return [String]
985
988
  #
986
989
  # @!attribute [rw] public_ip_address
987
990
  # The endpoint's public IP address.
988
991
  #
989
- # Example: `1.1.1.1`
992
+ # Example: `192.0.2.1`
993
+ # @return [String]
994
+ #
995
+ # @!attribute [rw] ipv6_address
996
+ # The endpoint's IPv6 address.
997
+ #
998
+ # Example: `2001:db8::1`
990
999
  # @return [String]
991
1000
  #
992
1001
  # @!attribute [rw] port
@@ -1001,6 +1010,7 @@ module Aws::PCS
1001
1010
  :type,
1002
1011
  :private_ip_address,
1003
1012
  :public_ip_address,
1013
+ :ipv6_address,
1004
1014
  :port)
1005
1015
  SENSITIVE = []
1006
1016
  include Aws::Structure
@@ -1347,7 +1357,7 @@ module Aws::PCS
1347
1357
  #
1348
1358
  # * Ports: All
1349
1359
  #
1350
- # * Destination: 0.0.0.0/0 (IPv4)
1360
+ # * Destination: 0.0.0.0/0 (IPv4) or ::/0 (IPv6)
1351
1361
  # * Outbound rule 2
1352
1362
  #
1353
1363
  # * Protocol: All
@@ -1357,11 +1367,16 @@ module Aws::PCS
1357
1367
  # * Destination: Self
1358
1368
  # @return [Array<String>]
1359
1369
  #
1370
+ # @!attribute [rw] network_type
1371
+ # The IP address version the cluster uses. The default is `IPV4`.
1372
+ # @return [String]
1373
+ #
1360
1374
  # @see http://docs.aws.amazon.com/goto/WebAPI/pcs-2023-02-10/Networking AWS API Documentation
1361
1375
  #
1362
1376
  class Networking < Struct.new(
1363
1377
  :subnet_ids,
1364
- :security_group_ids)
1378
+ :security_group_ids,
1379
+ :network_type)
1365
1380
  SENSITIVE = []
1366
1381
  include Aws::Structure
1367
1382
  end
@@ -1388,11 +1403,16 @@ module Aws::PCS
1388
1403
  # Interface (ENI) created in subnets.
1389
1404
  # @return [Array<String>]
1390
1405
  #
1406
+ # @!attribute [rw] network_type
1407
+ # The IP address version the cluster uses. The default is `IPV4`.
1408
+ # @return [String]
1409
+ #
1391
1410
  # @see http://docs.aws.amazon.com/goto/WebAPI/pcs-2023-02-10/NetworkingRequest AWS API Documentation
1392
1411
  #
1393
1412
  class NetworkingRequest < Struct.new(
1394
1413
  :subnet_ids,
1395
- :security_group_ids)
1414
+ :security_group_ids,
1415
+ :network_type)
1396
1416
  SENSITIVE = []
1397
1417
  include Aws::Structure
1398
1418
  end
data/lib/aws-sdk-pcs.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::PCS
55
55
  autoload :EndpointProvider, 'aws-sdk-pcs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-pcs/endpoints'
57
57
 
58
- GEM_VERSION = '1.24.0'
58
+ GEM_VERSION = '1.25.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -93,7 +93,8 @@ module Aws
93
93
  size: ("SMALL" | "MEDIUM" | "LARGE"),
94
94
  networking: {
95
95
  subnet_ids: Array[::String]?,
96
- security_group_ids: Array[::String]?
96
+ security_group_ids: Array[::String]?,
97
+ network_type: ("IPV4" | "IPV6")?
97
98
  },
98
99
  ?slurm_configuration: {
99
100
  scale_down_idle_time_in_seconds: ::Integer?,
data/sig/types.rbs CHANGED
@@ -211,6 +211,7 @@ module Aws::PCS
211
211
  attr_accessor type: ("SLURMCTLD" | "SLURMDBD")
212
212
  attr_accessor private_ip_address: ::String
213
213
  attr_accessor public_ip_address: ::String
214
+ attr_accessor ipv6_address: ::String
214
215
  attr_accessor port: ::String
215
216
  SENSITIVE: []
216
217
  end
@@ -314,12 +315,14 @@ module Aws::PCS
314
315
  class Networking
315
316
  attr_accessor subnet_ids: ::Array[::String]
316
317
  attr_accessor security_group_ids: ::Array[::String]
318
+ attr_accessor network_type: ("IPV4" | "IPV6")
317
319
  SENSITIVE: []
318
320
  end
319
321
 
320
322
  class NetworkingRequest
321
323
  attr_accessor subnet_ids: ::Array[::String]
322
324
  attr_accessor security_group_ids: ::Array[::String]
325
+ attr_accessor network_type: ("IPV4" | "IPV6")
323
326
  SENSITIVE: []
324
327
  end
325
328
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services