aws-sdk-ec2 1.318.0 → 1.319.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf641eadfa71a4f74432ce7761e1d529fe97d5021acf1012549b17242de19f73
4
- data.tar.gz: f7d537f0d1ec72e6d61fde68bc61716fe96b0bdc5155d6fc722872d610a7a723
3
+ metadata.gz: beac9da7f88b8a43907402fa5b2631999bfe6e4c2907ffe7a7d8611e50e6ac73
4
+ data.tar.gz: 279c9a5a65593e3cbac7b04c086aba83fd216e584167607a5c77c7c973be92f1
5
5
  SHA512:
6
- metadata.gz: 35b7e68fd323127837b5799003a906776f5a1272a0f7487735adc07cd71744e39df7c8c26472ad91b0ba5ac38d96927924d29a190ef60e7826dbfaf33b6c6cfd
7
- data.tar.gz: 0071173d743f586944b59235309294303372931d203e3ec6b3fb33f1706a31b8ad01b1be270a722a43726b63ceea0afe5a4feb8f23f69fd513570f8e910dd875
6
+ metadata.gz: 93e76c411e07b0013f7f6cf84893ec642bcfdcd759e78e0cb5822e0de30a7e99b04516978ff9762e2901226fba23ab72edbc387c0ffadad83b6a1e43ebb38100
7
+ data.tar.gz: 80a42882d4b31cf78a88b152924b6c82f6b8c966134bc414b9bb1487b9e7c900bcc6ae56665f5a3ea015e7bc428179d5658e6ff32bdde57d760c9207d1cd1f99
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.319.0 (2022-06-21)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Private IP VPNs, a new feature allowing S2S VPN connections to use private ip addresses as the tunnel outside ip address over Direct Connect as transport.
8
+
4
9
  1.318.0 (2022-06-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.318.0
1
+ 1.319.0
@@ -4970,13 +4970,12 @@ module Aws::EC2
4970
4970
  req.send_request(options)
4971
4971
  end
4972
4972
 
4973
- # Provides information to Amazon Web Services about your VPN customer
4974
- # gateway device. The customer gateway is the appliance at your end of
4975
- # the VPN connection. (The device on the Amazon Web Services side of the
4976
- # VPN connection is the virtual private gateway.) You must provide the
4977
- # internet-routable IP address of the customer gateway's external
4978
- # interface. The IP address must be static and can be behind a device
4979
- # performing network address translation (NAT).
4973
+ # Provides information to Amazon Web Services about your customer
4974
+ # gateway device. The customer gateway device is the appliance at your
4975
+ # end of the VPN connection. You must provide the IP address of the
4976
+ # customer gateway device’s external interface. The IP address must be
4977
+ # static and can be behind a device performing network address
4978
+ # translation (NAT).
4980
4979
  #
4981
4980
  # For devices that use Border Gateway Protocol (BGP), you can also
4982
4981
  # provide the device's BGP Autonomous System Number (ASN). You can use
@@ -5000,8 +4999,9 @@ module Aws::EC2
5000
4999
  # Default: 65000
5001
5000
  #
5002
5001
  # @option params [String] :public_ip
5003
- # The Internet-routable IP address for the customer gateway's outside
5004
- # interface. The address must be static.
5002
+ # *This member has been deprecated.* The Internet-routable IP address
5003
+ # for the customer gateway's outside interface. The address must be
5004
+ # static.
5005
5005
  #
5006
5006
  # @option params [String] :certificate_arn
5007
5007
  # The Amazon Resource Name (ARN) for the customer gateway certificate.
@@ -5018,6 +5018,10 @@ module Aws::EC2
5018
5018
  #
5019
5019
  # Length Constraints: Up to 255 characters.
5020
5020
  #
5021
+ # @option params [String] :ip_address
5022
+ # IPv4 address for the customer gateway device's outside interface. The
5023
+ # address must be static.
5024
+ #
5021
5025
  # @option params [Boolean] :dry_run
5022
5026
  # Checks whether you have the required permissions for the action,
5023
5027
  # without actually making the request, and provides an error response.
@@ -5069,6 +5073,7 @@ module Aws::EC2
5069
5073
  # },
5070
5074
  # ],
5071
5075
  # device_name: "String",
5076
+ # ip_address: "String",
5072
5077
  # dry_run: false,
5073
5078
  # })
5074
5079
  #
@@ -13029,6 +13034,8 @@ module Aws::EC2
13029
13034
  # remote_ipv_4_network_cidr: "String",
13030
13035
  # local_ipv_6_network_cidr: "String",
13031
13036
  # remote_ipv_6_network_cidr: "String",
13037
+ # outside_ip_address_type: "String",
13038
+ # transport_transit_gateway_attachment_id: "TransitGatewayAttachmentId",
13032
13039
  # },
13033
13040
  # tag_specifications: [
13034
13041
  # {
@@ -13062,6 +13069,8 @@ module Aws::EC2
13062
13069
  # resp.vpn_connection.options.remote_ipv_4_network_cidr #=> String
13063
13070
  # resp.vpn_connection.options.local_ipv_6_network_cidr #=> String
13064
13071
  # resp.vpn_connection.options.remote_ipv_6_network_cidr #=> String
13072
+ # resp.vpn_connection.options.outside_ip_address_type #=> String
13073
+ # resp.vpn_connection.options.transport_transit_gateway_attachment_id #=> String
13065
13074
  # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
13066
13075
  # resp.vpn_connection.options.tunnel_options #=> Array
13067
13076
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
@@ -18240,8 +18249,8 @@ module Aws::EC2
18240
18249
  #
18241
18250
  # * `customer-gateway-id` - The ID of the customer gateway.
18242
18251
  #
18243
- # * `ip-address` - The IP address of the customer gateway's
18244
- # Internet-routable external interface.
18252
+ # * `ip-address` - The IP address of the customer gateway device's
18253
+ # external interface.
18245
18254
  #
18246
18255
  # * `state` - The state of the customer gateway (`pending` \|
18247
18256
  # `available` \| `deleting` \| `deleted`).
@@ -32231,6 +32240,8 @@ module Aws::EC2
32231
32240
  # resp.vpn_connections[0].options.remote_ipv_4_network_cidr #=> String
32232
32241
  # resp.vpn_connections[0].options.local_ipv_6_network_cidr #=> String
32233
32242
  # resp.vpn_connections[0].options.remote_ipv_6_network_cidr #=> String
32243
+ # resp.vpn_connections[0].options.outside_ip_address_type #=> String
32244
+ # resp.vpn_connections[0].options.transport_transit_gateway_attachment_id #=> String
32234
32245
  # resp.vpn_connections[0].options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
32235
32246
  # resp.vpn_connections[0].options.tunnel_options #=> Array
32236
32247
  # resp.vpn_connections[0].options.tunnel_options[0].outside_ip_address #=> String
@@ -42634,6 +42645,8 @@ module Aws::EC2
42634
42645
  # resp.vpn_connection.options.remote_ipv_4_network_cidr #=> String
42635
42646
  # resp.vpn_connection.options.local_ipv_6_network_cidr #=> String
42636
42647
  # resp.vpn_connection.options.remote_ipv_6_network_cidr #=> String
42648
+ # resp.vpn_connection.options.outside_ip_address_type #=> String
42649
+ # resp.vpn_connection.options.transport_transit_gateway_attachment_id #=> String
42637
42650
  # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
42638
42651
  # resp.vpn_connection.options.tunnel_options #=> Array
42639
42652
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
@@ -42758,6 +42771,8 @@ module Aws::EC2
42758
42771
  # resp.vpn_connection.options.remote_ipv_4_network_cidr #=> String
42759
42772
  # resp.vpn_connection.options.local_ipv_6_network_cidr #=> String
42760
42773
  # resp.vpn_connection.options.remote_ipv_6_network_cidr #=> String
42774
+ # resp.vpn_connection.options.outside_ip_address_type #=> String
42775
+ # resp.vpn_connection.options.transport_transit_gateway_attachment_id #=> String
42761
42776
  # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
42762
42777
  # resp.vpn_connection.options.tunnel_options #=> Array
42763
42778
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
@@ -42855,6 +42870,8 @@ module Aws::EC2
42855
42870
  # resp.vpn_connection.options.remote_ipv_4_network_cidr #=> String
42856
42871
  # resp.vpn_connection.options.local_ipv_6_network_cidr #=> String
42857
42872
  # resp.vpn_connection.options.remote_ipv_6_network_cidr #=> String
42873
+ # resp.vpn_connection.options.outside_ip_address_type #=> String
42874
+ # resp.vpn_connection.options.transport_transit_gateway_attachment_id #=> String
42858
42875
  # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
42859
42876
  # resp.vpn_connection.options.tunnel_options #=> Array
42860
42877
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
@@ -43012,6 +43029,8 @@ module Aws::EC2
43012
43029
  # resp.vpn_connection.options.remote_ipv_4_network_cidr #=> String
43013
43030
  # resp.vpn_connection.options.local_ipv_6_network_cidr #=> String
43014
43031
  # resp.vpn_connection.options.remote_ipv_6_network_cidr #=> String
43032
+ # resp.vpn_connection.options.outside_ip_address_type #=> String
43033
+ # resp.vpn_connection.options.transport_transit_gateway_attachment_id #=> String
43015
43034
  # resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
43016
43035
  # resp.vpn_connection.options.tunnel_options #=> Array
43017
43036
  # resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
@@ -49695,7 +49714,7 @@ module Aws::EC2
49695
49714
  params: params,
49696
49715
  config: config)
49697
49716
  context[:gem_name] = 'aws-sdk-ec2'
49698
- context[:gem_version] = '1.318.0'
49717
+ context[:gem_version] = '1.319.0'
49699
49718
  Seahorse::Client::Request.new(handlers, context)
49700
49719
  end
49701
49720
 
@@ -3890,11 +3890,12 @@ module Aws::EC2
3890
3890
  CreateClientVpnRouteResult.struct_class = Types::CreateClientVpnRouteResult
3891
3891
 
3892
3892
  CreateCustomerGatewayRequest.add_member(:bgp_asn, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "BgpAsn"))
3893
- CreateCustomerGatewayRequest.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "IpAddress"))
3893
+ CreateCustomerGatewayRequest.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "PublicIp"))
3894
3894
  CreateCustomerGatewayRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
3895
3895
  CreateCustomerGatewayRequest.add_member(:type, Shapes::ShapeRef.new(shape: GatewayType, required: true, location_name: "Type"))
3896
3896
  CreateCustomerGatewayRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
3897
3897
  CreateCustomerGatewayRequest.add_member(:device_name, Shapes::ShapeRef.new(shape: String, location_name: "DeviceName"))
3898
+ CreateCustomerGatewayRequest.add_member(:ip_address, Shapes::ShapeRef.new(shape: String, location_name: "IpAddress"))
3898
3899
  CreateCustomerGatewayRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
3899
3900
  CreateCustomerGatewayRequest.struct_class = Types::CreateCustomerGatewayRequest
3900
3901
 
@@ -13197,6 +13198,8 @@ module Aws::EC2
13197
13198
  VpnConnectionOptions.add_member(:remote_ipv_4_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "remoteIpv4NetworkCidr"))
13198
13199
  VpnConnectionOptions.add_member(:local_ipv_6_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "localIpv6NetworkCidr"))
13199
13200
  VpnConnectionOptions.add_member(:remote_ipv_6_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "remoteIpv6NetworkCidr"))
13201
+ VpnConnectionOptions.add_member(:outside_ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "outsideIpAddressType"))
13202
+ VpnConnectionOptions.add_member(:transport_transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: String, location_name: "transportTransitGatewayAttachmentId"))
13200
13203
  VpnConnectionOptions.add_member(:tunnel_inside_ip_version, Shapes::ShapeRef.new(shape: TunnelInsideIpVersion, location_name: "tunnelInsideIpVersion"))
13201
13204
  VpnConnectionOptions.add_member(:tunnel_options, Shapes::ShapeRef.new(shape: TunnelOptionsList, location_name: "tunnelOptionSet"))
13202
13205
  VpnConnectionOptions.struct_class = Types::VpnConnectionOptions
@@ -13209,6 +13212,8 @@ module Aws::EC2
13209
13212
  VpnConnectionOptionsSpecification.add_member(:remote_ipv_4_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "RemoteIpv4NetworkCidr"))
13210
13213
  VpnConnectionOptionsSpecification.add_member(:local_ipv_6_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "LocalIpv6NetworkCidr"))
13211
13214
  VpnConnectionOptionsSpecification.add_member(:remote_ipv_6_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "RemoteIpv6NetworkCidr"))
13215
+ VpnConnectionOptionsSpecification.add_member(:outside_ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "OutsideIpAddressType"))
13216
+ VpnConnectionOptionsSpecification.add_member(:transport_transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, location_name: "TransportTransitGatewayAttachmentId"))
13212
13217
  VpnConnectionOptionsSpecification.struct_class = Types::VpnConnectionOptionsSpecification
13213
13218
 
13214
13219
  VpnGateway.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
@@ -7309,6 +7309,7 @@ module Aws::EC2
7309
7309
  # },
7310
7310
  # ],
7311
7311
  # device_name: "String",
7312
+ # ip_address: "String",
7312
7313
  # dry_run: false,
7313
7314
  # }
7314
7315
  #
@@ -7319,8 +7320,9 @@ module Aws::EC2
7319
7320
  # @return [Integer]
7320
7321
  #
7321
7322
  # @!attribute [rw] public_ip
7322
- # The Internet-routable IP address for the customer gateway's outside
7323
- # interface. The address must be static.
7323
+ # *This member has been deprecated.* The Internet-routable IP address
7324
+ # for the customer gateway's outside interface. The address must be
7325
+ # static.
7324
7326
  # @return [String]
7325
7327
  #
7326
7328
  # @!attribute [rw] certificate_arn
@@ -7342,6 +7344,11 @@ module Aws::EC2
7342
7344
  # Length Constraints: Up to 255 characters.
7343
7345
  # @return [String]
7344
7346
  #
7347
+ # @!attribute [rw] ip_address
7348
+ # IPv4 address for the customer gateway device's outside interface.
7349
+ # The address must be static.
7350
+ # @return [String]
7351
+ #
7345
7352
  # @!attribute [rw] dry_run
7346
7353
  # Checks whether you have the required permissions for the action,
7347
7354
  # without actually making the request, and provides an error response.
@@ -7358,6 +7365,7 @@ module Aws::EC2
7358
7365
  :type,
7359
7366
  :tag_specifications,
7360
7367
  :device_name,
7368
+ :ip_address,
7361
7369
  :dry_run)
7362
7370
  SENSITIVE = []
7363
7371
  include Aws::Structure
@@ -13919,6 +13927,8 @@ module Aws::EC2
13919
13927
  # remote_ipv_4_network_cidr: "String",
13920
13928
  # local_ipv_6_network_cidr: "String",
13921
13929
  # remote_ipv_6_network_cidr: "String",
13930
+ # outside_ip_address_type: "String",
13931
+ # transport_transit_gateway_attachment_id: "TransitGatewayAttachmentId",
13922
13932
  # },
13923
13933
  # tag_specifications: [
13924
13934
  # {
@@ -14149,8 +14159,7 @@ module Aws::EC2
14149
14159
  # @return [String]
14150
14160
  #
14151
14161
  # @!attribute [rw] ip_address
14152
- # The Internet-routable IP address of the customer gateway's outside
14153
- # interface.
14162
+ # The IP address of the customer gateway device's outside interface.
14154
14163
  # @return [String]
14155
14164
  #
14156
14165
  # @!attribute [rw] certificate_arn
@@ -18578,8 +18587,8 @@ module Aws::EC2
18578
18587
  #
18579
18588
  # * `customer-gateway-id` - The ID of the customer gateway.
18580
18589
  #
18581
- # * `ip-address` - The IP address of the customer gateway's
18582
- # Internet-routable external interface.
18590
+ # * `ip-address` - The IP address of the customer gateway device's
18591
+ # external interface.
18583
18592
  #
18584
18593
  # * `state` - The state of the customer gateway (`pending` \|
18585
18594
  # `available` \| `deleting` \| `deleted`).
@@ -69072,6 +69081,19 @@ module Aws::EC2
69072
69081
  # The IPv6 CIDR on the Amazon Web Services side of the VPN connection.
69073
69082
  # @return [String]
69074
69083
  #
69084
+ # @!attribute [rw] outside_ip_address_type
69085
+ # The type of IPv4 address assigned to the outside interface of the
69086
+ # customer gateway.
69087
+ #
69088
+ # Valid values: `PrivateIpv4` \| `PublicIpv4`
69089
+ #
69090
+ # Default: `PublicIpv4`
69091
+ # @return [String]
69092
+ #
69093
+ # @!attribute [rw] transport_transit_gateway_attachment_id
69094
+ # The transit gateway attachment ID in use for the VPN tunnel.
69095
+ # @return [String]
69096
+ #
69075
69097
  # @!attribute [rw] tunnel_inside_ip_version
69076
69098
  # Indicates whether the VPN tunnels process IPv4 or IPv6 traffic.
69077
69099
  # @return [String]
@@ -69089,6 +69111,8 @@ module Aws::EC2
69089
69111
  :remote_ipv_4_network_cidr,
69090
69112
  :local_ipv_6_network_cidr,
69091
69113
  :remote_ipv_6_network_cidr,
69114
+ :outside_ip_address_type,
69115
+ :transport_transit_gateway_attachment_id,
69092
69116
  :tunnel_inside_ip_version,
69093
69117
  :tunnel_options)
69094
69118
  SENSITIVE = []
@@ -69158,6 +69182,8 @@ module Aws::EC2
69158
69182
  # remote_ipv_4_network_cidr: "String",
69159
69183
  # local_ipv_6_network_cidr: "String",
69160
69184
  # remote_ipv_6_network_cidr: "String",
69185
+ # outside_ip_address_type: "String",
69186
+ # transport_transit_gateway_attachment_id: "TransitGatewayAttachmentId",
69161
69187
  # }
69162
69188
  #
69163
69189
  # @!attribute [rw] enable_acceleration
@@ -69211,6 +69237,21 @@ module Aws::EC2
69211
69237
  # Default: `::/0`
69212
69238
  # @return [String]
69213
69239
  #
69240
+ # @!attribute [rw] outside_ip_address_type
69241
+ # The type of IPv4 address assigned to the outside interface of the
69242
+ # customer gateway device.
69243
+ #
69244
+ # Valid values: `PrivateIpv4` \| `PublicIpv4`
69245
+ #
69246
+ # Default: `PublicIpv4`
69247
+ # @return [String]
69248
+ #
69249
+ # @!attribute [rw] transport_transit_gateway_attachment_id
69250
+ # The transit gateway attachment ID to use for the VPN tunnel.
69251
+ #
69252
+ # Required if `OutsideIpAddressType` is set to `PrivateIpv4`.
69253
+ # @return [String]
69254
+ #
69214
69255
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnConnectionOptionsSpecification AWS API Documentation
69215
69256
  #
69216
69257
  class VpnConnectionOptionsSpecification < Struct.new(
@@ -69221,7 +69262,9 @@ module Aws::EC2
69221
69262
  :local_ipv_4_network_cidr,
69222
69263
  :remote_ipv_4_network_cidr,
69223
69264
  :local_ipv_6_network_cidr,
69224
- :remote_ipv_6_network_cidr)
69265
+ :remote_ipv_6_network_cidr,
69266
+ :outside_ip_address_type,
69267
+ :transport_transit_gateway_attachment_id)
69225
69268
  SENSITIVE = []
69226
69269
  include Aws::Structure
69227
69270
  end
data/lib/aws-sdk-ec2.rb CHANGED
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.318.0'
75
+ GEM_VERSION = '1.319.0'
76
76
 
77
77
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.318.0
4
+ version: 1.319.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-13 00:00:00.000000000 Z
11
+ date: 2022-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4