aws-sdk-ec2 1.607.0 → 1.608.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 +4 -1
- data/lib/aws-sdk-ec2/client_api.rb +10 -0
- data/lib/aws-sdk-ec2/types.rb +39 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/types.rbs +8 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24921c6d99d2cdf9bc9c5362d5197a03e3b1f74817f955b0ee6ed1a28fb884e4
|
|
4
|
+
data.tar.gz: e7be27bbd4f5ab095e11d8603aaf89e5cace07d6cfb11d31f018adc8ec83f05a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c926834542ed07a5f6ded290369fcd9ef043672e270df6f1def525aeae7a3bd069f1d3a8e10304c077474b516ddf5b973f1c7137361e52cd2dfda6844225cc8b
|
|
7
|
+
data.tar.gz: 9f3b93e1e3ba61ef721d64dd17f4c24bceb61b5d34330cfb0614c065939bdc83abc2b5f158d5af9579731dcbe7a797329de871e5367ea2fcc3ea42b18b103a0c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.608.0 (2026-03-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - The DescribeInstanceTypes API now returns default connection tracking timeout values for TCP, UDP, and UDP stream via the new connectionTrackingConfiguration field on NetworkInfo.
|
|
8
|
+
|
|
4
9
|
1.607.0 (2026-03-05)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.608.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -31905,6 +31905,9 @@ module Aws::EC2
|
|
|
31905
31905
|
# resp.instance_types[0].network_info.bandwidth_weightings #=> Array
|
|
31906
31906
|
# resp.instance_types[0].network_info.bandwidth_weightings[0] #=> String, one of "default", "vpc-1", "ebs-1"
|
|
31907
31907
|
# resp.instance_types[0].network_info.flexible_ena_queues_support #=> String, one of "unsupported", "supported"
|
|
31908
|
+
# resp.instance_types[0].network_info.connection_tracking_configuration.default_tcp_established_timeout #=> Integer
|
|
31909
|
+
# resp.instance_types[0].network_info.connection_tracking_configuration.default_udp_timeout #=> Integer
|
|
31910
|
+
# resp.instance_types[0].network_info.connection_tracking_configuration.default_udp_stream_timeout #=> Integer
|
|
31908
31911
|
# resp.instance_types[0].network_info.secondary_network_supported #=> Boolean
|
|
31909
31912
|
# resp.instance_types[0].network_info.maximum_secondary_network_interfaces #=> Integer
|
|
31910
31913
|
# resp.instance_types[0].network_info.ipv_4_addresses_per_secondary_interface #=> Integer
|
|
@@ -73074,7 +73077,7 @@ module Aws::EC2
|
|
|
73074
73077
|
tracer: tracer
|
|
73075
73078
|
)
|
|
73076
73079
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
73077
|
-
context[:gem_version] = '1.
|
|
73080
|
+
context[:gem_version] = '1.608.0'
|
|
73078
73081
|
Seahorse::Client::Request.new(handlers, context)
|
|
73079
73082
|
end
|
|
73080
73083
|
|
|
@@ -737,6 +737,7 @@ module Aws::EC2
|
|
|
737
737
|
DedicatedHostFlag = Shapes::BooleanShape.new(name: 'DedicatedHostFlag')
|
|
738
738
|
DedicatedHostId = Shapes::StringShape.new(name: 'DedicatedHostId')
|
|
739
739
|
DedicatedHostIdList = Shapes::ListShape.new(name: 'DedicatedHostIdList')
|
|
740
|
+
DefaultConnectionTrackingConfiguration = Shapes::StructureShape.new(name: 'DefaultConnectionTrackingConfiguration')
|
|
740
741
|
DefaultEnaQueueCountPerInterface = Shapes::IntegerShape.new(name: 'DefaultEnaQueueCountPerInterface')
|
|
741
742
|
DefaultHttpTokensEnforcedState = Shapes::StringShape.new(name: 'DefaultHttpTokensEnforcedState')
|
|
742
743
|
DefaultInstanceMetadataEndpointState = Shapes::StringShape.new(name: 'DefaultInstanceMetadataEndpointState')
|
|
@@ -745,6 +746,9 @@ module Aws::EC2
|
|
|
745
746
|
DefaultRouteTableAssociationValue = Shapes::StringShape.new(name: 'DefaultRouteTableAssociationValue')
|
|
746
747
|
DefaultRouteTablePropagationValue = Shapes::StringShape.new(name: 'DefaultRouteTablePropagationValue')
|
|
747
748
|
DefaultTargetCapacityType = Shapes::StringShape.new(name: 'DefaultTargetCapacityType')
|
|
749
|
+
DefaultTcpEstablishedTimeout = Shapes::IntegerShape.new(name: 'DefaultTcpEstablishedTimeout')
|
|
750
|
+
DefaultUdpStreamTimeout = Shapes::IntegerShape.new(name: 'DefaultUdpStreamTimeout')
|
|
751
|
+
DefaultUdpTimeout = Shapes::IntegerShape.new(name: 'DefaultUdpTimeout')
|
|
748
752
|
DefaultingDhcpOptionsId = Shapes::StringShape.new(name: 'DefaultingDhcpOptionsId')
|
|
749
753
|
DeleteCapacityManagerDataExportRequest = Shapes::StructureShape.new(name: 'DeleteCapacityManagerDataExportRequest')
|
|
750
754
|
DeleteCapacityManagerDataExportResult = Shapes::StructureShape.new(name: 'DeleteCapacityManagerDataExportResult')
|
|
@@ -7057,6 +7061,11 @@ module Aws::EC2
|
|
|
7057
7061
|
|
|
7058
7062
|
DedicatedHostIdList.member = Shapes::ShapeRef.new(shape: DedicatedHostId, location_name: "item")
|
|
7059
7063
|
|
|
7064
|
+
DefaultConnectionTrackingConfiguration.add_member(:default_tcp_established_timeout, Shapes::ShapeRef.new(shape: DefaultTcpEstablishedTimeout, location_name: "defaultTcpEstablishedTimeout"))
|
|
7065
|
+
DefaultConnectionTrackingConfiguration.add_member(:default_udp_timeout, Shapes::ShapeRef.new(shape: DefaultUdpTimeout, location_name: "defaultUdpTimeout"))
|
|
7066
|
+
DefaultConnectionTrackingConfiguration.add_member(:default_udp_stream_timeout, Shapes::ShapeRef.new(shape: DefaultUdpStreamTimeout, location_name: "defaultUdpStreamTimeout"))
|
|
7067
|
+
DefaultConnectionTrackingConfiguration.struct_class = Types::DefaultConnectionTrackingConfiguration
|
|
7068
|
+
|
|
7060
7069
|
DeleteCapacityManagerDataExportRequest.add_member(:capacity_manager_data_export_id, Shapes::ShapeRef.new(shape: CapacityManagerDataExportId, required: true, location_name: "CapacityManagerDataExportId"))
|
|
7061
7070
|
DeleteCapacityManagerDataExportRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
7062
7071
|
DeleteCapacityManagerDataExportRequest.struct_class = Types::DeleteCapacityManagerDataExportRequest
|
|
@@ -15357,6 +15366,7 @@ module Aws::EC2
|
|
|
15357
15366
|
NetworkInfo.add_member(:ena_srd_supported, Shapes::ShapeRef.new(shape: EnaSrdSupported, location_name: "enaSrdSupported"))
|
|
15358
15367
|
NetworkInfo.add_member(:bandwidth_weightings, Shapes::ShapeRef.new(shape: BandwidthWeightingTypeList, location_name: "bandwidthWeightings"))
|
|
15359
15368
|
NetworkInfo.add_member(:flexible_ena_queues_support, Shapes::ShapeRef.new(shape: FlexibleEnaQueuesSupport, location_name: "flexibleEnaQueuesSupport"))
|
|
15369
|
+
NetworkInfo.add_member(:connection_tracking_configuration, Shapes::ShapeRef.new(shape: DefaultConnectionTrackingConfiguration, location_name: "connectionTrackingConfiguration"))
|
|
15360
15370
|
NetworkInfo.add_member(:secondary_network_supported, Shapes::ShapeRef.new(shape: SecondaryNetworkSupportedFlag, location_name: "secondaryNetworkSupported"))
|
|
15361
15371
|
NetworkInfo.add_member(:maximum_secondary_network_interfaces, Shapes::ShapeRef.new(shape: MaximumSecondaryNetworkInterfaces, location_name: "maximumSecondaryNetworkInterfaces"))
|
|
15362
15372
|
NetworkInfo.add_member(:ipv_4_addresses_per_secondary_interface, Shapes::ShapeRef.new(shape: Ipv4AddressesPerSecondaryInterface, location_name: "ipv4AddressesPerSecondaryInterface"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -17560,6 +17560,40 @@ module Aws::EC2
|
|
|
17560
17560
|
include Aws::Structure
|
|
17561
17561
|
end
|
|
17562
17562
|
|
|
17563
|
+
# Indicates default conntrack information for the instance type. For
|
|
17564
|
+
# more information, see [ Connection tracking timeouts ][1] in the
|
|
17565
|
+
# Amazon EC2 User Guide.
|
|
17566
|
+
#
|
|
17567
|
+
#
|
|
17568
|
+
#
|
|
17569
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
|
|
17570
|
+
#
|
|
17571
|
+
# @!attribute [rw] default_tcp_established_timeout
|
|
17572
|
+
# Default timeout (in seconds) for idle TCP connections in an
|
|
17573
|
+
# established state.
|
|
17574
|
+
# @return [Integer]
|
|
17575
|
+
#
|
|
17576
|
+
# @!attribute [rw] default_udp_timeout
|
|
17577
|
+
# Default timeout (in seconds) for idle UDP flows that have seen
|
|
17578
|
+
# traffic only in a single direction or a single request-response
|
|
17579
|
+
# transaction.
|
|
17580
|
+
# @return [Integer]
|
|
17581
|
+
#
|
|
17582
|
+
# @!attribute [rw] default_udp_stream_timeout
|
|
17583
|
+
# Default timeout (in seconds) for idle UDP flows classified as
|
|
17584
|
+
# streams which have seen more than one request-response transaction.
|
|
17585
|
+
# @return [Integer]
|
|
17586
|
+
#
|
|
17587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DefaultConnectionTrackingConfiguration AWS API Documentation
|
|
17588
|
+
#
|
|
17589
|
+
class DefaultConnectionTrackingConfiguration < Struct.new(
|
|
17590
|
+
:default_tcp_established_timeout,
|
|
17591
|
+
:default_udp_timeout,
|
|
17592
|
+
:default_udp_stream_timeout)
|
|
17593
|
+
SENSITIVE = []
|
|
17594
|
+
include Aws::Structure
|
|
17595
|
+
end
|
|
17596
|
+
|
|
17563
17597
|
# @!attribute [rw] capacity_manager_data_export_id
|
|
17564
17598
|
# The unique identifier of the data export configuration to delete.
|
|
17565
17599
|
# @return [String]
|
|
@@ -66492,6 +66526,10 @@ module Aws::EC2
|
|
|
66492
66526
|
# Indicates whether changing the number of ENA queues is supported.
|
|
66493
66527
|
# @return [String]
|
|
66494
66528
|
#
|
|
66529
|
+
# @!attribute [rw] connection_tracking_configuration
|
|
66530
|
+
# Indicates conntrack information for the instance type
|
|
66531
|
+
# @return [Types::DefaultConnectionTrackingConfiguration]
|
|
66532
|
+
#
|
|
66495
66533
|
# @!attribute [rw] secondary_network_supported
|
|
66496
66534
|
# Indicates whether secondary interface attachments from secondary
|
|
66497
66535
|
# network are supported.
|
|
@@ -66523,6 +66561,7 @@ module Aws::EC2
|
|
|
66523
66561
|
:ena_srd_supported,
|
|
66524
66562
|
:bandwidth_weightings,
|
|
66525
66563
|
:flexible_ena_queues_support,
|
|
66564
|
+
:connection_tracking_configuration,
|
|
66526
66565
|
:secondary_network_supported,
|
|
66527
66566
|
:maximum_secondary_network_interfaces,
|
|
66528
66567
|
:ipv_4_addresses_per_secondary_interface)
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -3817,6 +3817,13 @@ module Aws::EC2
|
|
|
3817
3817
|
SENSITIVE: []
|
|
3818
3818
|
end
|
|
3819
3819
|
|
|
3820
|
+
class DefaultConnectionTrackingConfiguration
|
|
3821
|
+
attr_accessor default_tcp_established_timeout: ::Integer
|
|
3822
|
+
attr_accessor default_udp_timeout: ::Integer
|
|
3823
|
+
attr_accessor default_udp_stream_timeout: ::Integer
|
|
3824
|
+
SENSITIVE: []
|
|
3825
|
+
end
|
|
3826
|
+
|
|
3820
3827
|
class DeleteCapacityManagerDataExportRequest
|
|
3821
3828
|
attr_accessor capacity_manager_data_export_id: ::String
|
|
3822
3829
|
attr_accessor dry_run: bool
|
|
@@ -14300,6 +14307,7 @@ module Aws::EC2
|
|
|
14300
14307
|
attr_accessor ena_srd_supported: bool
|
|
14301
14308
|
attr_accessor bandwidth_weightings: ::Array[("default" | "vpc-1" | "ebs-1")]
|
|
14302
14309
|
attr_accessor flexible_ena_queues_support: ("unsupported" | "supported")
|
|
14310
|
+
attr_accessor connection_tracking_configuration: Types::DefaultConnectionTrackingConfiguration
|
|
14303
14311
|
attr_accessor secondary_network_supported: bool
|
|
14304
14312
|
attr_accessor maximum_secondary_network_interfaces: ::Integer
|
|
14305
14313
|
attr_accessor ipv_4_addresses_per_secondary_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.
|
|
4
|
+
version: 1.608.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.244.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.244.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|