aws-sdk-ec2 1.181.0 → 1.186.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +12 -2
- data/lib/aws-sdk-ec2/client.rb +316 -59
- data/lib/aws-sdk-ec2/client_api.rb +96 -2
- data/lib/aws-sdk-ec2/instance.rb +8 -4
- data/lib/aws-sdk-ec2/network_interface_association.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +7 -6
- data/lib/aws-sdk-ec2/route.rb +9 -0
- data/lib/aws-sdk-ec2/route_table.rb +6 -0
- data/lib/aws-sdk-ec2/subnet.rb +1 -0
- data/lib/aws-sdk-ec2/types.rb +489 -105
- data/lib/aws-sdk-ec2/vpc.rb +1 -2
- data/lib/aws-sdk-ec2/vpc_address.rb +12 -2
- 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: c087cc21cc05aa1550218ee95a65d3733371313cfd317396853d4ad1f5a1c649
|
4
|
+
data.tar.gz: c9aa30129a056bb87d295a15242151f6f22fa0ae07f6b9db13263889b3507247
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7625dfb04e5dafdbf468285b443f9743bfb2fdfcba71960addb6c325580caeb9fb0c100bb898e7fd588b64dc1ce49151f4085319cc3a0f21ba09328a35bea9d2
|
7
|
+
data.tar.gz: 88e85407babdaa3fe27ef3bbea0f23cfedcf7d2f89a31dea6687c0660ef0d3d9712dd438dbd99b2e97a558a977c70af9781353313ad3302efc65e41e2d874050
|
data/lib/aws-sdk-ec2.rb
CHANGED
@@ -91,7 +91,8 @@ module Aws::EC2
|
|
91
91
|
data[:public_ipv_4_pool]
|
92
92
|
end
|
93
93
|
|
94
|
-
# The name of the
|
94
|
+
# The name of the unique set of Availability Zones, Local Zones, or
|
95
|
+
# Wavelength Zones from which AWS advertises IP addresses.
|
95
96
|
# @return [String]
|
96
97
|
def network_border_group
|
97
98
|
data[:network_border_group]
|
@@ -109,6 +110,14 @@ module Aws::EC2
|
|
109
110
|
data[:customer_owned_ipv_4_pool]
|
110
111
|
end
|
111
112
|
|
113
|
+
# The carrier IP address associated. This option is only available for
|
114
|
+
# network interfaces which reside in a subnet in a Wavelength Zone (for
|
115
|
+
# example an EC2 instance).
|
116
|
+
# @return [String]
|
117
|
+
def carrier_ip
|
118
|
+
data[:carrier_ip]
|
119
|
+
end
|
120
|
+
|
112
121
|
# @!endgroup
|
113
122
|
|
114
123
|
# @return [Client]
|
@@ -324,7 +333,8 @@ module Aws::EC2
|
|
324
333
|
# @option options [String] :allocation_id
|
325
334
|
# \[EC2-VPC\] The allocation ID. Required for EC2-VPC.
|
326
335
|
# @option options [String] :network_border_group
|
327
|
-
# The
|
336
|
+
# The set of Availability Zones, Local Zones, or Wavelength Zones from
|
337
|
+
# which AWS advertises IP addresses.
|
328
338
|
#
|
329
339
|
# If you provide an incorrect network border group, you will receive an
|
330
340
|
# `InvalidAddress.NotFound` error. For more information, see [Error
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -659,6 +659,10 @@ module Aws::EC2
|
|
659
659
|
# For more information, see [Elastic IP Addresses][2] in the *Amazon
|
660
660
|
# Elastic Compute Cloud User Guide*.
|
661
661
|
#
|
662
|
+
# You can allocate a carrier IP address which is a public IP address
|
663
|
+
# from a telecommunication carrier, to a network interface which resides
|
664
|
+
# in a subnet in a Wavelength Zone (for example an EC2 instance).
|
665
|
+
#
|
662
666
|
#
|
663
667
|
#
|
664
668
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html
|
@@ -682,12 +686,10 @@ module Aws::EC2
|
|
682
686
|
# instead.
|
683
687
|
#
|
684
688
|
# @option params [String] :network_border_group
|
685
|
-
#
|
686
|
-
#
|
687
|
-
#
|
688
|
-
#
|
689
|
-
# Zones from where AWS advertises IP addresses and limits the addresses
|
690
|
-
# to the group. IP addresses cannot move between network border groups.
|
689
|
+
# A unique set of Availability Zones, Local Zones, or Wavelength Zones
|
690
|
+
# from which AWS advertises IP addresses. Use this parameter to limit
|
691
|
+
# the IP address to this location. IP addresses cannot move between
|
692
|
+
# network border groups.
|
691
693
|
#
|
692
694
|
# Use [DescribeAvailabilityZones][1] to view the network border groups.
|
693
695
|
#
|
@@ -723,6 +725,7 @@ module Aws::EC2
|
|
723
725
|
# * {Types::AllocateAddressResult#domain #domain} => String
|
724
726
|
# * {Types::AllocateAddressResult#customer_owned_ip #customer_owned_ip} => String
|
725
727
|
# * {Types::AllocateAddressResult#customer_owned_ipv_4_pool #customer_owned_ipv_4_pool} => String
|
728
|
+
# * {Types::AllocateAddressResult#carrier_ip #carrier_ip} => String
|
726
729
|
#
|
727
730
|
#
|
728
731
|
# @example Example: To allocate an Elastic IP address for EC2-VPC
|
@@ -773,6 +776,7 @@ module Aws::EC2
|
|
773
776
|
# resp.domain #=> String, one of "vpc", "standard"
|
774
777
|
# resp.customer_owned_ip #=> String
|
775
778
|
# resp.customer_owned_ipv_4_pool #=> String
|
779
|
+
# resp.carrier_ip #=> String
|
776
780
|
#
|
777
781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddress AWS API Documentation
|
778
782
|
#
|
@@ -1099,7 +1103,8 @@ module Aws::EC2
|
|
1099
1103
|
req.send_request(options)
|
1100
1104
|
end
|
1101
1105
|
|
1102
|
-
# Associates an Elastic IP address
|
1106
|
+
# Associates an Elastic IP address, or carrier IP address (for instances
|
1107
|
+
# that are in subnets in Wavelength Zones) with an instance or a network
|
1103
1108
|
# interface. Before you can use an Elastic IP address, you must allocate
|
1104
1109
|
# it to your account.
|
1105
1110
|
#
|
@@ -1123,6 +1128,9 @@ module Aws::EC2
|
|
1123
1128
|
# an instance or network interface that has an existing Elastic IP
|
1124
1129
|
# address.
|
1125
1130
|
#
|
1131
|
+
# \[Subnets in Wavelength Zones\] You can associate an IP address from
|
1132
|
+
# the telecommunication carrier to the instance or network interface.
|
1133
|
+
#
|
1126
1134
|
# You cannot associate an Elastic IP address with an interface in a
|
1127
1135
|
# different network border group.
|
1128
1136
|
#
|
@@ -1694,7 +1702,7 @@ module Aws::EC2
|
|
1694
1702
|
#
|
1695
1703
|
# @option params [String] :ipv_6_cidr_block_network_border_group
|
1696
1704
|
# The name of the location from which we advertise the IPV6 CIDR block.
|
1697
|
-
# Use this parameter to limit the
|
1705
|
+
# Use this parameter to limit the CIDR block to this location.
|
1698
1706
|
#
|
1699
1707
|
# You must set `AmazonProvidedIpv6CidrBlock` to `true` to use this
|
1700
1708
|
# parameter.
|
@@ -3692,6 +3700,80 @@ module Aws::EC2
|
|
3692
3700
|
req.send_request(options)
|
3693
3701
|
end
|
3694
3702
|
|
3703
|
+
# Creates a carrier gateway. For more information about carrier
|
3704
|
+
# gateways, see [Carrier gateways][1] in the *AWS Wavelength Developer
|
3705
|
+
# Guide*.
|
3706
|
+
#
|
3707
|
+
#
|
3708
|
+
#
|
3709
|
+
# [1]: https://docs.aws.amazon.com/wavelength/latest/developerguide/how-wavelengths-work.html#wavelength-carrier-gateway
|
3710
|
+
#
|
3711
|
+
# @option params [required, String] :vpc_id
|
3712
|
+
# The ID of the VPC to associate with the carrier gateway.
|
3713
|
+
#
|
3714
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
3715
|
+
# The tags to associate with the carrier gateway.
|
3716
|
+
#
|
3717
|
+
# @option params [Boolean] :dry_run
|
3718
|
+
# Checks whether you have the required permissions for the action,
|
3719
|
+
# without actually making the request, and provides an error response.
|
3720
|
+
# If you have the required permissions, the error response is
|
3721
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
3722
|
+
#
|
3723
|
+
# @option params [String] :client_token
|
3724
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
3725
|
+
# idempotency of the request. For more information, see [How to Ensure
|
3726
|
+
# Idempotency][1].
|
3727
|
+
#
|
3728
|
+
# **A suitable default value is auto-generated.** You should normally
|
3729
|
+
# not need to pass this option.**
|
3730
|
+
#
|
3731
|
+
#
|
3732
|
+
#
|
3733
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
3734
|
+
#
|
3735
|
+
# @return [Types::CreateCarrierGatewayResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3736
|
+
#
|
3737
|
+
# * {Types::CreateCarrierGatewayResult#carrier_gateway #carrier_gateway} => Types::CarrierGateway
|
3738
|
+
#
|
3739
|
+
# @example Request syntax with placeholder values
|
3740
|
+
#
|
3741
|
+
# resp = client.create_carrier_gateway({
|
3742
|
+
# vpc_id: "VpcId", # required
|
3743
|
+
# tag_specifications: [
|
3744
|
+
# {
|
3745
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
3746
|
+
# tags: [
|
3747
|
+
# {
|
3748
|
+
# key: "String",
|
3749
|
+
# value: "String",
|
3750
|
+
# },
|
3751
|
+
# ],
|
3752
|
+
# },
|
3753
|
+
# ],
|
3754
|
+
# dry_run: false,
|
3755
|
+
# client_token: "String",
|
3756
|
+
# })
|
3757
|
+
#
|
3758
|
+
# @example Response structure
|
3759
|
+
#
|
3760
|
+
# resp.carrier_gateway.carrier_gateway_id #=> String
|
3761
|
+
# resp.carrier_gateway.vpc_id #=> String
|
3762
|
+
# resp.carrier_gateway.state #=> String, one of "pending", "available", "deleting", "deleted"
|
3763
|
+
# resp.carrier_gateway.owner_id #=> String
|
3764
|
+
# resp.carrier_gateway.tags #=> Array
|
3765
|
+
# resp.carrier_gateway.tags[0].key #=> String
|
3766
|
+
# resp.carrier_gateway.tags[0].value #=> String
|
3767
|
+
#
|
3768
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCarrierGateway AWS API Documentation
|
3769
|
+
#
|
3770
|
+
# @overload create_carrier_gateway(params = {})
|
3771
|
+
# @param [Hash] params ({})
|
3772
|
+
def create_carrier_gateway(params = {}, options = {})
|
3773
|
+
req = build_request(:create_carrier_gateway, params)
|
3774
|
+
req.send_request(options)
|
3775
|
+
end
|
3776
|
+
|
3695
3777
|
# Creates a Client VPN endpoint. A Client VPN endpoint is the resource
|
3696
3778
|
# you create and configure to enable and manage client VPN sessions. It
|
3697
3779
|
# is the destination endpoint at which all client VPN sessions are
|
@@ -5413,6 +5495,7 @@ module Aws::EC2
|
|
5413
5495
|
# ],
|
5414
5496
|
# network_interfaces: [
|
5415
5497
|
# {
|
5498
|
+
# associate_carrier_ip_address: false,
|
5416
5499
|
# associate_public_ip_address: false,
|
5417
5500
|
# delete_on_termination: false,
|
5418
5501
|
# description: "String",
|
@@ -5693,6 +5776,7 @@ module Aws::EC2
|
|
5693
5776
|
# ],
|
5694
5777
|
# network_interfaces: [
|
5695
5778
|
# {
|
5779
|
+
# associate_carrier_ip_address: false,
|
5696
5780
|
# associate_public_ip_address: false,
|
5697
5781
|
# delete_on_termination: false,
|
5698
5782
|
# description: "String",
|
@@ -5826,6 +5910,7 @@ module Aws::EC2
|
|
5826
5910
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
|
5827
5911
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].no_device #=> String
|
5828
5912
|
# resp.launch_template_version.launch_template_data.network_interfaces #=> Array
|
5913
|
+
# resp.launch_template_version.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
5829
5914
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].associate_public_ip_address #=> Boolean
|
5830
5915
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].delete_on_termination #=> Boolean
|
5831
5916
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].description #=> String
|
@@ -6653,6 +6738,7 @@ module Aws::EC2
|
|
6653
6738
|
# resp.network_interface.association.ip_owner_id #=> String
|
6654
6739
|
# resp.network_interface.association.public_dns_name #=> String
|
6655
6740
|
# resp.network_interface.association.public_ip #=> String
|
6741
|
+
# resp.network_interface.association.carrier_ip #=> String
|
6656
6742
|
# resp.network_interface.attachment.attach_time #=> Time
|
6657
6743
|
# resp.network_interface.attachment.attachment_id #=> String
|
6658
6744
|
# resp.network_interface.attachment.delete_on_termination #=> Boolean
|
@@ -6680,6 +6766,7 @@ module Aws::EC2
|
|
6680
6766
|
# resp.network_interface.private_ip_addresses[0].association.ip_owner_id #=> String
|
6681
6767
|
# resp.network_interface.private_ip_addresses[0].association.public_dns_name #=> String
|
6682
6768
|
# resp.network_interface.private_ip_addresses[0].association.public_ip #=> String
|
6769
|
+
# resp.network_interface.private_ip_addresses[0].association.carrier_ip #=> String
|
6683
6770
|
# resp.network_interface.private_ip_addresses[0].primary #=> Boolean
|
6684
6771
|
# resp.network_interface.private_ip_addresses[0].private_dns_name #=> String
|
6685
6772
|
# resp.network_interface.private_ip_addresses[0].private_ip_address #=> String
|
@@ -7030,6 +7117,12 @@ module Aws::EC2
|
|
7030
7117
|
# @option params [String] :local_gateway_id
|
7031
7118
|
# The ID of the local gateway.
|
7032
7119
|
#
|
7120
|
+
# @option params [String] :carrier_gateway_id
|
7121
|
+
# The ID of the carrier gateway.
|
7122
|
+
#
|
7123
|
+
# You can only use this option when the VPC contains a subnet which is
|
7124
|
+
# associated with a Wavelength Zone.
|
7125
|
+
#
|
7033
7126
|
# @option params [String] :network_interface_id
|
7034
7127
|
# The ID of a network interface.
|
7035
7128
|
#
|
@@ -7068,6 +7161,7 @@ module Aws::EC2
|
|
7068
7161
|
# nat_gateway_id: "NatGatewayId",
|
7069
7162
|
# transit_gateway_id: "TransitGatewayId",
|
7070
7163
|
# local_gateway_id: "LocalGatewayId",
|
7164
|
+
# carrier_gateway_id: "CarrierGatewayId",
|
7071
7165
|
# network_interface_id: "NetworkInterfaceId",
|
7072
7166
|
# route_table_id: "RouteTableId", # required
|
7073
7167
|
# vpc_peering_connection_id: "VpcPeeringConnectionId",
|
@@ -7184,6 +7278,7 @@ module Aws::EC2
|
|
7184
7278
|
# resp.route_table.routes[0].nat_gateway_id #=> String
|
7185
7279
|
# resp.route_table.routes[0].transit_gateway_id #=> String
|
7186
7280
|
# resp.route_table.routes[0].local_gateway_id #=> String
|
7281
|
+
# resp.route_table.routes[0].carrier_gateway_id #=> String
|
7187
7282
|
# resp.route_table.routes[0].network_interface_id #=> String
|
7188
7283
|
# resp.route_table.routes[0].origin #=> String, one of "CreateRouteTable", "CreateRoute", "EnableVgwRoutePropagation"
|
7189
7284
|
# resp.route_table.routes[0].state #=> String, one of "active", "blackhole"
|
@@ -9642,15 +9737,15 @@ module Aws::EC2
|
|
9642
9737
|
end
|
9643
9738
|
|
9644
9739
|
# Creates a VPN connection between an existing virtual private gateway
|
9645
|
-
# and a
|
9646
|
-
# `ipsec.1`.
|
9740
|
+
# or transit gateway and a customer gateway. The supported connection
|
9741
|
+
# type is `ipsec.1`.
|
9647
9742
|
#
|
9648
9743
|
# The response includes information that you need to give to your
|
9649
9744
|
# network administrator to configure your customer gateway.
|
9650
9745
|
#
|
9651
9746
|
# We strongly recommend that you use HTTPS when calling this operation
|
9652
9747
|
# because the response contains sensitive cryptographic information for
|
9653
|
-
# configuring your customer gateway.
|
9748
|
+
# configuring your customer gateway device.
|
9654
9749
|
#
|
9655
9750
|
# If you decide to shut down your VPN connection for any reason and
|
9656
9751
|
# later create a new VPN connection, you must reconfigure your customer
|
@@ -9707,9 +9802,11 @@ module Aws::EC2
|
|
9707
9802
|
# options: {
|
9708
9803
|
# enable_acceleration: false,
|
9709
9804
|
# static_routes_only: false,
|
9805
|
+
# tunnel_inside_ip_version: "ipv4", # accepts ipv4, ipv6
|
9710
9806
|
# tunnel_options: [
|
9711
9807
|
# {
|
9712
9808
|
# tunnel_inside_cidr: "String",
|
9809
|
+
# tunnel_inside_ipv_6_cidr: "String",
|
9713
9810
|
# pre_shared_key: "String",
|
9714
9811
|
# phase_1_lifetime_seconds: 1,
|
9715
9812
|
# phase_2_lifetime_seconds: 1,
|
@@ -9780,9 +9877,11 @@ module Aws::EC2
|
|
9780
9877
|
# resp.vpn_connection.transit_gateway_id #=> String
|
9781
9878
|
# resp.vpn_connection.options.enable_acceleration #=> Boolean
|
9782
9879
|
# resp.vpn_connection.options.static_routes_only #=> Boolean
|
9880
|
+
# resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
|
9783
9881
|
# resp.vpn_connection.options.tunnel_options #=> Array
|
9784
9882
|
# resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
|
9785
9883
|
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
|
9884
|
+
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
|
9786
9885
|
# resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
|
9787
9886
|
# resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
|
9788
9887
|
# resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
|
@@ -9946,6 +10045,55 @@ module Aws::EC2
|
|
9946
10045
|
req.send_request(options)
|
9947
10046
|
end
|
9948
10047
|
|
10048
|
+
# Deletes a carrier gateway.
|
10049
|
+
#
|
10050
|
+
# If you do not delete the route that contains the carrier gateway as
|
10051
|
+
# the Target, the route is a blackhole route. For information about how
|
10052
|
+
# to delete a route, see [DeleteRoute][1].
|
10053
|
+
#
|
10054
|
+
#
|
10055
|
+
#
|
10056
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DeleteRoute.html
|
10057
|
+
#
|
10058
|
+
# @option params [required, String] :carrier_gateway_id
|
10059
|
+
# The ID of the carrier gateway.
|
10060
|
+
#
|
10061
|
+
# @option params [Boolean] :dry_run
|
10062
|
+
# Checks whether you have the required permissions for the action,
|
10063
|
+
# without actually making the request, and provides an error response.
|
10064
|
+
# If you have the required permissions, the error response is
|
10065
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
10066
|
+
#
|
10067
|
+
# @return [Types::DeleteCarrierGatewayResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10068
|
+
#
|
10069
|
+
# * {Types::DeleteCarrierGatewayResult#carrier_gateway #carrier_gateway} => Types::CarrierGateway
|
10070
|
+
#
|
10071
|
+
# @example Request syntax with placeholder values
|
10072
|
+
#
|
10073
|
+
# resp = client.delete_carrier_gateway({
|
10074
|
+
# carrier_gateway_id: "CarrierGatewayId", # required
|
10075
|
+
# dry_run: false,
|
10076
|
+
# })
|
10077
|
+
#
|
10078
|
+
# @example Response structure
|
10079
|
+
#
|
10080
|
+
# resp.carrier_gateway.carrier_gateway_id #=> String
|
10081
|
+
# resp.carrier_gateway.vpc_id #=> String
|
10082
|
+
# resp.carrier_gateway.state #=> String, one of "pending", "available", "deleting", "deleted"
|
10083
|
+
# resp.carrier_gateway.owner_id #=> String
|
10084
|
+
# resp.carrier_gateway.tags #=> Array
|
10085
|
+
# resp.carrier_gateway.tags[0].key #=> String
|
10086
|
+
# resp.carrier_gateway.tags[0].value #=> String
|
10087
|
+
#
|
10088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCarrierGateway AWS API Documentation
|
10089
|
+
#
|
10090
|
+
# @overload delete_carrier_gateway(params = {})
|
10091
|
+
# @param [Hash] params ({})
|
10092
|
+
def delete_carrier_gateway(params = {}, options = {})
|
10093
|
+
req = build_request(:delete_carrier_gateway, params)
|
10094
|
+
req.send_request(options)
|
10095
|
+
end
|
10096
|
+
|
9949
10097
|
# Deletes the specified Client VPN endpoint. You must disassociate all
|
9950
10098
|
# target networks before you can delete a Client VPN endpoint.
|
9951
10099
|
#
|
@@ -12500,8 +12648,8 @@ module Aws::EC2
|
|
12500
12648
|
# * `instance-id` - The ID of the instance the address is associated
|
12501
12649
|
# with, if any.
|
12502
12650
|
#
|
12503
|
-
# * `network-border-group` -
|
12504
|
-
#
|
12651
|
+
# * `network-border-group` - A unique set of Availability Zones, Local
|
12652
|
+
# Zones, or Wavelength Zones from where AWS advertises IP addresses.
|
12505
12653
|
#
|
12506
12654
|
# * `network-interface-id` - \[EC2-VPC\] The ID of the network interface
|
12507
12655
|
# that the address is associated with, if any.
|
@@ -12511,7 +12659,7 @@ module Aws::EC2
|
|
12511
12659
|
# * `private-ip-address` - \[EC2-VPC\] The private IP address associated
|
12512
12660
|
# with the Elastic IP address.
|
12513
12661
|
#
|
12514
|
-
# * `public-ip` - The Elastic IP address.
|
12662
|
+
# * `public-ip` - The Elastic IP address, or the carrier IP address.
|
12515
12663
|
#
|
12516
12664
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
12517
12665
|
# the resource. Use the tag key in the filter name and the tag value
|
@@ -12659,6 +12807,7 @@ module Aws::EC2
|
|
12659
12807
|
# resp.addresses[0].network_border_group #=> String
|
12660
12808
|
# resp.addresses[0].customer_owned_ip #=> String
|
12661
12809
|
# resp.addresses[0].customer_owned_ipv_4_pool #=> String
|
12810
|
+
# resp.addresses[0].carrier_ip #=> String
|
12662
12811
|
#
|
12663
12812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddresses AWS API Documentation
|
12664
12813
|
#
|
@@ -12723,14 +12872,14 @@ module Aws::EC2
|
|
12723
12872
|
req.send_request(options)
|
12724
12873
|
end
|
12725
12874
|
|
12726
|
-
# Describes the Availability Zones
|
12727
|
-
# you. If there is an event impacting
|
12728
|
-
#
|
12729
|
-
#
|
12875
|
+
# Describes the Availability Zones, Local Zones, and Wavelength Zones
|
12876
|
+
# that are available to you. If there is an event impacting a zone, you
|
12877
|
+
# can use this request to view the state and any provided messages for
|
12878
|
+
# that zone.
|
12730
12879
|
#
|
12731
|
-
# For more information about Availability Zones
|
12732
|
-
# [Regions and
|
12733
|
-
# Cloud User Guide*.
|
12880
|
+
# For more information about Availability Zones, Local Zones, and
|
12881
|
+
# Wavelength Zones, see [Regions, Zones and Outposts][1] in the *Amazon
|
12882
|
+
# Elastic Compute Cloud User Guide*.
|
12734
12883
|
#
|
12735
12884
|
#
|
12736
12885
|
#
|
@@ -12741,42 +12890,52 @@ module Aws::EC2
|
|
12741
12890
|
#
|
12742
12891
|
# * `group-name` - For Availability Zones, use the Region name. For
|
12743
12892
|
# Local Zones, use the name of the group associated with the Local
|
12744
|
-
# Zone (for example, `us-west-2-lax-1`)
|
12893
|
+
# Zone (for example, `us-west-2-lax-1`) For Wavelength Zones, use the
|
12894
|
+
# name of the group associated with the Wavelength Zone (for example,
|
12895
|
+
# `us-east-1-wl1-bos-wlz-1`).
|
12745
12896
|
#
|
12746
12897
|
# * `message` - The Zone message.
|
12747
12898
|
#
|
12748
|
-
# * `opt-in-status` - The opt
|
12899
|
+
# * `opt-in-status` - The opt-in status (`opted-in`, and `not-opted-in`
|
12749
12900
|
# \| `opt-in-not-required`).
|
12750
12901
|
#
|
12751
|
-
# * The ID of the zone that handles some of the Local
|
12752
|
-
# operations, such as API
|
12902
|
+
# * `parent-zoneID` - The ID of the zone that handles some of the Local
|
12903
|
+
# Zone and Wavelength Zone control plane operations, such as API
|
12904
|
+
# calls.
|
12905
|
+
#
|
12906
|
+
# * `parent-zoneName` - The ID of the zone that handles some of the
|
12907
|
+
# Local Zone and Wavelength Zone control plane operations, such as API
|
12908
|
+
# calls.
|
12753
12909
|
#
|
12754
12910
|
# * `region-name` - The name of the Region for the Zone (for example,
|
12755
12911
|
# `us-east-1`).
|
12756
12912
|
#
|
12757
|
-
# * `state` - The state of the Availability Zone
|
12758
|
-
# (`available` \| `information` \| `impaired` \|
|
12913
|
+
# * `state` - The state of the Availability Zone, the Local Zone, or the
|
12914
|
+
# Wavelength Zone (`available` \| `information` \| `impaired` \|
|
12915
|
+
# `unavailable`).
|
12759
12916
|
#
|
12760
12917
|
# * `zone-id` - The ID of the Availability Zone (for example,
|
12761
|
-
# `use1-az1`)
|
12918
|
+
# `use1-az1`), the Local Zone (for example, `usw2-lax1-az1`), or the
|
12919
|
+
# Wavelength Zone (for example, `us-east-1-wl1-bos-wlz-1`).
|
12762
12920
|
#
|
12763
12921
|
# * `zone-type` - The type of zone, for example, `local-zone`.
|
12764
12922
|
#
|
12765
12923
|
# * `zone-name` - The name of the Availability Zone (for example,
|
12766
|
-
# `us-east-1a`)
|
12767
|
-
# `us-
|
12924
|
+
# `us-east-1a`), the Local Zone (for example, `us-west-2-lax-1a`), or
|
12925
|
+
# the Wavelength Zone (for example, `us-east-1-wl1-bos-wlz-1`).
|
12768
12926
|
#
|
12769
12927
|
# * `zone-type` - The type of zone, for example, `local-zone`.
|
12770
12928
|
#
|
12771
12929
|
# @option params [Array<String>] :zone_names
|
12772
|
-
# The names of the Zones
|
12930
|
+
# The names of the Availability Zones, Local Zones, and Wavelength
|
12931
|
+
# Zones.
|
12773
12932
|
#
|
12774
12933
|
# @option params [Array<String>] :zone_ids
|
12775
|
-
# The IDs of the Zones.
|
12934
|
+
# The IDs of the Availability Zones, Local Zones, and Wavelength Zones.
|
12776
12935
|
#
|
12777
12936
|
# @option params [Boolean] :all_availability_zones
|
12778
|
-
# Include all Availability Zones
|
12779
|
-
# in status.
|
12937
|
+
# Include all Availability Zones, Local Zones, and Wavelength Zones
|
12938
|
+
# regardless of your opt-in status.
|
12780
12939
|
#
|
12781
12940
|
# If you do not use this parameter, the results include only the zones
|
12782
12941
|
# for the Regions where you have chosen the option to opt in.
|
@@ -13180,6 +13339,90 @@ module Aws::EC2
|
|
13180
13339
|
req.send_request(options)
|
13181
13340
|
end
|
13182
13341
|
|
13342
|
+
# Describes one or more of your carrier gateways.
|
13343
|
+
#
|
13344
|
+
# @option params [Array<String>] :carrier_gateway_ids
|
13345
|
+
# One or more carrier gateway IDs.
|
13346
|
+
#
|
13347
|
+
# @option params [Array<Types::Filter>] :filters
|
13348
|
+
# One or more filters.
|
13349
|
+
#
|
13350
|
+
# * `carrier-gateway-id` - The ID of the carrier gateway.
|
13351
|
+
#
|
13352
|
+
# * `state` - The state of the carrier gateway (`pending` \| `failed` \|
|
13353
|
+
# `available` \| `deleting` \| `deleted`).
|
13354
|
+
#
|
13355
|
+
# * `owner-id` - The AWS account ID of the owner of the carrier gateway.
|
13356
|
+
#
|
13357
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
13358
|
+
# the resource. Use the tag key in the filter name and the tag value
|
13359
|
+
# as the filter value. For example, to find all resources that have a
|
13360
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
13361
|
+
# for the filter name and `TeamA` for the filter value.
|
13362
|
+
#
|
13363
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
13364
|
+
# filter to find all resources assigned a tag with a specific key,
|
13365
|
+
# regardless of the tag value.
|
13366
|
+
#
|
13367
|
+
# * `vpc-id` - The ID of the VPC associated with the carrier gateway.
|
13368
|
+
#
|
13369
|
+
# @option params [Integer] :max_results
|
13370
|
+
# The maximum number of results to return with a single call. To
|
13371
|
+
# retrieve the remaining results, make another call with the returned
|
13372
|
+
# `nextToken` value.
|
13373
|
+
#
|
13374
|
+
# @option params [String] :next_token
|
13375
|
+
# The token for the next page of results.
|
13376
|
+
#
|
13377
|
+
# @option params [Boolean] :dry_run
|
13378
|
+
# Checks whether you have the required permissions for the action,
|
13379
|
+
# without actually making the request, and provides an error response.
|
13380
|
+
# If you have the required permissions, the error response is
|
13381
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
13382
|
+
#
|
13383
|
+
# @return [Types::DescribeCarrierGatewaysResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13384
|
+
#
|
13385
|
+
# * {Types::DescribeCarrierGatewaysResult#carrier_gateways #carrier_gateways} => Array<Types::CarrierGateway>
|
13386
|
+
# * {Types::DescribeCarrierGatewaysResult#next_token #next_token} => String
|
13387
|
+
#
|
13388
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
13389
|
+
#
|
13390
|
+
# @example Request syntax with placeholder values
|
13391
|
+
#
|
13392
|
+
# resp = client.describe_carrier_gateways({
|
13393
|
+
# carrier_gateway_ids: ["CarrierGatewayId"],
|
13394
|
+
# filters: [
|
13395
|
+
# {
|
13396
|
+
# name: "String",
|
13397
|
+
# values: ["String"],
|
13398
|
+
# },
|
13399
|
+
# ],
|
13400
|
+
# max_results: 1,
|
13401
|
+
# next_token: "String",
|
13402
|
+
# dry_run: false,
|
13403
|
+
# })
|
13404
|
+
#
|
13405
|
+
# @example Response structure
|
13406
|
+
#
|
13407
|
+
# resp.carrier_gateways #=> Array
|
13408
|
+
# resp.carrier_gateways[0].carrier_gateway_id #=> String
|
13409
|
+
# resp.carrier_gateways[0].vpc_id #=> String
|
13410
|
+
# resp.carrier_gateways[0].state #=> String, one of "pending", "available", "deleting", "deleted"
|
13411
|
+
# resp.carrier_gateways[0].owner_id #=> String
|
13412
|
+
# resp.carrier_gateways[0].tags #=> Array
|
13413
|
+
# resp.carrier_gateways[0].tags[0].key #=> String
|
13414
|
+
# resp.carrier_gateways[0].tags[0].value #=> String
|
13415
|
+
# resp.next_token #=> String
|
13416
|
+
#
|
13417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCarrierGateways AWS API Documentation
|
13418
|
+
#
|
13419
|
+
# @overload describe_carrier_gateways(params = {})
|
13420
|
+
# @param [Hash] params ({})
|
13421
|
+
def describe_carrier_gateways(params = {}, options = {})
|
13422
|
+
req = build_request(:describe_carrier_gateways, params)
|
13423
|
+
req.send_request(options)
|
13424
|
+
end
|
13425
|
+
|
13183
13426
|
# Describes one or more of your linked EC2-Classic instances. This
|
13184
13427
|
# request only returns information about EC2-Classic instances linked to
|
13185
13428
|
# a VPC through ClassicLink. You cannot use this request to return
|
@@ -17291,6 +17534,7 @@ module Aws::EC2
|
|
17291
17534
|
# resp.reservations[0].instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_state #=> String
|
17292
17535
|
# resp.reservations[0].instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_time #=> Time
|
17293
17536
|
# resp.reservations[0].instances[0].network_interfaces #=> Array
|
17537
|
+
# resp.reservations[0].instances[0].network_interfaces[0].association.carrier_ip #=> String
|
17294
17538
|
# resp.reservations[0].instances[0].network_interfaces[0].association.ip_owner_id #=> String
|
17295
17539
|
# resp.reservations[0].instances[0].network_interfaces[0].association.public_dns_name #=> String
|
17296
17540
|
# resp.reservations[0].instances[0].network_interfaces[0].association.public_ip #=> String
|
@@ -17311,6 +17555,7 @@ module Aws::EC2
|
|
17311
17555
|
# resp.reservations[0].instances[0].network_interfaces[0].private_dns_name #=> String
|
17312
17556
|
# resp.reservations[0].instances[0].network_interfaces[0].private_ip_address #=> String
|
17313
17557
|
# resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses #=> Array
|
17558
|
+
# resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.carrier_ip #=> String
|
17314
17559
|
# resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.ip_owner_id #=> String
|
17315
17560
|
# resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.public_dns_name #=> String
|
17316
17561
|
# resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].association.public_ip #=> String
|
@@ -17862,6 +18107,7 @@ module Aws::EC2
|
|
17862
18107
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
|
17863
18108
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].no_device #=> String
|
17864
18109
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces #=> Array
|
18110
|
+
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
17865
18111
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_public_ip_address #=> Boolean
|
17866
18112
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].delete_on_termination #=> Boolean
|
17867
18113
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].description #=> String
|
@@ -19435,6 +19681,7 @@ module Aws::EC2
|
|
19435
19681
|
# resp.network_interfaces[0].association.ip_owner_id #=> String
|
19436
19682
|
# resp.network_interfaces[0].association.public_dns_name #=> String
|
19437
19683
|
# resp.network_interfaces[0].association.public_ip #=> String
|
19684
|
+
# resp.network_interfaces[0].association.carrier_ip #=> String
|
19438
19685
|
# resp.network_interfaces[0].attachment.attach_time #=> Time
|
19439
19686
|
# resp.network_interfaces[0].attachment.attachment_id #=> String
|
19440
19687
|
# resp.network_interfaces[0].attachment.delete_on_termination #=> Boolean
|
@@ -19462,6 +19709,7 @@ module Aws::EC2
|
|
19462
19709
|
# resp.network_interfaces[0].private_ip_addresses[0].association.ip_owner_id #=> String
|
19463
19710
|
# resp.network_interfaces[0].private_ip_addresses[0].association.public_dns_name #=> String
|
19464
19711
|
# resp.network_interfaces[0].private_ip_addresses[0].association.public_ip #=> String
|
19712
|
+
# resp.network_interfaces[0].private_ip_addresses[0].association.carrier_ip #=> String
|
19465
19713
|
# resp.network_interfaces[0].private_ip_addresses[0].primary #=> Boolean
|
19466
19714
|
# resp.network_interfaces[0].private_ip_addresses[0].private_dns_name #=> String
|
19467
19715
|
# resp.network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
|
@@ -20658,6 +20906,7 @@ module Aws::EC2
|
|
20658
20906
|
# resp.route_tables[0].routes[0].nat_gateway_id #=> String
|
20659
20907
|
# resp.route_tables[0].routes[0].transit_gateway_id #=> String
|
20660
20908
|
# resp.route_tables[0].routes[0].local_gateway_id #=> String
|
20909
|
+
# resp.route_tables[0].routes[0].carrier_gateway_id #=> String
|
20661
20910
|
# resp.route_tables[0].routes[0].network_interface_id #=> String
|
20662
20911
|
# resp.route_tables[0].routes[0].origin #=> String, one of "CreateRouteTable", "CreateRoute", "EnableVgwRoutePropagation"
|
20663
20912
|
# resp.route_tables[0].routes[0].state #=> String, one of "active", "blackhole"
|
@@ -22035,6 +22284,7 @@ module Aws::EC2
|
|
22035
22284
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
|
22036
22285
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].secondary_private_ip_address_count #=> Integer
|
22037
22286
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].subnet_id #=> String
|
22287
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
22038
22288
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].network_interfaces[0].interface_type #=> String
|
22039
22289
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.availability_zone #=> String
|
22040
22290
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.group_name #=> String
|
@@ -22387,6 +22637,7 @@ module Aws::EC2
|
|
22387
22637
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
|
22388
22638
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].secondary_private_ip_address_count #=> Integer
|
22389
22639
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].subnet_id #=> String
|
22640
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
22390
22641
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
|
22391
22642
|
# resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
|
22392
22643
|
# resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
|
@@ -25543,9 +25794,11 @@ module Aws::EC2
|
|
25543
25794
|
# resp.vpn_connections[0].transit_gateway_id #=> String
|
25544
25795
|
# resp.vpn_connections[0].options.enable_acceleration #=> Boolean
|
25545
25796
|
# resp.vpn_connections[0].options.static_routes_only #=> Boolean
|
25797
|
+
# resp.vpn_connections[0].options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
|
25546
25798
|
# resp.vpn_connections[0].options.tunnel_options #=> Array
|
25547
25799
|
# resp.vpn_connections[0].options.tunnel_options[0].outside_ip_address #=> String
|
25548
25800
|
# resp.vpn_connections[0].options.tunnel_options[0].tunnel_inside_cidr #=> String
|
25801
|
+
# resp.vpn_connections[0].options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
|
25549
25802
|
# resp.vpn_connections[0].options.tunnel_options[0].pre_shared_key #=> String
|
25550
25803
|
# resp.vpn_connections[0].options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
|
25551
25804
|
# resp.vpn_connections[0].options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
|
@@ -27927,6 +28180,7 @@ module Aws::EC2
|
|
27927
28180
|
# resp.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
|
27928
28181
|
# resp.launch_template_data.block_device_mappings[0].no_device #=> String
|
27929
28182
|
# resp.launch_template_data.network_interfaces #=> Array
|
28183
|
+
# resp.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
27930
28184
|
# resp.launch_template_data.network_interfaces[0].associate_public_ip_address #=> Boolean
|
27931
28185
|
# resp.launch_template_data.network_interfaces[0].delete_on_termination #=> Boolean
|
27932
28186
|
# resp.launch_template_data.network_interfaces[0].description #=> String
|
@@ -29253,7 +29507,8 @@ module Aws::EC2
|
|
29253
29507
|
req.send_request(options)
|
29254
29508
|
end
|
29255
29509
|
|
29256
|
-
#
|
29510
|
+
# Changes the opt-in status of the Local Zone and Wavelength Zone group
|
29511
|
+
# for your account.
|
29257
29512
|
#
|
29258
29513
|
# Use [ DescribeAvailabilityZones][1] to view the value for `GroupName`.
|
29259
29514
|
#
|
@@ -29262,12 +29517,14 @@ module Aws::EC2
|
|
29262
29517
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html
|
29263
29518
|
#
|
29264
29519
|
# @option params [required, String] :group_name
|
29265
|
-
# The name of the Availability Zone
|
29520
|
+
# The name of the Availability Zone group, Local Zone group, or
|
29521
|
+
# Wavelength Zone group.
|
29266
29522
|
#
|
29267
29523
|
# @option params [required, String] :opt_in_status
|
29268
|
-
# Indicates whether
|
29269
|
-
#
|
29270
|
-
#
|
29524
|
+
# Indicates whether you are opted in to the Local Zone group or
|
29525
|
+
# Wavelength Zone group. The only valid value is `opted-in`. You must
|
29526
|
+
# contact [AWS Support][1] to opt out of a Local Zone group, or
|
29527
|
+
# Wavelength Zone group.
|
29271
29528
|
#
|
29272
29529
|
#
|
29273
29530
|
#
|
@@ -31279,20 +31536,6 @@ module Aws::EC2
|
|
31279
31536
|
# @option params [required, String] :subnet_id
|
31280
31537
|
# The ID of the subnet.
|
31281
31538
|
#
|
31282
|
-
# @option params [Types::AttributeBooleanValue] :map_customer_owned_ip_on_launch
|
31283
|
-
# Specify `true` to indicate that network interfaces attached to
|
31284
|
-
# instances created in the specified subnet should be assigned a
|
31285
|
-
# customer-owned IPv4 address.
|
31286
|
-
#
|
31287
|
-
# When this value is `true`, you must specify the customer-owned IP pool
|
31288
|
-
# using `CustomerOwnedIpv4Pool`.
|
31289
|
-
#
|
31290
|
-
# @option params [String] :customer_owned_ipv_4_pool
|
31291
|
-
# The customer-owned IPv4 address pool associated with the subnet.
|
31292
|
-
#
|
31293
|
-
# You must set this value when you specify `true` for
|
31294
|
-
# `MapCustomerOwnedIpOnLaunch`.
|
31295
|
-
#
|
31296
31539
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
31297
31540
|
#
|
31298
31541
|
#
|
@@ -31318,10 +31561,6 @@ module Aws::EC2
|
|
31318
31561
|
# value: false,
|
31319
31562
|
# },
|
31320
31563
|
# subnet_id: "SubnetId", # required
|
31321
|
-
# map_customer_owned_ip_on_launch: {
|
31322
|
-
# value: false,
|
31323
|
-
# },
|
31324
|
-
# customer_owned_ipv_4_pool: "CoipPoolId",
|
31325
31564
|
# })
|
31326
31565
|
#
|
31327
31566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttribute AWS API Documentation
|
@@ -32429,9 +32668,11 @@ module Aws::EC2
|
|
32429
32668
|
# resp.vpn_connection.transit_gateway_id #=> String
|
32430
32669
|
# resp.vpn_connection.options.enable_acceleration #=> Boolean
|
32431
32670
|
# resp.vpn_connection.options.static_routes_only #=> Boolean
|
32671
|
+
# resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
|
32432
32672
|
# resp.vpn_connection.options.tunnel_options #=> Array
|
32433
32673
|
# resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
|
32434
32674
|
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
|
32675
|
+
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
|
32435
32676
|
# resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
|
32436
32677
|
# resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
|
32437
32678
|
# resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
|
@@ -32515,9 +32756,11 @@ module Aws::EC2
|
|
32515
32756
|
# resp.vpn_connection.transit_gateway_id #=> String
|
32516
32757
|
# resp.vpn_connection.options.enable_acceleration #=> Boolean
|
32517
32758
|
# resp.vpn_connection.options.static_routes_only #=> Boolean
|
32759
|
+
# resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
|
32518
32760
|
# resp.vpn_connection.options.tunnel_options #=> Array
|
32519
32761
|
# resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
|
32520
32762
|
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
|
32763
|
+
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
|
32521
32764
|
# resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
|
32522
32765
|
# resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
|
32523
32766
|
# resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
|
@@ -32600,6 +32843,7 @@ module Aws::EC2
|
|
32600
32843
|
# vpn_tunnel_outside_ip_address: "String", # required
|
32601
32844
|
# tunnel_options: { # required
|
32602
32845
|
# tunnel_inside_cidr: "String",
|
32846
|
+
# tunnel_inside_ipv_6_cidr: "String",
|
32603
32847
|
# pre_shared_key: "String",
|
32604
32848
|
# phase_1_lifetime_seconds: 1,
|
32605
32849
|
# phase_2_lifetime_seconds: 1,
|
@@ -32658,9 +32902,11 @@ module Aws::EC2
|
|
32658
32902
|
# resp.vpn_connection.transit_gateway_id #=> String
|
32659
32903
|
# resp.vpn_connection.options.enable_acceleration #=> Boolean
|
32660
32904
|
# resp.vpn_connection.options.static_routes_only #=> Boolean
|
32905
|
+
# resp.vpn_connection.options.tunnel_inside_ip_version #=> String, one of "ipv4", "ipv6"
|
32661
32906
|
# resp.vpn_connection.options.tunnel_options #=> Array
|
32662
32907
|
# resp.vpn_connection.options.tunnel_options[0].outside_ip_address #=> String
|
32663
32908
|
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String
|
32909
|
+
# resp.vpn_connection.options.tunnel_options[0].tunnel_inside_ipv_6_cidr #=> String
|
32664
32910
|
# resp.vpn_connection.options.tunnel_options[0].pre_shared_key #=> String
|
32665
32911
|
# resp.vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer
|
32666
32912
|
# resp.vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer
|
@@ -33808,7 +34054,8 @@ module Aws::EC2
|
|
33808
34054
|
# \[EC2-Classic\] The Elastic IP address. Required for EC2-Classic.
|
33809
34055
|
#
|
33810
34056
|
# @option params [String] :network_border_group
|
33811
|
-
# The
|
34057
|
+
# The set of Availability Zones, Local Zones, or Wavelength Zones from
|
34058
|
+
# which AWS advertises IP addresses.
|
33812
34059
|
#
|
33813
34060
|
# If you provide an incorrect network border group, you will receive an
|
33814
34061
|
# `InvalidAddress.NotFound` error. For more information, see [Error
|
@@ -34181,6 +34428,9 @@ module Aws::EC2
|
|
34181
34428
|
# @option params [String] :local_gateway_id
|
34182
34429
|
# The ID of the local gateway.
|
34183
34430
|
#
|
34431
|
+
# @option params [String] :carrier_gateway_id
|
34432
|
+
# \[IPv4 traffic only\] The ID of a carrier gateway.
|
34433
|
+
#
|
34184
34434
|
# @option params [String] :network_interface_id
|
34185
34435
|
# The ID of a network interface.
|
34186
34436
|
#
|
@@ -34218,6 +34468,7 @@ module Aws::EC2
|
|
34218
34468
|
# nat_gateway_id: "NatGatewayId",
|
34219
34469
|
# transit_gateway_id: "TransitGatewayId",
|
34220
34470
|
# local_gateway_id: "LocalGatewayId",
|
34471
|
+
# carrier_gateway_id: "CarrierGatewayId",
|
34221
34472
|
# network_interface_id: "NetworkInterfaceId",
|
34222
34473
|
# route_table_id: "RouteTableId", # required
|
34223
34474
|
# vpc_peering_connection_id: "VpcPeeringConnectionId",
|
@@ -34708,6 +34959,7 @@ module Aws::EC2
|
|
34708
34959
|
# ],
|
34709
34960
|
# secondary_private_ip_address_count: 1,
|
34710
34961
|
# subnet_id: "String",
|
34962
|
+
# associate_carrier_ip_address: false,
|
34711
34963
|
# interface_type: "String",
|
34712
34964
|
# },
|
34713
34965
|
# ],
|
@@ -35043,6 +35295,7 @@ module Aws::EC2
|
|
35043
35295
|
# ],
|
35044
35296
|
# secondary_private_ip_address_count: 1,
|
35045
35297
|
# subnet_id: "String",
|
35298
|
+
# associate_carrier_ip_address: false,
|
35046
35299
|
# interface_type: "String",
|
35047
35300
|
# },
|
35048
35301
|
# ],
|
@@ -35124,6 +35377,7 @@ module Aws::EC2
|
|
35124
35377
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
|
35125
35378
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].secondary_private_ip_address_count #=> Integer
|
35126
35379
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].subnet_id #=> String
|
35380
|
+
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
35127
35381
|
# resp.spot_instance_requests[0].launch_specification.network_interfaces[0].interface_type #=> String
|
35128
35382
|
# resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
|
35129
35383
|
# resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
|
@@ -36373,6 +36627,7 @@ module Aws::EC2
|
|
36373
36627
|
# ],
|
36374
36628
|
# secondary_private_ip_address_count: 1,
|
36375
36629
|
# subnet_id: "String",
|
36630
|
+
# associate_carrier_ip_address: false,
|
36376
36631
|
# interface_type: "String",
|
36377
36632
|
# },
|
36378
36633
|
# ],
|
@@ -36504,6 +36759,7 @@ module Aws::EC2
|
|
36504
36759
|
# resp.instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_state #=> String
|
36505
36760
|
# resp.instances[0].elastic_inference_accelerator_associations[0].elastic_inference_accelerator_association_time #=> Time
|
36506
36761
|
# resp.instances[0].network_interfaces #=> Array
|
36762
|
+
# resp.instances[0].network_interfaces[0].association.carrier_ip #=> String
|
36507
36763
|
# resp.instances[0].network_interfaces[0].association.ip_owner_id #=> String
|
36508
36764
|
# resp.instances[0].network_interfaces[0].association.public_dns_name #=> String
|
36509
36765
|
# resp.instances[0].network_interfaces[0].association.public_ip #=> String
|
@@ -36524,6 +36780,7 @@ module Aws::EC2
|
|
36524
36780
|
# resp.instances[0].network_interfaces[0].private_dns_name #=> String
|
36525
36781
|
# resp.instances[0].network_interfaces[0].private_ip_address #=> String
|
36526
36782
|
# resp.instances[0].network_interfaces[0].private_ip_addresses #=> Array
|
36783
|
+
# resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.carrier_ip #=> String
|
36527
36784
|
# resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.ip_owner_id #=> String
|
36528
36785
|
# resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.public_dns_name #=> String
|
36529
36786
|
# resp.instances[0].network_interfaces[0].private_ip_addresses[0].association.public_ip #=> String
|
@@ -37927,7 +38184,7 @@ module Aws::EC2
|
|
37927
38184
|
params: params,
|
37928
38185
|
config: config)
|
37929
38186
|
context[:gem_name] = 'aws-sdk-ec2'
|
37930
|
-
context[:gem_version] = '1.
|
38187
|
+
context[:gem_version] = '1.186.0'
|
37931
38188
|
Seahorse::Client::Request.new(handlers, context)
|
37932
38189
|
end
|
37933
38190
|
|