aws-sdk-ec2 1.533.0 → 1.535.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: 474327e6ea7ba2514a819e932f476c5e05cb00b91d629dacb832ca7ad776b60e
4
- data.tar.gz: f00f99edbe1112cbf883099496d3aae12f25052ed7d10033d32b768c9c25e732
3
+ metadata.gz: 3d45cb384f527de9bbde28fffeca8a307d2f5906c6b55ece9892c5e976ea342a
4
+ data.tar.gz: a585f50bf7f0e8c15b43dacb9cd2ca27325dfaa64d5380e54aa6c723e95f4987
5
5
  SHA512:
6
- metadata.gz: 311445ed8d83e35a8df89b923874249ba7648521f69c8025a329224792682fac248d991ccaba5e24a9d429ab51302792e133d749b54553b3e19f2c9772d3d174
7
- data.tar.gz: a9900e1f6a37bb1f259856975053e7fd3ff0a4a7038d6c59b19d6f183b703ce6a91be5bca2b7ee3c06647c8119e4ca80c31671da7108c3e0f7aff05873966f86
6
+ metadata.gz: 8866abc03516743f65641313557fdca9a94301427b615508468e6355e19497ae78cf8326e4905874175a37882672e580f6bb49ce085036cfb8a7f08ee9608b65
7
+ data.tar.gz: b7b89a23a8d1887f039f6212395901eef0807b39dc8bc05d3c281f91da5668d180f2c9e5c8d1a438f9f732cca5b3dea38fdc3702bea0b2288e15f18d986f5b6d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.535.0 (2025-07-02)
5
+ ------------------
6
+
7
+ * Feature - AWS Site-to-Site VPN now supports IPv6 addresses on outer tunnel IPs, making it easier for customers to build or transition to IPv6-only networks.
8
+
9
+ 1.534.0 (2025-07-01)
10
+ ------------------
11
+
12
+ * Feature - Add Context to GetInstanceTypesFromInstanceRequirements API
13
+
4
14
  1.533.0 (2025-06-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.533.0
1
+ 1.535.0
@@ -6436,11 +6436,11 @@ module Aws::EC2
6436
6436
  # Length Constraints: Up to 255 characters.
6437
6437
  #
6438
6438
  # @option params [String] :ip_address
6439
- # IPv4 address for the customer gateway device's outside interface. The
6440
- # address must be static. If `OutsideIpAddressType` in your VPN
6439
+ # The IP address for the customer gateway device's outside interface.
6440
+ # The address must be static. If `OutsideIpAddressType` in your VPN
6441
6441
  # connection options is set to `PrivateIpv4`, you can use an RFC6598 or
6442
6442
  # RFC1918 private IPv4 address. If `OutsideIpAddressType` is set to
6443
- # `PublicIpv4`, you can use a public IPv4 address.
6443
+ # `Ipv6`, you can use an IPv6 address.
6444
6444
  #
6445
6445
  # @option params [Integer] :bgp_asn_extended
6446
6446
  # For customer gateway devices that support BGP, specify the device's
@@ -47081,6 +47081,9 @@ module Aws::EC2
47081
47081
  # The token returned from a previous paginated request. Pagination
47082
47082
  # continues from the end of the items returned by the previous request.
47083
47083
  #
47084
+ # @option params [String] :context
47085
+ # Reserved.
47086
+ #
47084
47087
  # @return [Types::GetInstanceTypesFromInstanceRequirementsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
47085
47088
  #
47086
47089
  # * {Types::GetInstanceTypesFromInstanceRequirementsResult#instance_types #instance_types} => Array<Types::InstanceTypeInfoFromInstanceRequirements>
@@ -47158,6 +47161,7 @@ module Aws::EC2
47158
47161
  # },
47159
47162
  # max_results: 1,
47160
47163
  # next_token: "String",
47164
+ # context: "String",
47161
47165
  # })
47162
47166
  #
47163
47167
  # @example Response structure
@@ -66147,7 +66151,7 @@ module Aws::EC2
66147
66151
  tracer: tracer
66148
66152
  )
66149
66153
  context[:gem_name] = 'aws-sdk-ec2'
66150
- context[:gem_version] = '1.533.0'
66154
+ context[:gem_version] = '1.535.0'
66151
66155
  Seahorse::Client::Request.new(handlers, context)
66152
66156
  end
66153
66157
 
@@ -10236,6 +10236,7 @@ module Aws::EC2
10236
10236
  GetInstanceTypesFromInstanceRequirementsRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, required: true, location_name: "InstanceRequirements"))
10237
10237
  GetInstanceTypesFromInstanceRequirementsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
10238
10238
  GetInstanceTypesFromInstanceRequirementsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
10239
+ GetInstanceTypesFromInstanceRequirementsRequest.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "Context"))
10239
10240
  GetInstanceTypesFromInstanceRequirementsRequest.struct_class = Types::GetInstanceTypesFromInstanceRequirementsRequest
10240
10241
 
10241
10242
  GetInstanceTypesFromInstanceRequirementsResult.add_member(:instance_types, Shapes::ShapeRef.new(shape: InstanceTypeInfoFromInstanceRequirementsSet, location_name: "instanceTypeSet"))
@@ -8662,11 +8662,11 @@ module Aws::EC2
8662
8662
  # @return [String]
8663
8663
  #
8664
8664
  # @!attribute [rw] ip_address
8665
- # IPv4 address for the customer gateway device's outside interface.
8665
+ # The IP address for the customer gateway device's outside interface.
8666
8666
  # The address must be static. If `OutsideIpAddressType` in your VPN
8667
8667
  # connection options is set to `PrivateIpv4`, you can use an RFC6598
8668
8668
  # or RFC1918 private IPv4 address. If `OutsideIpAddressType` is set to
8669
- # `PublicIpv4`, you can use a public IPv4 address.
8669
+ # `Ipv6`, you can use an IPv6 address.
8670
8670
  # @return [String]
8671
8671
  #
8672
8672
  # @!attribute [rw] bgp_asn_extended
@@ -15483,11 +15483,13 @@ module Aws::EC2
15483
15483
  # @return [String]
15484
15484
  #
15485
15485
  # @!attribute [rw] ip_address
15486
- # IPv4 address for the customer gateway device's outside interface.
15486
+ # The IP address for the customer gateway device's outside interface.
15487
15487
  # The address must be static. If `OutsideIpAddressType` in your VPN
15488
15488
  # connection options is set to `PrivateIpv4`, you can use an RFC6598
15489
15489
  # or RFC1918 private IPv4 address. If `OutsideIpAddressType` is set to
15490
- # `PublicIpv4`, you can use a public IPv4 address.
15490
+ # `PublicIpv4`, you can use a public IPv4 address. If
15491
+ # `OutsideIpAddressType` is set to `Ipv6`, you can use a public IPv6
15492
+ # address.
15491
15493
  # @return [String]
15492
15494
  #
15493
15495
  # @!attribute [rw] bgp_asn
@@ -39637,6 +39639,10 @@ module Aws::EC2
39637
39639
  # request.
39638
39640
  # @return [String]
39639
39641
  #
39642
+ # @!attribute [rw] context
39643
+ # Reserved.
39644
+ # @return [String]
39645
+ #
39640
39646
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetInstanceTypesFromInstanceRequirementsRequest AWS API Documentation
39641
39647
  #
39642
39648
  class GetInstanceTypesFromInstanceRequirementsRequest < Struct.new(
@@ -39645,7 +39651,8 @@ module Aws::EC2
39645
39651
  :virtualization_types,
39646
39652
  :instance_requirements,
39647
39653
  :max_results,
39648
- :next_token)
39654
+ :next_token,
39655
+ :context)
39649
39656
  SENSITIVE = []
39650
39657
  include Aws::Structure
39651
39658
  end
@@ -77731,7 +77738,7 @@ module Aws::EC2
77731
77738
  # The type of IPv4 address assigned to the outside interface of the
77732
77739
  # customer gateway.
77733
77740
  #
77734
- # Valid values: `PrivateIpv4` \| `PublicIpv4`
77741
+ # Valid values: `PrivateIpv4` \| `PublicIpv4` \| `Ipv6`
77735
77742
  #
77736
77743
  # Default: `PublicIpv4`
77737
77744
  # @return [String]
@@ -77810,10 +77817,10 @@ module Aws::EC2
77810
77817
  # @return [String]
77811
77818
  #
77812
77819
  # @!attribute [rw] outside_ip_address_type
77813
- # The type of IPv4 address assigned to the outside interface of the
77820
+ # The type of IP address assigned to the outside interface of the
77814
77821
  # customer gateway device.
77815
77822
  #
77816
- # Valid values: `PrivateIpv4` \| `PublicIpv4`
77823
+ # Valid values: `PrivateIpv4` \| `PublicIpv4` \| `Ipv6`
77817
77824
  #
77818
77825
  # Default: `PublicIpv4`
77819
77826
  # @return [String]
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.533.0'
81
+ GEM_VERSION = '1.535.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -9777,7 +9777,8 @@ module Aws
9777
9777
  }?
9778
9778
  },
9779
9779
  ?max_results: ::Integer,
9780
- ?next_token: ::String
9780
+ ?next_token: ::String,
9781
+ ?context: ::String
9781
9782
  ) -> _GetInstanceTypesFromInstanceRequirementsResponseSuccess
9782
9783
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstanceTypesFromInstanceRequirementsResponseSuccess
9783
9784
 
data/sig/types.rbs CHANGED
@@ -8737,6 +8737,7 @@ module Aws::EC2
8737
8737
  attr_accessor instance_requirements: Types::InstanceRequirementsRequest
8738
8738
  attr_accessor max_results: ::Integer
8739
8739
  attr_accessor next_token: ::String
8740
+ attr_accessor context: ::String
8740
8741
  SENSITIVE: []
8741
8742
  end
8742
8743
 
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.533.0
4
+ version: 1.535.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services