aws-sdk-ec2 1.263.0 → 1.264.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 +202 -86
- data/lib/aws-sdk-ec2/client_api.rb +59 -2
- data/lib/aws-sdk-ec2/instance.rb +2 -2
- data/lib/aws-sdk-ec2/resource.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +226 -69
- data/lib/aws-sdk-ec2/vpc.rb +2 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 379465bcc1f1481ff0adc4547535d95dab3ee425995c790dafc788e5828b0864
|
4
|
+
data.tar.gz: a4fba1cec09e704631944dd27e5afa5566abed1549400bda7216c9cd86b9d12e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19307403249414fb45134c6c7b4cd33dfa86f4d8d87a866706182057ebd9212084fcdad2328c5a43333ff6602ccfc53272597aae508c314dad078f8f2db37f68
|
7
|
+
data.tar.gz: d69304b3d20012d09f5f4bc299fee273223f464a68e4a277478c471650ccbd2f345c609218dfa23155d6bdc75e63be71c926315791995a9c0bced288786da4cb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.264.0 (2021-09-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This update adds support for downloading configuration templates using new APIs (GetVpnConnectionDeviceTypes and GetVpnConnectionDeviceSampleConfiguration) and Internet Key Exchange version 2 (IKEv2) parameters for many popular CGW devices.
|
8
|
+
|
4
9
|
1.263.0 (2021-09-14)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.264.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -1404,8 +1404,8 @@ module Aws::EC2
|
|
1404
1404
|
#
|
1405
1405
|
# @option params [String] :client_token
|
1406
1406
|
# Unique, case-sensitive identifier that you provide to ensure the
|
1407
|
-
# idempotency of the request. For more information, see [How to
|
1408
|
-
#
|
1407
|
+
# idempotency of the request. For more information, see [How to ensure
|
1408
|
+
# idempotency][1].
|
1409
1409
|
#
|
1410
1410
|
# **A suitable default value is auto-generated.** You should normally
|
1411
1411
|
# not need to pass this option.**
|
@@ -2158,7 +2158,7 @@ module Aws::EC2
|
|
2158
2158
|
#
|
2159
2159
|
# resp = client.attach_classic_link_vpc({
|
2160
2160
|
# dry_run: false,
|
2161
|
-
# groups: ["
|
2161
|
+
# groups: ["SecurityGroupId"], # required
|
2162
2162
|
# instance_id: "InstanceId", # required
|
2163
2163
|
# vpc_id: "VpcId", # required
|
2164
2164
|
# })
|
@@ -2400,8 +2400,8 @@ module Aws::EC2
|
|
2400
2400
|
# Attaches a virtual private gateway to a VPC. You can attach one
|
2401
2401
|
# virtual private gateway to one VPC at a time.
|
2402
2402
|
#
|
2403
|
-
# For more information, see [
|
2404
|
-
# Site-to-Site VPN User Guide*.
|
2403
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
2404
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
2405
2405
|
#
|
2406
2406
|
#
|
2407
2407
|
#
|
@@ -2448,7 +2448,8 @@ module Aws::EC2
|
|
2448
2448
|
# Adds an ingress authorization rule to a Client VPN endpoint. Ingress
|
2449
2449
|
# authorization rules act as firewall rules that grant access to
|
2450
2450
|
# networks. You must configure ingress authorization rules to enable
|
2451
|
-
# clients to access resources in
|
2451
|
+
# clients to access resources in Amazon Web Services or on-premises
|
2452
|
+
# networks.
|
2452
2453
|
#
|
2453
2454
|
# @option params [required, String] :client_vpn_endpoint_id
|
2454
2455
|
# The ID of the Client VPN endpoint.
|
@@ -2473,8 +2474,8 @@ module Aws::EC2
|
|
2473
2474
|
#
|
2474
2475
|
# @option params [String] :client_token
|
2475
2476
|
# Unique, case-sensitive identifier that you provide to ensure the
|
2476
|
-
# idempotency of the request. For more information, see [How to
|
2477
|
-
#
|
2477
|
+
# idempotency of the request. For more information, see [How to ensure
|
2478
|
+
# idempotency][1].
|
2478
2479
|
#
|
2479
2480
|
# **A suitable default value is auto-generated.** You should normally
|
2480
2481
|
# not need to pass this option.**
|
@@ -4305,8 +4306,8 @@ module Aws::EC2
|
|
4305
4306
|
# greater.
|
4306
4307
|
#
|
4307
4308
|
# @option params [required, String] :server_certificate_arn
|
4308
|
-
# The ARN of the server certificate. For more information, see the
|
4309
|
-
# Certificate Manager User Guide][1].
|
4309
|
+
# The ARN of the server certificate. For more information, see the
|
4310
|
+
# [Certificate Manager User Guide][1].
|
4310
4311
|
#
|
4311
4312
|
#
|
4312
4313
|
#
|
@@ -4354,14 +4355,12 @@ module Aws::EC2
|
|
4354
4355
|
# A brief description of the Client VPN endpoint.
|
4355
4356
|
#
|
4356
4357
|
# @option params [Boolean] :split_tunnel
|
4357
|
-
# Indicates whether split-tunnel is enabled on the
|
4358
|
-
# endpoint.
|
4358
|
+
# Indicates whether split-tunnel is enabled on the Client VPN endpoint.
|
4359
4359
|
#
|
4360
4360
|
# By default, split-tunnel on a VPN endpoint is disabled.
|
4361
4361
|
#
|
4362
|
-
# For information about split-tunnel VPN endpoints, see [Split-
|
4363
|
-
#
|
4364
|
-
# Guide*.
|
4362
|
+
# For information about split-tunnel VPN endpoints, see [Split-tunnel
|
4363
|
+
# Client VPN endpoint][1] in the *Client VPN Administrator Guide*.
|
4365
4364
|
#
|
4366
4365
|
#
|
4367
4366
|
#
|
@@ -4375,8 +4374,8 @@ module Aws::EC2
|
|
4375
4374
|
#
|
4376
4375
|
# @option params [String] :client_token
|
4377
4376
|
# Unique, case-sensitive identifier that you provide to ensure the
|
4378
|
-
# idempotency of the request. For more information, see [How to
|
4379
|
-
#
|
4377
|
+
# idempotency of the request. For more information, see [How to ensure
|
4378
|
+
# idempotency][1].
|
4380
4379
|
#
|
4381
4380
|
# **A suitable default value is auto-generated.** You should normally
|
4382
4381
|
# not need to pass this option.**
|
@@ -4499,8 +4498,8 @@ module Aws::EC2
|
|
4499
4498
|
# * To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR
|
4500
4499
|
# range
|
4501
4500
|
#
|
4502
|
-
# * To add a route for an on-premises network, enter the
|
4503
|
-
# Site-to-Site VPN connection's IPv4 CIDR range
|
4501
|
+
# * To add a route for an on-premises network, enter the Amazon Web
|
4502
|
+
# Services Site-to-Site VPN connection's IPv4 CIDR range
|
4504
4503
|
#
|
4505
4504
|
# * To add a route for the local network, enter the client CIDR range
|
4506
4505
|
#
|
@@ -4517,8 +4516,8 @@ module Aws::EC2
|
|
4517
4516
|
#
|
4518
4517
|
# @option params [String] :client_token
|
4519
4518
|
# Unique, case-sensitive identifier that you provide to ensure the
|
4520
|
-
# idempotency of the request. For more information, see [How to
|
4521
|
-
#
|
4519
|
+
# idempotency of the request. For more information, see [How to ensure
|
4520
|
+
# idempotency][1].
|
4522
4521
|
#
|
4523
4522
|
# **A suitable default value is auto-generated.** You should normally
|
4524
4523
|
# not need to pass this option.**
|
@@ -4562,13 +4561,13 @@ module Aws::EC2
|
|
4562
4561
|
req.send_request(options)
|
4563
4562
|
end
|
4564
4563
|
|
4565
|
-
# Provides information to
|
4566
|
-
# The customer gateway is the appliance at your end of
|
4567
|
-
# connection. (The device on the
|
4568
|
-
# virtual private gateway.) You must provide the
|
4569
|
-
# address of the customer gateway's external
|
4570
|
-
# must be static and can be behind a device
|
4571
|
-
# translation (NAT).
|
4564
|
+
# Provides information to Amazon Web Services about your VPN customer
|
4565
|
+
# gateway device. The customer gateway is the appliance at your end of
|
4566
|
+
# the VPN connection. (The device on the Amazon Web Services side of the
|
4567
|
+
# VPN connection is the virtual private gateway.) You must provide the
|
4568
|
+
# internet-routable IP address of the customer gateway's external
|
4569
|
+
# interface. The IP address must be static and can be behind a device
|
4570
|
+
# performing network address translation (NAT).
|
4572
4571
|
#
|
4573
4572
|
# For devices that use Border Gateway Protocol (BGP), you can also
|
4574
4573
|
# provide the device's BGP Autonomous System Number (ASN). You can use
|
@@ -4588,8 +4587,8 @@ module Aws::EC2
|
|
4588
4587
|
#
|
4589
4588
|
# </note>
|
4590
4589
|
#
|
4591
|
-
# For more information, see [
|
4592
|
-
# Site-to-Site VPN User Guide*.
|
4590
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
4591
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
4593
4592
|
#
|
4594
4593
|
# To create more than one customer gateway with the same VPN type, IP
|
4595
4594
|
# address, and BGP ASN, specify a unique device name for each customer
|
@@ -11448,8 +11447,8 @@ module Aws::EC2
|
|
11448
11447
|
# This is an idempotent operation. If you perform the operation more
|
11449
11448
|
# than once, Amazon EC2 doesn't return an error.
|
11450
11449
|
#
|
11451
|
-
# For more information, see [
|
11452
|
-
# Site-to-Site VPN User Guide*.
|
11450
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
11451
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
11453
11452
|
#
|
11454
11453
|
#
|
11455
11454
|
#
|
@@ -11638,8 +11637,8 @@ module Aws::EC2
|
|
11638
11637
|
# static route allows traffic to be routed from the virtual private
|
11639
11638
|
# gateway to the VPN customer gateway.
|
11640
11639
|
#
|
11641
|
-
# For more information, see [
|
11642
|
-
# Site-to-Site VPN User Guide*.
|
11640
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
11641
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
11643
11642
|
#
|
11644
11643
|
#
|
11645
11644
|
#
|
@@ -11674,8 +11673,8 @@ module Aws::EC2
|
|
11674
11673
|
# endpoint on the VPC side of your VPN connection. You can create a
|
11675
11674
|
# virtual private gateway before creating the VPC itself.
|
11676
11675
|
#
|
11677
|
-
# For more information, see [
|
11678
|
-
# Site-to-Site VPN User Guide*.
|
11676
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
11677
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
11679
11678
|
#
|
11680
11679
|
#
|
11681
11680
|
#
|
@@ -14227,9 +14226,10 @@ module Aws::EC2
|
|
14227
14226
|
# gateway device using the new configuration information returned with
|
14228
14227
|
# the new VPN connection ID.
|
14229
14228
|
#
|
14230
|
-
# For certificate-based authentication, delete all
|
14231
|
-
#
|
14232
|
-
# endpoints for the VPN connection before deleting the VPN
|
14229
|
+
# For certificate-based authentication, delete all Certificate Manager
|
14230
|
+
# (ACM) private certificates used for the Amazon Web Services-side
|
14231
|
+
# tunnel endpoints for the VPN connection before deleting the VPN
|
14232
|
+
# connection.
|
14233
14233
|
#
|
14234
14234
|
# @option params [required, String] :vpn_connection_id
|
14235
14235
|
# The ID of the VPN connection.
|
@@ -16229,8 +16229,8 @@ module Aws::EC2
|
|
16229
16229
|
|
16230
16230
|
# Describes one or more of your VPN customer gateways.
|
16231
16231
|
#
|
16232
|
-
# For more information, see [
|
16233
|
-
# Site-to-Site VPN User Guide*.
|
16232
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
16233
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
16234
16234
|
#
|
16235
16235
|
#
|
16236
16236
|
#
|
@@ -24452,7 +24452,7 @@ module Aws::EC2
|
|
24452
24452
|
# values: ["String"],
|
24453
24453
|
# },
|
24454
24454
|
# ],
|
24455
|
-
# group_ids: ["
|
24455
|
+
# group_ids: ["SecurityGroupId"],
|
24456
24456
|
# group_names: ["SecurityGroupName"],
|
24457
24457
|
# dry_run: false,
|
24458
24458
|
# next_token: "String",
|
@@ -29092,8 +29092,8 @@ module Aws::EC2
|
|
29092
29092
|
|
29093
29093
|
# Describes one or more of your VPN connections.
|
29094
29094
|
#
|
29095
|
-
# For more information, see [
|
29096
|
-
# Site-to-Site VPN User Guide*.
|
29095
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
29096
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
29097
29097
|
#
|
29098
29098
|
#
|
29099
29099
|
#
|
@@ -29247,8 +29247,8 @@ module Aws::EC2
|
|
29247
29247
|
|
29248
29248
|
# Describes one or more of your virtual private gateways.
|
29249
29249
|
#
|
29250
|
-
# For more information, see [
|
29251
|
-
# Site-to-Site VPN User Guide*.
|
29250
|
+
# For more information, see [Amazon Web Services Site-to-Site VPN][1] in
|
29251
|
+
# the *Amazon Web Services Site-to-Site VPN User Guide*.
|
29252
29252
|
#
|
29253
29253
|
#
|
29254
29254
|
#
|
@@ -32874,6 +32874,121 @@ module Aws::EC2
|
|
32874
32874
|
req.send_request(options)
|
32875
32875
|
end
|
32876
32876
|
|
32877
|
+
# Download an AWS-provided sample configuration file to be used with the
|
32878
|
+
# customer gateway device specified for your Site-to-Site VPN
|
32879
|
+
# connection.
|
32880
|
+
#
|
32881
|
+
# @option params [required, String] :vpn_connection_id
|
32882
|
+
# The `VpnConnectionId` specifies the Site-to-Site VPN connection used
|
32883
|
+
# for the sample configuration.
|
32884
|
+
#
|
32885
|
+
# @option params [required, String] :vpn_connection_device_type_id
|
32886
|
+
# Device identifier provided by the `GetVpnConnectionDeviceTypes` API.
|
32887
|
+
#
|
32888
|
+
# @option params [String] :internet_key_exchange_version
|
32889
|
+
# The IKE version to be used in the sample configuration file for your
|
32890
|
+
# customer gateway device. You can specify one of the following
|
32891
|
+
# versions: `ikev1` or `ikev2`.
|
32892
|
+
#
|
32893
|
+
# @option params [Boolean] :dry_run
|
32894
|
+
# Checks whether you have the required permissions for the action,
|
32895
|
+
# without actually making the request, and provides an error response.
|
32896
|
+
# If you have the required permissions, the error response is
|
32897
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
32898
|
+
#
|
32899
|
+
# @return [Types::GetVpnConnectionDeviceSampleConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
32900
|
+
#
|
32901
|
+
# * {Types::GetVpnConnectionDeviceSampleConfigurationResult#vpn_connection_device_sample_configuration #vpn_connection_device_sample_configuration} => String
|
32902
|
+
#
|
32903
|
+
# @example Request syntax with placeholder values
|
32904
|
+
#
|
32905
|
+
# resp = client.get_vpn_connection_device_sample_configuration({
|
32906
|
+
# vpn_connection_id: "VpnConnectionId", # required
|
32907
|
+
# vpn_connection_device_type_id: "VpnConnectionDeviceTypeId", # required
|
32908
|
+
# internet_key_exchange_version: "String",
|
32909
|
+
# dry_run: false,
|
32910
|
+
# })
|
32911
|
+
#
|
32912
|
+
# @example Response structure
|
32913
|
+
#
|
32914
|
+
# resp.vpn_connection_device_sample_configuration #=> String
|
32915
|
+
#
|
32916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetVpnConnectionDeviceSampleConfiguration AWS API Documentation
|
32917
|
+
#
|
32918
|
+
# @overload get_vpn_connection_device_sample_configuration(params = {})
|
32919
|
+
# @param [Hash] params ({})
|
32920
|
+
def get_vpn_connection_device_sample_configuration(params = {}, options = {})
|
32921
|
+
req = build_request(:get_vpn_connection_device_sample_configuration, params)
|
32922
|
+
req.send_request(options)
|
32923
|
+
end
|
32924
|
+
|
32925
|
+
# Obtain a list of customer gateway devices for which sample
|
32926
|
+
# configuration files can be provided. The request has no additional
|
32927
|
+
# parameters. You can also see the list of device types with sample
|
32928
|
+
# configuration files available under [Your customer gateway device][1]
|
32929
|
+
# in the *Amazon Web Services Site-to-Site VPN User Guide*.
|
32930
|
+
#
|
32931
|
+
#
|
32932
|
+
#
|
32933
|
+
# [1]: https://docs.aws.amazon.com/vpn/latest/s2svpn/your-cgw.html
|
32934
|
+
#
|
32935
|
+
# @option params [Integer] :max_results
|
32936
|
+
# The maximum number of results returned by
|
32937
|
+
# `GetVpnConnectionDeviceTypes` in paginated output. When this parameter
|
32938
|
+
# is used, `GetVpnConnectionDeviceTypes` only returns `MaxResults`
|
32939
|
+
# results in a single page along with a `NextToken` response element.
|
32940
|
+
# The remaining results of the initial request can be seen by sending
|
32941
|
+
# another `GetVpnConnectionDeviceTypes` request with the returned
|
32942
|
+
# `NextToken` value. This value can be between 200 and 1000. If this
|
32943
|
+
# parameter is not used, then `GetVpnConnectionDeviceTypes` returns all
|
32944
|
+
# results.
|
32945
|
+
#
|
32946
|
+
# @option params [String] :next_token
|
32947
|
+
# The `NextToken` value returned from a previous paginated
|
32948
|
+
# `GetVpnConnectionDeviceTypes` request where `MaxResults` was used and
|
32949
|
+
# the results exceeded the value of that parameter. Pagination continues
|
32950
|
+
# from the end of the previous results that returned the `NextToken`
|
32951
|
+
# value. This value is null when there are no more results to return.
|
32952
|
+
#
|
32953
|
+
# @option params [Boolean] :dry_run
|
32954
|
+
# Checks whether you have the required permissions for the action,
|
32955
|
+
# without actually making the request, and provides an error response.
|
32956
|
+
# If you have the required permissions, the error response is
|
32957
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
32958
|
+
#
|
32959
|
+
# @return [Types::GetVpnConnectionDeviceTypesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
32960
|
+
#
|
32961
|
+
# * {Types::GetVpnConnectionDeviceTypesResult#vpn_connection_device_types #vpn_connection_device_types} => Array<Types::VpnConnectionDeviceType>
|
32962
|
+
# * {Types::GetVpnConnectionDeviceTypesResult#next_token #next_token} => String
|
32963
|
+
#
|
32964
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
32965
|
+
#
|
32966
|
+
# @example Request syntax with placeholder values
|
32967
|
+
#
|
32968
|
+
# resp = client.get_vpn_connection_device_types({
|
32969
|
+
# max_results: 1,
|
32970
|
+
# next_token: "NextToken",
|
32971
|
+
# dry_run: false,
|
32972
|
+
# })
|
32973
|
+
#
|
32974
|
+
# @example Response structure
|
32975
|
+
#
|
32976
|
+
# resp.vpn_connection_device_types #=> Array
|
32977
|
+
# resp.vpn_connection_device_types[0].vpn_connection_device_type_id #=> String
|
32978
|
+
# resp.vpn_connection_device_types[0].vendor #=> String
|
32979
|
+
# resp.vpn_connection_device_types[0].platform #=> String
|
32980
|
+
# resp.vpn_connection_device_types[0].software #=> String
|
32981
|
+
# resp.next_token #=> String
|
32982
|
+
#
|
32983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetVpnConnectionDeviceTypes AWS API Documentation
|
32984
|
+
#
|
32985
|
+
# @overload get_vpn_connection_device_types(params = {})
|
32986
|
+
# @param [Hash] params ({})
|
32987
|
+
def get_vpn_connection_device_types(params = {}, options = {})
|
32988
|
+
req = build_request(:get_vpn_connection_device_types, params)
|
32989
|
+
req.send_request(options)
|
32990
|
+
end
|
32991
|
+
|
32877
32992
|
# Uploads a client certificate revocation list to the specified Client
|
32878
32993
|
# VPN endpoint. Uploading a client certificate revocation list
|
32879
32994
|
# overwrites the existing client certificate revocation list.
|
@@ -32887,8 +33002,8 @@ module Aws::EC2
|
|
32887
33002
|
#
|
32888
33003
|
# @option params [required, String] :certificate_revocation_list
|
32889
33004
|
# The client certificate revocation list file. For more information, see
|
32890
|
-
# [Generate a Client Certificate Revocation List][1] in the *
|
32891
|
-
#
|
33005
|
+
# [Generate a Client Certificate Revocation List][1] in the *Client VPN
|
33006
|
+
# Administrator Guide*.
|
32892
33007
|
#
|
32893
33008
|
#
|
32894
33009
|
#
|
@@ -33826,7 +33941,7 @@ module Aws::EC2
|
|
33826
33941
|
#
|
33827
33942
|
# @option params [String] :server_certificate_arn
|
33828
33943
|
# The ARN of the server certificate to be used. The server certificate
|
33829
|
-
# must be provisioned in
|
33944
|
+
# must be provisioned in Certificate Manager (ACM).
|
33830
33945
|
#
|
33831
33946
|
# @option params [Types::ConnectionLogOptions] :connection_log_options
|
33832
33947
|
# Information about the client connection logging options.
|
@@ -33861,9 +33976,8 @@ module Aws::EC2
|
|
33861
33976
|
# @option params [Boolean] :split_tunnel
|
33862
33977
|
# Indicates whether the VPN is split-tunnel.
|
33863
33978
|
#
|
33864
|
-
# For information about split-tunnel VPN endpoints, see [Split-
|
33865
|
-
#
|
33866
|
-
# Guide*.
|
33979
|
+
# For information about split-tunnel VPN endpoints, see [Split-tunnel
|
33980
|
+
# Client VPN endpoint][1] in the *Client VPN Administrator Guide*.
|
33867
33981
|
#
|
33868
33982
|
#
|
33869
33983
|
#
|
@@ -34830,7 +34944,7 @@ module Aws::EC2
|
|
34830
34944
|
# ena_support: {
|
34831
34945
|
# value: false,
|
34832
34946
|
# },
|
34833
|
-
# groups: ["
|
34947
|
+
# groups: ["SecurityGroupId"],
|
34834
34948
|
# instance_id: "InstanceId", # required
|
34835
34949
|
# instance_initiated_shutdown_behavior: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
34836
34950
|
# instance_type: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
@@ -37223,9 +37337,9 @@ module Aws::EC2
|
|
37223
37337
|
req.send_request(options)
|
37224
37338
|
end
|
37225
37339
|
|
37226
|
-
# Modifies the customer gateway or the target gateway of an
|
37227
|
-
# Site-to-Site VPN connection. To modify the target gateway,
|
37228
|
-
# following migration options are available:
|
37340
|
+
# Modifies the customer gateway or the target gateway of an Amazon Web
|
37341
|
+
# Services Site-to-Site VPN connection. To modify the target gateway,
|
37342
|
+
# the following migration options are available:
|
37229
37343
|
#
|
37230
37344
|
# * An existing virtual private gateway to a new virtual private gateway
|
37231
37345
|
#
|
@@ -37251,20 +37365,22 @@ module Aws::EC2
|
|
37251
37365
|
#
|
37252
37366
|
# After you migrate to the new gateway, you might need to modify your
|
37253
37367
|
# VPC route table. Use CreateRoute and DeleteRoute to make the changes
|
37254
|
-
# described in [
|
37255
|
-
#
|
37368
|
+
# described in [Update VPC route tables][1] in the *Amazon Web Services
|
37369
|
+
# Site-to-Site VPN User Guide*.
|
37256
37370
|
#
|
37257
37371
|
# When the new gateway is a transit gateway, modify the transit gateway
|
37258
|
-
# route table to allow traffic between the VPC and the
|
37259
|
-
# VPN connection. Use CreateTransitGatewayRoute to
|
37372
|
+
# route table to allow traffic between the VPC and the Amazon Web
|
37373
|
+
# Services Site-to-Site VPN connection. Use CreateTransitGatewayRoute to
|
37374
|
+
# add the routes.
|
37260
37375
|
#
|
37261
37376
|
# If you deleted VPN static routes, you must add the static routes to
|
37262
37377
|
# the transit gateway route table.
|
37263
37378
|
#
|
37264
|
-
# After you perform this operation, the
|
37265
|
-
#
|
37266
|
-
# Site-to-Site VPN connection will be
|
37267
|
-
# brief period while we provision the new
|
37379
|
+
# After you perform this operation, the VPN endpoint's IP addresses on
|
37380
|
+
# the Amazon Web Services side and the tunnel options remain intact.
|
37381
|
+
# Your Amazon Web Services Site-to-Site VPN connection will be
|
37382
|
+
# temporarily unavailable for a brief period while we provision the new
|
37383
|
+
# endpoints.
|
37268
37384
|
#
|
37269
37385
|
#
|
37270
37386
|
#
|
@@ -37280,8 +37396,8 @@ module Aws::EC2
|
|
37280
37396
|
# The ID of the customer gateway at your end of the VPN connection.
|
37281
37397
|
#
|
37282
37398
|
# @option params [String] :vpn_gateway_id
|
37283
|
-
# The ID of the virtual private gateway at the
|
37284
|
-
# connection.
|
37399
|
+
# The ID of the virtual private gateway at the Amazon Web Services side
|
37400
|
+
# of the VPN connection.
|
37285
37401
|
#
|
37286
37402
|
# @option params [Boolean] :dry_run
|
37287
37403
|
# Checks whether you have the required permissions for the action,
|
@@ -37374,9 +37490,9 @@ module Aws::EC2
|
|
37374
37490
|
# Modifies the connection options for your Site-to-Site VPN connection.
|
37375
37491
|
#
|
37376
37492
|
# When you modify the VPN connection options, the VPN endpoint IP
|
37377
|
-
# addresses on the
|
37378
|
-
# change. Your VPN connection will be temporarily
|
37379
|
-
# brief period while the VPN connection is updated.
|
37493
|
+
# addresses on the Amazon Web Services side do not change, and the
|
37494
|
+
# tunnel options do not change. Your VPN connection will be temporarily
|
37495
|
+
# unavailable for a brief period while the VPN connection is updated.
|
37380
37496
|
#
|
37381
37497
|
# @option params [required, String] :vpn_connection_id
|
37382
37498
|
# The ID of the Site-to-Site VPN connection.
|
@@ -37388,7 +37504,7 @@ module Aws::EC2
|
|
37388
37504
|
# Default: `0.0.0.0/0`
|
37389
37505
|
#
|
37390
37506
|
# @option params [String] :remote_ipv_4_network_cidr
|
37391
|
-
# The IPv4 CIDR on the
|
37507
|
+
# The IPv4 CIDR on the Amazon Web Services side of the VPN connection.
|
37392
37508
|
#
|
37393
37509
|
# Default: `0.0.0.0/0`
|
37394
37510
|
#
|
@@ -37399,7 +37515,7 @@ module Aws::EC2
|
|
37399
37515
|
# Default: `::/0`
|
37400
37516
|
#
|
37401
37517
|
# @option params [String] :remote_ipv_6_network_cidr
|
37402
|
-
# The IPv6 CIDR on the
|
37518
|
+
# The IPv6 CIDR on the Amazon Web Services side of the VPN connection.
|
37403
37519
|
#
|
37404
37520
|
# Default: `::/0`
|
37405
37521
|
#
|
@@ -37495,7 +37611,7 @@ module Aws::EC2
|
|
37495
37611
|
# Modifies the VPN tunnel endpoint certificate.
|
37496
37612
|
#
|
37497
37613
|
# @option params [required, String] :vpn_connection_id
|
37498
|
-
# The ID of the
|
37614
|
+
# The ID of the Amazon Web Services Site-to-Site VPN connection.
|
37499
37615
|
#
|
37500
37616
|
# @option params [required, String] :vpn_tunnel_outside_ip_address
|
37501
37617
|
# The external IP address of the VPN tunnel.
|
@@ -37586,19 +37702,19 @@ module Aws::EC2
|
|
37586
37702
|
req.send_request(options)
|
37587
37703
|
end
|
37588
37704
|
|
37589
|
-
# Modifies the options for a VPN tunnel in an
|
37590
|
-
# connection. You can modify multiple options for a
|
37591
|
-
# request, but you can only modify one tunnel at a
|
37592
|
-
# information, see [Site-to-Site VPN
|
37593
|
-
# Site-to-Site VPN
|
37594
|
-
# Guide*.
|
37705
|
+
# Modifies the options for a VPN tunnel in an Amazon Web Services
|
37706
|
+
# Site-to-Site VPN connection. You can modify multiple options for a
|
37707
|
+
# tunnel in a single request, but you can only modify one tunnel at a
|
37708
|
+
# time. For more information, see [Site-to-Site VPN tunnel options for
|
37709
|
+
# your Site-to-Site VPN connection][1] in the *Amazon Web Services
|
37710
|
+
# Site-to-Site VPN User Guide*.
|
37595
37711
|
#
|
37596
37712
|
#
|
37597
37713
|
#
|
37598
37714
|
# [1]: https://docs.aws.amazon.com/vpn/latest/s2svpn/VPNTunnels.html
|
37599
37715
|
#
|
37600
37716
|
# @option params [required, String] :vpn_connection_id
|
37601
|
-
# The ID of the
|
37717
|
+
# The ID of the Amazon Web Services Site-to-Site VPN connection.
|
37602
37718
|
#
|
37603
37719
|
# @option params [required, String] :vpn_tunnel_outside_ip_address
|
37604
37720
|
# The external IP address of the VPN tunnel.
|
@@ -42129,9 +42245,6 @@ module Aws::EC2
|
|
42129
42245
|
# @option params [required, String] :local_gateway_route_table_id
|
42130
42246
|
# The ID of the local gateway route table.
|
42131
42247
|
#
|
42132
|
-
# @option params [required, Array<Types::Filter>] :filters
|
42133
|
-
# One or more filters.
|
42134
|
-
#
|
42135
42248
|
# @option params [Integer] :max_results
|
42136
42249
|
# The maximum number of results to return with a single call. To
|
42137
42250
|
# retrieve the remaining results, make another call with the returned
|
@@ -42146,6 +42259,9 @@ module Aws::EC2
|
|
42146
42259
|
# If you have the required permissions, the error response is
|
42147
42260
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
42148
42261
|
#
|
42262
|
+
# @option params [required, Array<Types::Filter>] :filters
|
42263
|
+
# One or more filters.
|
42264
|
+
#
|
42149
42265
|
# @return [Types::SearchLocalGatewayRoutesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
42150
42266
|
#
|
42151
42267
|
# * {Types::SearchLocalGatewayRoutesResult#routes #routes} => Array<Types::LocalGatewayRoute>
|
@@ -42157,15 +42273,15 @@ module Aws::EC2
|
|
42157
42273
|
#
|
42158
42274
|
# resp = client.search_local_gateway_routes({
|
42159
42275
|
# local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
|
42276
|
+
# max_results: 1,
|
42277
|
+
# next_token: "String",
|
42278
|
+
# dry_run: false,
|
42160
42279
|
# filters: [ # required
|
42161
42280
|
# {
|
42162
42281
|
# name: "String",
|
42163
42282
|
# values: ["String"],
|
42164
42283
|
# },
|
42165
42284
|
# ],
|
42166
|
-
# max_results: 1,
|
42167
|
-
# next_token: "String",
|
42168
|
-
# dry_run: false,
|
42169
42285
|
# })
|
42170
42286
|
#
|
42171
42287
|
# @example Response structure
|
@@ -43640,7 +43756,7 @@ module Aws::EC2
|
|
43640
43756
|
params: params,
|
43641
43757
|
config: config)
|
43642
43758
|
context[:gem_name] = 'aws-sdk-ec2'
|
43643
|
-
context[:gem_version] = '1.
|
43759
|
+
context[:gem_version] = '1.264.0'
|
43644
43760
|
Seahorse::Client::Request.new(handlers, context)
|
43645
43761
|
end
|
43646
43762
|
|