aws-sdk-ec2 1.644.0 → 1.645.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: 1b6bd7a40ab1a7e2d10ec8793ad651a4cfacc3fe3566f24043f660ca27eec4ab
4
- data.tar.gz: '08cb9c1caf6dab9dd86b915f62a06c2fb15729b2ca0c2bf16247f482774c2440'
3
+ metadata.gz: d0b9c6c6d556882ac208f6c7af592ebe058b1c043745eba2ccdf5c221c0088ec
4
+ data.tar.gz: cf09a839c34d2c1e839395c46d10f4684fdc072e09ad086862406351acc1efc4
5
5
  SHA512:
6
- metadata.gz: c73605eb1e66dca92ee51dfdd35ccdb6e605c59a1d0acc49dba031ba9bbbc16caba8be4a7898c13944665b4683c49d531096e33124a3fbdb24e26640e5d22324
7
- data.tar.gz: a740c5ddd964e58de7f638efa0628d02e5fb8bb13dec6599142ea183c1397c990a280ac4a8b9ad506272d7db780ff08fe79402e812dec61559975d7a3ab019d4
6
+ metadata.gz: ee77815e91f9c474e7066c3ce5d28d21f67925a5073d36ab4eeb6db0e5f2454bf2994233b1333f1139da14760e310944e1f618a411b7d222e112fea267a48622
7
+ data.tar.gz: 31c409b873d43ddcf44ac2467df7165633248d091eec9cae205fb2adc6c81afdfe8824facbde03e0c0f3555e18334a7e135fc1de1276a968704635b0aea2cfcf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.645.0 (2026-09-08)
5
+ ------------------
6
+
7
+ * Feature - Adds the InterfaceTypes field to NetworkCardInfo in the DescribeInstanceTypes response. This field identifies the network interface types supported by each network card.
8
+
4
9
  1.644.0 (2026-09-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.644.0
1
+ 1.645.0
@@ -32562,8 +32562,8 @@ module Aws::EC2
32562
32562
  #
32563
32563
  # If you specify one or more instance IDs, Amazon EC2 returns the credit
32564
32564
  # option (`standard` or `unlimited`) of those instances. If you specify
32565
- # an instance ID that is not valid, such as an instance that is not a
32566
- # burstable performance instance, an error is returned.
32565
+ # an instance ID that is not a burstable performance instance, Amazon
32566
+ # EC2 returns the `standard` credit option.
32567
32567
  #
32568
32568
  # Recently terminated instances might appear in the returned results.
32569
32569
  # This interval is usually less than one hour.
@@ -33968,6 +33968,8 @@ module Aws::EC2
33968
33968
  # resp.instance_types[0].network_info.network_cards[0].default_ena_queue_count_per_interface #=> Integer
33969
33969
  # resp.instance_types[0].network_info.network_cards[0].maximum_ena_queue_count #=> Integer
33970
33970
  # resp.instance_types[0].network_info.network_cards[0].maximum_ena_queue_count_per_interface #=> Integer
33971
+ # resp.instance_types[0].network_info.network_cards[0].interface_types #=> Array
33972
+ # resp.instance_types[0].network_info.network_cards[0].interface_types[0] #=> String, one of "interface", "efa", "efa-only", "secondary"
33971
33973
  # resp.instance_types[0].network_info.ipv_4_addresses_per_interface #=> Integer
33972
33974
  # resp.instance_types[0].network_info.ipv_6_addresses_per_interface #=> Integer
33973
33975
  # resp.instance_types[0].network_info.ipv_6_supported #=> Boolean
@@ -77378,7 +77380,7 @@ module Aws::EC2
77378
77380
  tracer: tracer
77379
77381
  )
77380
77382
  context[:gem_name] = 'aws-sdk-ec2'
77381
- context[:gem_version] = '1.644.0'
77383
+ context[:gem_version] = '1.645.0'
77382
77384
  Seahorse::Client::Request.new(handlers, context)
77383
77385
  end
77384
77386
 
@@ -3025,6 +3025,8 @@ module Aws::EC2
3025
3025
  NetworkCardIndex = Shapes::IntegerShape.new(name: 'NetworkCardIndex')
3026
3026
  NetworkCardInfo = Shapes::StructureShape.new(name: 'NetworkCardInfo')
3027
3027
  NetworkCardInfoList = Shapes::ListShape.new(name: 'NetworkCardInfoList')
3028
+ NetworkCardInterfaceType = Shapes::StringShape.new(name: 'NetworkCardInterfaceType')
3029
+ NetworkCardInterfaceTypeList = Shapes::ListShape.new(name: 'NetworkCardInterfaceTypeList')
3028
3030
  NetworkInfo = Shapes::StructureShape.new(name: 'NetworkInfo')
3029
3031
  NetworkInsightsAccessScope = Shapes::StructureShape.new(name: 'NetworkInsightsAccessScope')
3030
3032
  NetworkInsightsAccessScopeAnalysis = Shapes::StructureShape.new(name: 'NetworkInsightsAccessScopeAnalysis')
@@ -16465,10 +16467,13 @@ module Aws::EC2
16465
16467
  NetworkCardInfo.add_member(:default_ena_queue_count_per_interface, Shapes::ShapeRef.new(shape: DefaultEnaQueueCountPerInterface, location_name: "defaultEnaQueueCountPerInterface"))
16466
16468
  NetworkCardInfo.add_member(:maximum_ena_queue_count, Shapes::ShapeRef.new(shape: MaximumEnaQueueCount, location_name: "maximumEnaQueueCount"))
16467
16469
  NetworkCardInfo.add_member(:maximum_ena_queue_count_per_interface, Shapes::ShapeRef.new(shape: MaximumEnaQueueCountPerInterface, location_name: "maximumEnaQueueCountPerInterface"))
16470
+ NetworkCardInfo.add_member(:interface_types, Shapes::ShapeRef.new(shape: NetworkCardInterfaceTypeList, location_name: "interfaceTypeSet"))
16468
16471
  NetworkCardInfo.struct_class = Types::NetworkCardInfo
16469
16472
 
16470
16473
  NetworkCardInfoList.member = Shapes::ShapeRef.new(shape: NetworkCardInfo, location_name: "item")
16471
16474
 
16475
+ NetworkCardInterfaceTypeList.member = Shapes::ShapeRef.new(shape: NetworkCardInterfaceType, location_name: "item")
16476
+
16472
16477
  NetworkInfo.add_member(:network_performance, Shapes::ShapeRef.new(shape: NetworkPerformance, location_name: "networkPerformance"))
16473
16478
  NetworkInfo.add_member(:maximum_network_interfaces, Shapes::ShapeRef.new(shape: MaxNetworkInterfaces, location_name: "maximumNetworkInterfaces"))
16474
16479
  NetworkInfo.add_member(:maximum_network_cards, Shapes::ShapeRef.new(shape: MaximumNetworkCards, location_name: "maximumNetworkCards"))
@@ -71205,6 +71205,10 @@ module Aws::EC2
71205
71205
  # The maximum number of the ENA queues for each interface.
71206
71206
  # @return [Integer]
71207
71207
  #
71208
+ # @!attribute [rw] interface_types
71209
+ # The supported interface types for the network card.
71210
+ # @return [Array<String>]
71211
+ #
71208
71212
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkCardInfo AWS API Documentation
71209
71213
  #
71210
71214
  class NetworkCardInfo < Struct.new(
@@ -71216,7 +71220,8 @@ module Aws::EC2
71216
71220
  :peak_bandwidth_in_gbps,
71217
71221
  :default_ena_queue_count_per_interface,
71218
71222
  :maximum_ena_queue_count,
71219
- :maximum_ena_queue_count_per_interface)
71223
+ :maximum_ena_queue_count_per_interface,
71224
+ :interface_types)
71220
71225
  SENSITIVE = []
71221
71226
  include Aws::Structure
71222
71227
  end
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.644.0'
81
+ GEM_VERSION = '1.645.0'
82
82
 
83
83
  end
84
84
 
data/sig/types.rbs CHANGED
@@ -15337,6 +15337,7 @@ module Aws::EC2
15337
15337
  attr_accessor default_ena_queue_count_per_interface: ::Integer
15338
15338
  attr_accessor maximum_ena_queue_count: ::Integer
15339
15339
  attr_accessor maximum_ena_queue_count_per_interface: ::Integer
15340
+ attr_accessor interface_types: ::Array[("interface" | "efa" | "efa-only" | "secondary")]
15340
15341
  SENSITIVE: []
15341
15342
  end
15342
15343
 
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.644.0
4
+ version: 1.645.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services