aws-sdk-ec2 1.593.0 → 1.594.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: 2b3328f47b2ac07ef3b7da42aa377e9677e909b8f1630ecff8fc1f742f3ce0a2
4
- data.tar.gz: 70cfdf8eb92c854f90f00c4db0b31abb27ce1fc267c607d9e63593aee5e3f446
3
+ metadata.gz: c7e4d273c37704624d41cf2d4b68d1a68cb2d0f5dd7b985422cb99f8d27c8e75
4
+ data.tar.gz: 4ff9e000325417d8269ffba8e5d1a7f83a71c29ca1768658ac5aedf096ee606d
5
5
  SHA512:
6
- metadata.gz: f16c2e15e81af0ac06c2c97284469aceeba46de3c477b1652f5533a1269efa7406d32d7c4ee6f244992f08f4b4466ec285553ebed1875168a2f3839ef9564fbb
7
- data.tar.gz: e9d0b195b531193da69502967d04bc7c9f416ef3b7f47e2a65fb584a6c056c4eda72007ab930ba84e31e55f4224c5bc89f9c1fb5e5af986f3caece6edc538c84
6
+ metadata.gz: 230ba06e6c9616b713672180c6c859e65cc4ed3faa367b031f18707fedc7b2125455b4e2bbbe153f31762c5a9771e88ef751d68271c17cf775b655febf0a1654
7
+ data.tar.gz: 071ebe8b668f07e28191171d12e31dee9dc06146687a36ee448d9094fdbbe4315259dfd26e2522af3733fdfa2bcecb47d63114473e3f8ab965f2f7e2dcbb203c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.594.0 (2026-01-26)
5
+ ------------------
6
+
7
+ * Feature - DescribeInstanceTypes API response now includes an additionalFlexibleNetworkInterfaces field, the number of interfaces attachable to an instance when using flexible Elastic Network Adapter (ENA) queues in addition to the base number specified by maximumNetworkInterfaces.
8
+
4
9
  1.593.0 (2026-01-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.593.0
1
+ 1.594.0
@@ -31310,6 +31310,7 @@ module Aws::EC2
31310
31310
  # resp.instance_types[0].network_info.network_cards[0].network_card_index #=> Integer
31311
31311
  # resp.instance_types[0].network_info.network_cards[0].network_performance #=> String
31312
31312
  # resp.instance_types[0].network_info.network_cards[0].maximum_network_interfaces #=> Integer
31313
+ # resp.instance_types[0].network_info.network_cards[0].additional_flexible_network_interfaces #=> Integer
31313
31314
  # resp.instance_types[0].network_info.network_cards[0].baseline_bandwidth_in_gbps #=> Float
31314
31315
  # resp.instance_types[0].network_info.network_cards[0].peak_bandwidth_in_gbps #=> Float
31315
31316
  # resp.instance_types[0].network_info.network_cards[0].default_ena_queue_count_per_interface #=> Integer
@@ -71740,7 +71741,7 @@ module Aws::EC2
71740
71741
  tracer: tracer
71741
71742
  )
71742
71743
  context[:gem_name] = 'aws-sdk-ec2'
71743
- context[:gem_version] = '1.593.0'
71744
+ context[:gem_version] = '1.594.0'
71744
71745
  Seahorse::Client::Request.new(handlers, context)
71745
71746
  end
71746
71747
 
@@ -67,6 +67,7 @@ module Aws::EC2
67
67
  AddedPrincipalSet = Shapes::ListShape.new(name: 'AddedPrincipalSet')
68
68
  AdditionalDetail = Shapes::StructureShape.new(name: 'AdditionalDetail')
69
69
  AdditionalDetailList = Shapes::ListShape.new(name: 'AdditionalDetailList')
70
+ AdditionalFlexibleNetworkInterfaces = Shapes::IntegerShape.new(name: 'AdditionalFlexibleNetworkInterfaces')
70
71
  Address = Shapes::StructureShape.new(name: 'Address')
71
72
  AddressAttribute = Shapes::StructureShape.new(name: 'AddressAttribute')
72
73
  AddressAttributeName = Shapes::StringShape.new(name: 'AddressAttributeName')
@@ -15081,6 +15082,7 @@ module Aws::EC2
15081
15082
  NetworkCardInfo.add_member(:network_card_index, Shapes::ShapeRef.new(shape: NetworkCardIndex, location_name: "networkCardIndex"))
15082
15083
  NetworkCardInfo.add_member(:network_performance, Shapes::ShapeRef.new(shape: NetworkPerformance, location_name: "networkPerformance"))
15083
15084
  NetworkCardInfo.add_member(:maximum_network_interfaces, Shapes::ShapeRef.new(shape: MaxNetworkInterfaces, location_name: "maximumNetworkInterfaces"))
15085
+ NetworkCardInfo.add_member(:additional_flexible_network_interfaces, Shapes::ShapeRef.new(shape: AdditionalFlexibleNetworkInterfaces, location_name: "additionalFlexibleNetworkInterfaces"))
15084
15086
  NetworkCardInfo.add_member(:baseline_bandwidth_in_gbps, Shapes::ShapeRef.new(shape: BaselineBandwidthInGbps, location_name: "baselineBandwidthInGbps"))
15085
15087
  NetworkCardInfo.add_member(:peak_bandwidth_in_gbps, Shapes::ShapeRef.new(shape: PeakBandwidthInGbps, location_name: "peakBandwidthInGbps"))
15086
15088
  NetworkCardInfo.add_member(:default_ena_queue_count_per_interface, Shapes::ShapeRef.new(shape: DefaultEnaQueueCountPerInterface, location_name: "defaultEnaQueueCountPerInterface"))
@@ -65403,6 +65403,13 @@ module Aws::EC2
65403
65403
  # The maximum number of network interfaces for the network card.
65404
65404
  # @return [Integer]
65405
65405
  #
65406
+ # @!attribute [rw] additional_flexible_network_interfaces
65407
+ # The number of additional network interfaces that can be attached to
65408
+ # an instance when using flexible Elastic Network Adapter (ENA)
65409
+ # queues. This number is in addition to the base number specified by
65410
+ # `maximumNetworkInterfaces`.
65411
+ # @return [Integer]
65412
+ #
65406
65413
  # @!attribute [rw] baseline_bandwidth_in_gbps
65407
65414
  # The baseline network performance of the network card, in Gbps.
65408
65415
  # @return [Float]
@@ -65429,6 +65436,7 @@ module Aws::EC2
65429
65436
  :network_card_index,
65430
65437
  :network_performance,
65431
65438
  :maximum_network_interfaces,
65439
+ :additional_flexible_network_interfaces,
65432
65440
  :baseline_bandwidth_in_gbps,
65433
65441
  :peak_bandwidth_in_gbps,
65434
65442
  :default_ena_queue_count_per_interface,
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.593.0'
81
+ GEM_VERSION = '1.594.0'
82
82
 
83
83
  end
84
84
 
data/sig/types.rbs CHANGED
@@ -14072,6 +14072,7 @@ module Aws::EC2
14072
14072
  attr_accessor network_card_index: ::Integer
14073
14073
  attr_accessor network_performance: ::String
14074
14074
  attr_accessor maximum_network_interfaces: ::Integer
14075
+ attr_accessor additional_flexible_network_interfaces: ::Integer
14075
14076
  attr_accessor baseline_bandwidth_in_gbps: ::Float
14076
14077
  attr_accessor peak_bandwidth_in_gbps: ::Float
14077
14078
  attr_accessor default_ena_queue_count_per_interface: ::Integer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.593.0
4
+ version: 1.594.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services