aws-sdk-ec2 1.592.0 → 1.593.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-ec2/client.rb +5 -1
- data/lib/aws-sdk-ec2/client_api.rb +9 -0
- data/lib/aws-sdk-ec2/types.rb +16 -0
- data/lib/aws-sdk-ec2.rb +1 -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: 2b3328f47b2ac07ef3b7da42aa377e9677e909b8f1630ecff8fc1f742f3ce0a2
|
|
4
|
+
data.tar.gz: 70cfdf8eb92c854f90f00c4db0b31abb27ce1fc267c607d9e63593aee5e3f446
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f16c2e15e81af0ac06c2c97284469aceeba46de3c477b1652f5533a1269efa7406d32d7c4ee6f244992f08f4b4466ec285553ebed1875168a2f3839ef9564fbb
|
|
7
|
+
data.tar.gz: e9d0b195b531193da69502967d04bc7c9f416ef3b7f47e2a65fb584a6c056c4eda72007ab930ba84e31e55f4224c5bc89f9c1fb5e5af986f3caece6edc538c84
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.593.0 (2026-01-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add better support for fractional GPU instances in DescribeInstanceTypes API. The new fields, logicalGpuCount, gpuPartitionSize, and workload array enable better GPU resource selection and filtering for both full and fractional GPU instance types.
|
|
8
|
+
|
|
4
9
|
1.592.0 (2026-01-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.593.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -31330,6 +31330,10 @@ module Aws::EC2
|
|
|
31330
31330
|
# resp.instance_types[0].gpu_info.gpus[0].name #=> String
|
|
31331
31331
|
# resp.instance_types[0].gpu_info.gpus[0].manufacturer #=> String
|
|
31332
31332
|
# resp.instance_types[0].gpu_info.gpus[0].count #=> Integer
|
|
31333
|
+
# resp.instance_types[0].gpu_info.gpus[0].logical_gpu_count #=> Integer
|
|
31334
|
+
# resp.instance_types[0].gpu_info.gpus[0].gpu_partition_size #=> Float
|
|
31335
|
+
# resp.instance_types[0].gpu_info.gpus[0].workloads #=> Array
|
|
31336
|
+
# resp.instance_types[0].gpu_info.gpus[0].workloads[0] #=> String
|
|
31333
31337
|
# resp.instance_types[0].gpu_info.gpus[0].memory_info.size_in_mi_b #=> Integer
|
|
31334
31338
|
# resp.instance_types[0].gpu_info.total_gpu_memory_in_mi_b #=> Integer
|
|
31335
31339
|
# resp.instance_types[0].fpga_info.fpgas #=> Array
|
|
@@ -71736,7 +71740,7 @@ module Aws::EC2
|
|
|
71736
71740
|
tracer: tracer
|
|
71737
71741
|
)
|
|
71738
71742
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
71739
|
-
context[:gem_version] = '1.
|
|
71743
|
+
context[:gem_version] = '1.593.0'
|
|
71740
71744
|
Seahorse::Client::Request.new(handlers, context)
|
|
71741
71745
|
end
|
|
71742
71746
|
|
|
@@ -1895,6 +1895,7 @@ module Aws::EC2
|
|
|
1895
1895
|
GpuDeviceMemorySize = Shapes::IntegerShape.new(name: 'GpuDeviceMemorySize')
|
|
1896
1896
|
GpuDeviceName = Shapes::StringShape.new(name: 'GpuDeviceName')
|
|
1897
1897
|
GpuInfo = Shapes::StructureShape.new(name: 'GpuInfo')
|
|
1898
|
+
GpuPartitionSize = Shapes::FloatShape.new(name: 'GpuPartitionSize')
|
|
1898
1899
|
GroupBy = Shapes::StringShape.new(name: 'GroupBy')
|
|
1899
1900
|
GroupBySet = Shapes::ListShape.new(name: 'GroupBySet')
|
|
1900
1901
|
GroupIdStringList = Shapes::ListShape.new(name: 'GroupIdStringList')
|
|
@@ -2502,6 +2503,7 @@ module Aws::EC2
|
|
|
2502
2503
|
LockedSnapshotsInfo = Shapes::StructureShape.new(name: 'LockedSnapshotsInfo')
|
|
2503
2504
|
LockedSnapshotsInfoList = Shapes::ListShape.new(name: 'LockedSnapshotsInfoList')
|
|
2504
2505
|
LogDestinationType = Shapes::StringShape.new(name: 'LogDestinationType')
|
|
2506
|
+
LogicalGpuCount = Shapes::IntegerShape.new(name: 'LogicalGpuCount')
|
|
2505
2507
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
2506
2508
|
MacHost = Shapes::StructureShape.new(name: 'MacHost')
|
|
2507
2509
|
MacHostList = Shapes::ListShape.new(name: 'MacHostList')
|
|
@@ -3885,6 +3887,8 @@ module Aws::EC2
|
|
|
3885
3887
|
WeekDay = Shapes::StringShape.new(name: 'WeekDay')
|
|
3886
3888
|
WithdrawByoipCidrRequest = Shapes::StructureShape.new(name: 'WithdrawByoipCidrRequest')
|
|
3887
3889
|
WithdrawByoipCidrResult = Shapes::StructureShape.new(name: 'WithdrawByoipCidrResult')
|
|
3890
|
+
Workload = Shapes::StringShape.new(name: 'Workload')
|
|
3891
|
+
WorkloadsList = Shapes::ListShape.new(name: 'WorkloadsList')
|
|
3888
3892
|
ZoneIdStringList = Shapes::ListShape.new(name: 'ZoneIdStringList')
|
|
3889
3893
|
ZoneNameStringList = Shapes::ListShape.new(name: 'ZoneNameStringList')
|
|
3890
3894
|
customerGatewayConfiguration = Shapes::StringShape.new(name: 'customerGatewayConfiguration')
|
|
@@ -11707,6 +11711,9 @@ module Aws::EC2
|
|
|
11707
11711
|
GpuDeviceInfo.add_member(:name, Shapes::ShapeRef.new(shape: GpuDeviceName, location_name: "name"))
|
|
11708
11712
|
GpuDeviceInfo.add_member(:manufacturer, Shapes::ShapeRef.new(shape: GpuDeviceManufacturerName, location_name: "manufacturer"))
|
|
11709
11713
|
GpuDeviceInfo.add_member(:count, Shapes::ShapeRef.new(shape: GpuDeviceCount, location_name: "count"))
|
|
11714
|
+
GpuDeviceInfo.add_member(:logical_gpu_count, Shapes::ShapeRef.new(shape: LogicalGpuCount, location_name: "logicalGpuCount"))
|
|
11715
|
+
GpuDeviceInfo.add_member(:gpu_partition_size, Shapes::ShapeRef.new(shape: GpuPartitionSize, location_name: "gpuPartitionSize"))
|
|
11716
|
+
GpuDeviceInfo.add_member(:workloads, Shapes::ShapeRef.new(shape: WorkloadsList, location_name: "workloadSet"))
|
|
11710
11717
|
GpuDeviceInfo.add_member(:memory_info, Shapes::ShapeRef.new(shape: GpuDeviceMemoryInfo, location_name: "memoryInfo"))
|
|
11711
11718
|
GpuDeviceInfo.struct_class = Types::GpuDeviceInfo
|
|
11712
11719
|
|
|
@@ -19152,6 +19159,8 @@ module Aws::EC2
|
|
|
19152
19159
|
WithdrawByoipCidrResult.add_member(:byoip_cidr, Shapes::ShapeRef.new(shape: ByoipCidr, location_name: "byoipCidr"))
|
|
19153
19160
|
WithdrawByoipCidrResult.struct_class = Types::WithdrawByoipCidrResult
|
|
19154
19161
|
|
|
19162
|
+
WorkloadsList.member = Shapes::ShapeRef.new(shape: Workload, location_name: "item")
|
|
19163
|
+
|
|
19155
19164
|
ZoneIdStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "ZoneId")
|
|
19156
19165
|
|
|
19157
19166
|
ZoneNameStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "ZoneName")
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -46222,6 +46222,19 @@ module Aws::EC2
|
|
|
46222
46222
|
# The number of GPUs for the instance type.
|
|
46223
46223
|
# @return [Integer]
|
|
46224
46224
|
#
|
|
46225
|
+
# @!attribute [rw] logical_gpu_count
|
|
46226
|
+
# Total number of GPU devices of this type.
|
|
46227
|
+
# @return [Integer]
|
|
46228
|
+
#
|
|
46229
|
+
# @!attribute [rw] gpu_partition_size
|
|
46230
|
+
# The size of each GPU as a fraction of a full GPU, between 0
|
|
46231
|
+
# (excluded) and 1 (included).
|
|
46232
|
+
# @return [Float]
|
|
46233
|
+
#
|
|
46234
|
+
# @!attribute [rw] workloads
|
|
46235
|
+
# A list of workload types this GPU supports.
|
|
46236
|
+
# @return [Array<String>]
|
|
46237
|
+
#
|
|
46225
46238
|
# @!attribute [rw] memory_info
|
|
46226
46239
|
# Describes the memory available to the GPU accelerator.
|
|
46227
46240
|
# @return [Types::GpuDeviceMemoryInfo]
|
|
@@ -46232,6 +46245,9 @@ module Aws::EC2
|
|
|
46232
46245
|
:name,
|
|
46233
46246
|
:manufacturer,
|
|
46234
46247
|
:count,
|
|
46248
|
+
:logical_gpu_count,
|
|
46249
|
+
:gpu_partition_size,
|
|
46250
|
+
:workloads,
|
|
46235
46251
|
:memory_info)
|
|
46236
46252
|
SENSITIVE = []
|
|
46237
46253
|
include Aws::Structure
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -10242,6 +10242,9 @@ module Aws::EC2
|
|
|
10242
10242
|
attr_accessor name: ::String
|
|
10243
10243
|
attr_accessor manufacturer: ::String
|
|
10244
10244
|
attr_accessor count: ::Integer
|
|
10245
|
+
attr_accessor logical_gpu_count: ::Integer
|
|
10246
|
+
attr_accessor gpu_partition_size: ::Float
|
|
10247
|
+
attr_accessor workloads: ::Array[::String]
|
|
10245
10248
|
attr_accessor memory_info: Types::GpuDeviceMemoryInfo
|
|
10246
10249
|
SENSITIVE: []
|
|
10247
10250
|
end
|