aws-sdk-pcs 1.24.0 → 1.26.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pcs/client.rb +16 -13
- data/lib/aws-sdk-pcs/client_api.rb +4 -0
- data/lib/aws-sdk-pcs/types.rb +26 -6
- data/lib/aws-sdk-pcs.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +3 -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: 54c591d7a59ed10c24f28a1532092b116654564f2634d29edf131822232d22e7
|
4
|
+
data.tar.gz: 68174d47d061c861a985288d678dbbbf567450f7a6236baab75c0819d9abda09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17e7f37f1e644d13a61dcda9785ba81285788880996db49368427c0e49b3390a2f284d86d2ec41ca5cc36bb67488c1462dfb3fcaa7cc7a5ee8b469060b4d6316
|
7
|
+
data.tar.gz: f58d9c2b78564b2aa831a2adc3bfeabb2e83af2295e73727413539aac85dd9a2c28cf5181d2da96f4347489cb28ea9b02f8c18df7742b21b696d2f71d863a569
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.26.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.25.0 (2025-08-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for IPv6 Networking for Clusters.
|
13
|
+
|
4
14
|
1.24.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.26.0
|
data/lib/aws-sdk-pcs/client.rb
CHANGED
@@ -95,8 +95,8 @@ module Aws::PCS
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::PCS
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::PCS
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -384,8 +381,8 @@ module Aws::PCS
|
|
384
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
385
382
|
#
|
386
383
|
# @option options [Aws::TokenProvider] :token_provider
|
387
|
-
# Your Bearer token used for authentication. This can be
|
388
|
-
# following classes:
|
384
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
385
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
389
386
|
#
|
390
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
391
388
|
# tokens.
|
@@ -557,6 +554,7 @@ module Aws::PCS
|
|
557
554
|
# networking: { # required
|
558
555
|
# subnet_ids: ["SubnetId"],
|
559
556
|
# security_group_ids: ["SecurityGroupId"],
|
557
|
+
# network_type: "IPV4", # accepts IPV4, IPV6
|
560
558
|
# },
|
561
559
|
# slurm_configuration: {
|
562
560
|
# scale_down_idle_time_in_seconds: 1,
|
@@ -600,10 +598,12 @@ module Aws::PCS
|
|
600
598
|
# resp.cluster.networking.subnet_ids[0] #=> String
|
601
599
|
# resp.cluster.networking.security_group_ids #=> Array
|
602
600
|
# resp.cluster.networking.security_group_ids[0] #=> String
|
601
|
+
# resp.cluster.networking.network_type #=> String, one of "IPV4", "IPV6"
|
603
602
|
# resp.cluster.endpoints #=> Array
|
604
603
|
# resp.cluster.endpoints[0].type #=> String, one of "SLURMCTLD", "SLURMDBD"
|
605
604
|
# resp.cluster.endpoints[0].private_ip_address #=> String
|
606
605
|
# resp.cluster.endpoints[0].public_ip_address #=> String
|
606
|
+
# resp.cluster.endpoints[0].ipv6_address #=> String
|
607
607
|
# resp.cluster.endpoints[0].port #=> String
|
608
608
|
# resp.cluster.error_info #=> Array
|
609
609
|
# resp.cluster.error_info[0].code #=> String
|
@@ -1022,10 +1022,12 @@ module Aws::PCS
|
|
1022
1022
|
# resp.cluster.networking.subnet_ids[0] #=> String
|
1023
1023
|
# resp.cluster.networking.security_group_ids #=> Array
|
1024
1024
|
# resp.cluster.networking.security_group_ids[0] #=> String
|
1025
|
+
# resp.cluster.networking.network_type #=> String, one of "IPV4", "IPV6"
|
1025
1026
|
# resp.cluster.endpoints #=> Array
|
1026
1027
|
# resp.cluster.endpoints[0].type #=> String, one of "SLURMCTLD", "SLURMDBD"
|
1027
1028
|
# resp.cluster.endpoints[0].private_ip_address #=> String
|
1028
1029
|
# resp.cluster.endpoints[0].public_ip_address #=> String
|
1030
|
+
# resp.cluster.endpoints[0].ipv6_address #=> String
|
1029
1031
|
# resp.cluster.endpoints[0].port #=> String
|
1030
1032
|
# resp.cluster.error_info #=> Array
|
1031
1033
|
# resp.cluster.error_info[0].code #=> String
|
@@ -1364,6 +1366,7 @@ module Aws::PCS
|
|
1364
1366
|
# resp.endpoints[0].type #=> String, one of "SLURMCTLD", "SLURMDBD"
|
1365
1367
|
# resp.endpoints[0].private_ip_address #=> String
|
1366
1368
|
# resp.endpoints[0].public_ip_address #=> String
|
1369
|
+
# resp.endpoints[0].ipv6_address #=> String
|
1367
1370
|
# resp.endpoints[0].port #=> String
|
1368
1371
|
#
|
1369
1372
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pcs-2023-02-10/RegisterComputeNodeGroupInstance AWS API Documentation
|
@@ -1664,7 +1667,7 @@ module Aws::PCS
|
|
1664
1667
|
tracer: tracer
|
1665
1668
|
)
|
1666
1669
|
context[:gem_name] = 'aws-sdk-pcs'
|
1667
|
-
context[:gem_version] = '1.
|
1670
|
+
context[:gem_version] = '1.26.0'
|
1668
1671
|
Seahorse::Client::Request.new(handlers, context)
|
1669
1672
|
end
|
1670
1673
|
|
@@ -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"))
|
data/lib/aws-sdk-pcs/types.rb
CHANGED
@@ -978,15 +978,24 @@ module Aws::PCS
|
|
978
978
|
# @return [String]
|
979
979
|
#
|
980
980
|
# @!attribute [rw] private_ip_address
|
981
|
-
#
|
981
|
+
# For clusters that use IPv4, this is the endpoint's private IP
|
982
|
+
# address.
|
982
983
|
#
|
983
|
-
# Example: `
|
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: `
|
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
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
|
|