aws-sdk-ec2 1.243.0 → 1.244.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.rb +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +267 -51
- data/lib/aws-sdk-ec2/client_api.rb +81 -0
- data/lib/aws-sdk-ec2/instance.rb +3 -2
- data/lib/aws-sdk-ec2/network_interface.rb +5 -4
- data/lib/aws-sdk-ec2/resource.rb +15 -9
- data/lib/aws-sdk-ec2/subnet.rb +9 -5
- data/lib/aws-sdk-ec2/types.rb +314 -35
- data/lib/aws-sdk-ec2/vpc.rb +4 -4
- data/lib/aws-sdk-ec2/vpc_address.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: c7c515f268f956154e9e851557edb69dc7958147f1588bf8efb86555f613b7f3
|
4
|
+
data.tar.gz: 562017e28c53241f453ee8ab2878a20fb3f99ef8499f7a5068b35d5f7ce17610
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3807c56594cfa05a237fe36ce93f8e3b0afa065b02e1faba8ee8bdfcac80d998d0a89c4c1f8477af57aaa46eb010d3b7946db1df6a6b83e67a3aa6d89a6fdbcf
|
7
|
+
data.tar.gz: 9457d77eb1e02bc3cb089bb6440063a8cf31691c19e78b4a71f6ca3b76cf7c294be6fc59a3826cbac839ba5e22d4c0e452b178fb4ba1dd552557ed69d9584e9a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.244.0 (2021-06-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for VLAN-tagged network traffic over an Elastic Network Interface (ENI). This feature is in limited Preview for this release. Contact your account manager if you are interested in this feature.
|
8
|
+
|
4
9
|
1.243.0 (2021-06-15)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.244.0
|
data/lib/aws-sdk-ec2.rb
CHANGED
@@ -67,7 +67,7 @@ module Aws::EC2
|
|
67
67
|
data[:network_interface_id]
|
68
68
|
end
|
69
69
|
|
70
|
-
# The ID of the
|
70
|
+
# The ID of the account that owns the network interface.
|
71
71
|
# @return [String]
|
72
72
|
def network_interface_owner_id
|
73
73
|
data[:network_interface_owner_id]
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -646,19 +646,22 @@ module Aws::EC2
|
|
646
646
|
end
|
647
647
|
|
648
648
|
# Advertises an IPv4 or IPv6 address range that is provisioned for use
|
649
|
-
# with your
|
649
|
+
# with your Amazon Web Services resources through bring your own IP
|
650
|
+
# addresses (BYOIP).
|
650
651
|
#
|
651
652
|
# You can perform this operation at most once every 10 seconds, even if
|
652
653
|
# you specify different address ranges each time.
|
653
654
|
#
|
654
655
|
# We recommend that you stop advertising the BYOIP CIDR from other
|
655
|
-
# locations when you advertise it from
|
656
|
-
# can configure your
|
657
|
-
# before it is advertised, and then
|
658
|
-
# from the current location and start
|
656
|
+
# locations when you advertise it from Amazon Web Services. To minimize
|
657
|
+
# down time, you can configure your Amazon Web Services resources to use
|
658
|
+
# an address from a BYOIP CIDR before it is advertised, and then
|
659
|
+
# simultaneously stop advertising it from the current location and start
|
660
|
+
# advertising it through Amazon Web Services.
|
659
661
|
#
|
660
662
|
# It can take a few minutes before traffic to the specified addresses
|
661
|
-
# starts routing to
|
663
|
+
# starts routing to Amazon Web Services because of BGP propagation
|
664
|
+
# delays.
|
662
665
|
#
|
663
666
|
# To stop advertising the BYOIP CIDR, use WithdrawByoipCidr.
|
664
667
|
#
|
@@ -700,22 +703,23 @@ module Aws::EC2
|
|
700
703
|
req.send_request(options)
|
701
704
|
end
|
702
705
|
|
703
|
-
# Allocates an Elastic IP address to your
|
704
|
-
#
|
705
|
-
#
|
706
|
+
# Allocates an Elastic IP address to your account. After you allocate
|
707
|
+
# the Elastic IP address you can associate it with an instance or
|
708
|
+
# network interface. After you release an Elastic IP address, it is
|
706
709
|
# released to the IP address pool and can be allocated to a different
|
707
|
-
#
|
710
|
+
# account.
|
708
711
|
#
|
709
712
|
# You can allocate an Elastic IP address from an address pool owned by
|
710
|
-
#
|
711
|
-
# that you have brought to
|
712
|
-
#
|
713
|
-
#
|
714
|
-
# User
|
713
|
+
# Amazon Web Services or from an address pool created from a public IPv4
|
714
|
+
# address range that you have brought to Amazon Web Services for use
|
715
|
+
# with your Amazon Web Services resources using bring your own IP
|
716
|
+
# addresses (BYOIP). For more information, see [Bring Your Own IP
|
717
|
+
# Addresses (BYOIP)][1] in the *Amazon Elastic Compute Cloud User
|
718
|
+
# Guide*.
|
715
719
|
#
|
716
720
|
# \[EC2-VPC\] If you release an Elastic IP address, you might be able to
|
717
721
|
# recover it. You cannot recover an Elastic IP address that you released
|
718
|
-
# after it is allocated to another
|
722
|
+
# after it is allocated to another account. You cannot recover an
|
719
723
|
# Elastic IP address for EC2-Classic. To attempt to recover an Elastic
|
720
724
|
# IP address that you released, specify it in this operation.
|
721
725
|
#
|
@@ -1824,6 +1828,90 @@ module Aws::EC2
|
|
1824
1828
|
req.send_request(options)
|
1825
1829
|
end
|
1826
1830
|
|
1831
|
+
# Associates a branch network interface with a trunk network interface.
|
1832
|
+
#
|
1833
|
+
# Before you create the association, run the
|
1834
|
+
# [create-network-interface][1] command and set `--interface-type` to
|
1835
|
+
# `trunk`. You must also create a network interface for each branch
|
1836
|
+
# network interface that you want to associate with the trunk network
|
1837
|
+
# interface.
|
1838
|
+
#
|
1839
|
+
# For more information, see [ Network interface trunking][2] in the
|
1840
|
+
# *Amazon Elastic Compute Cloud User Guide*.
|
1841
|
+
#
|
1842
|
+
#
|
1843
|
+
#
|
1844
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html
|
1845
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/eni-trunking.html
|
1846
|
+
#
|
1847
|
+
# @option params [required, String] :branch_interface_id
|
1848
|
+
# The ID of the branch network interface.
|
1849
|
+
#
|
1850
|
+
# @option params [required, String] :trunk_interface_id
|
1851
|
+
# The ID of the trunk network interface.
|
1852
|
+
#
|
1853
|
+
# @option params [Integer] :vlan_id
|
1854
|
+
# The ID of the VLAN. This applies to the VLAN protocol.
|
1855
|
+
#
|
1856
|
+
# @option params [Integer] :gre_key
|
1857
|
+
# The application key. This applies to the GRE protocol.
|
1858
|
+
#
|
1859
|
+
# @option params [String] :client_token
|
1860
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1861
|
+
# idempotency of the request. For more information, see [How to Ensure
|
1862
|
+
# Idempotency][1].
|
1863
|
+
#
|
1864
|
+
# **A suitable default value is auto-generated.** You should normally
|
1865
|
+
# not need to pass this option.**
|
1866
|
+
#
|
1867
|
+
#
|
1868
|
+
#
|
1869
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
1870
|
+
#
|
1871
|
+
# @option params [Boolean] :dry_run
|
1872
|
+
# Checks whether you have the required permissions for the action,
|
1873
|
+
# without actually making the request, and provides an error response.
|
1874
|
+
# If you have the required permissions, the error response is
|
1875
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1876
|
+
#
|
1877
|
+
# @return [Types::AssociateTrunkInterfaceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1878
|
+
#
|
1879
|
+
# * {Types::AssociateTrunkInterfaceResult#interface_association #interface_association} => Types::TrunkInterfaceAssociation
|
1880
|
+
# * {Types::AssociateTrunkInterfaceResult#client_token #client_token} => String
|
1881
|
+
#
|
1882
|
+
# @example Request syntax with placeholder values
|
1883
|
+
#
|
1884
|
+
# resp = client.associate_trunk_interface({
|
1885
|
+
# branch_interface_id: "NetworkInterfaceId", # required
|
1886
|
+
# trunk_interface_id: "NetworkInterfaceId", # required
|
1887
|
+
# vlan_id: 1,
|
1888
|
+
# gre_key: 1,
|
1889
|
+
# client_token: "String",
|
1890
|
+
# dry_run: false,
|
1891
|
+
# })
|
1892
|
+
#
|
1893
|
+
# @example Response structure
|
1894
|
+
#
|
1895
|
+
# resp.interface_association.association_id #=> String
|
1896
|
+
# resp.interface_association.branch_interface_id #=> String
|
1897
|
+
# resp.interface_association.trunk_interface_id #=> String
|
1898
|
+
# resp.interface_association.interface_protocol #=> String, one of "VLAN", "GRE"
|
1899
|
+
# resp.interface_association.vlan_id #=> Integer
|
1900
|
+
# resp.interface_association.gre_key #=> Integer
|
1901
|
+
# resp.interface_association.tags #=> Array
|
1902
|
+
# resp.interface_association.tags[0].key #=> String
|
1903
|
+
# resp.interface_association.tags[0].value #=> String
|
1904
|
+
# resp.client_token #=> String
|
1905
|
+
#
|
1906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateTrunkInterface AWS API Documentation
|
1907
|
+
#
|
1908
|
+
# @overload associate_trunk_interface(params = {})
|
1909
|
+
# @param [Hash] params ({})
|
1910
|
+
def associate_trunk_interface(params = {}, options = {})
|
1911
|
+
req = build_request(:associate_trunk_interface, params)
|
1912
|
+
req.send_request(options)
|
1913
|
+
end
|
1914
|
+
|
1827
1915
|
# Associates a CIDR block with your VPC. You can associate a secondary
|
1828
1916
|
# IPv4 CIDR block, an Amazon-provided IPv6 CIDR block, or an IPv6 CIDR
|
1829
1917
|
# block from an IPv6 address pool that you provisioned through bring
|
@@ -7070,10 +7158,14 @@ module Aws::EC2
|
|
7070
7158
|
# Indicates the type of network interface. To create an Elastic Fabric
|
7071
7159
|
# Adapter (EFA), specify `efa`. For more information, see [ Elastic
|
7072
7160
|
# Fabric Adapter][1] in the *Amazon Elastic Compute Cloud User Guide*.
|
7161
|
+
# To create a trunk network interface, specify `efa`. For more
|
7162
|
+
# information, see [ Network interface trunking][2] in the *Amazon
|
7163
|
+
# Elastic Compute Cloud User Guide*.
|
7073
7164
|
#
|
7074
7165
|
#
|
7075
7166
|
#
|
7076
7167
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html
|
7168
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/eni-trunking.html
|
7077
7169
|
#
|
7078
7170
|
# @option params [required, String] :subnet_id
|
7079
7171
|
# The ID of the subnet to associate with the network interface.
|
@@ -7163,7 +7255,7 @@ module Aws::EC2
|
|
7163
7255
|
# },
|
7164
7256
|
# ],
|
7165
7257
|
# secondary_private_ip_address_count: 1,
|
7166
|
-
# interface_type: "efa", # accepts efa
|
7258
|
+
# interface_type: "efa", # accepts efa, branch, trunk
|
7167
7259
|
# subnet_id: "SubnetId", # required
|
7168
7260
|
# tag_specifications: [
|
7169
7261
|
# {
|
@@ -7201,7 +7293,7 @@ module Aws::EC2
|
|
7201
7293
|
# resp.network_interface.groups #=> Array
|
7202
7294
|
# resp.network_interface.groups[0].group_name #=> String
|
7203
7295
|
# resp.network_interface.groups[0].group_id #=> String
|
7204
|
-
# resp.network_interface.interface_type #=> String, one of "interface", "natGateway", "efa"
|
7296
|
+
# resp.network_interface.interface_type #=> String, one of "interface", "natGateway", "efa", "trunk"
|
7205
7297
|
# resp.network_interface.ipv_6_addresses #=> Array
|
7206
7298
|
# resp.network_interface.ipv_6_addresses[0].ipv_6_address #=> String
|
7207
7299
|
# resp.network_interface.mac_address #=> String
|
@@ -7241,20 +7333,20 @@ module Aws::EC2
|
|
7241
7333
|
req.send_request(options)
|
7242
7334
|
end
|
7243
7335
|
|
7244
|
-
# Grants an
|
7245
|
-
# network interface to an instance in their account.
|
7336
|
+
# Grants an Amazon Web Services-authorized account permission to attach
|
7337
|
+
# the specified network interface to an instance in their account.
|
7246
7338
|
#
|
7247
|
-
# You can grant permission to a single
|
7339
|
+
# You can grant permission to a single account only, and only one
|
7248
7340
|
# account at a time.
|
7249
7341
|
#
|
7250
7342
|
# @option params [required, String] :network_interface_id
|
7251
7343
|
# The ID of the network interface.
|
7252
7344
|
#
|
7253
7345
|
# @option params [String] :aws_account_id
|
7254
|
-
# The
|
7346
|
+
# The account ID.
|
7255
7347
|
#
|
7256
7348
|
# @option params [String] :aws_service
|
7257
|
-
# The
|
7349
|
+
# The Amazon Web Service. Currently not supported.
|
7258
7350
|
#
|
7259
7351
|
# @option params [required, String] :permission
|
7260
7352
|
# The type of permission to grant.
|
@@ -13600,8 +13692,8 @@ module Aws::EC2
|
|
13600
13692
|
end
|
13601
13693
|
|
13602
13694
|
# Releases the specified address range that you provisioned for use with
|
13603
|
-
# your
|
13604
|
-
# deletes the corresponding address pool.
|
13695
|
+
# your Amazon Web Services resources through bring your own IP addresses
|
13696
|
+
# (BYOIP) and deletes the corresponding address pool.
|
13605
13697
|
#
|
13606
13698
|
# Before you can release an address range, you must stop advertising it
|
13607
13699
|
# using WithdrawByoipCidr and you must not have any IP addresses
|
@@ -13998,12 +14090,13 @@ module Aws::EC2
|
|
13998
14090
|
# with, if any.
|
13999
14091
|
#
|
14000
14092
|
# * `network-border-group` - A unique set of Availability Zones, Local
|
14001
|
-
# Zones, or Wavelength Zones from where
|
14093
|
+
# Zones, or Wavelength Zones from where Amazon Web Services advertises
|
14094
|
+
# IP addresses.
|
14002
14095
|
#
|
14003
14096
|
# * `network-interface-id` - \[EC2-VPC\] The ID of the network interface
|
14004
14097
|
# that the address is associated with, if any.
|
14005
14098
|
#
|
14006
|
-
# * `network-interface-owner-id` - The
|
14099
|
+
# * `network-interface-owner-id` - The account ID of the owner.
|
14007
14100
|
#
|
14008
14101
|
# * `private-ip-address` - \[EC2-VPC\] The private IP address associated
|
14009
14102
|
# with the Elastic IP address.
|
@@ -20282,7 +20375,8 @@ module Aws::EC2
|
|
20282
20375
|
req.send_request(options)
|
20283
20376
|
end
|
20284
20377
|
|
20285
|
-
# Describes your managed prefix lists and any
|
20378
|
+
# Describes your managed prefix lists and any Amazon Web
|
20379
|
+
# Services-managed prefix lists.
|
20286
20380
|
#
|
20287
20381
|
# To view the entries for your prefix list, use
|
20288
20382
|
# GetManagedPrefixListEntries.
|
@@ -21321,9 +21415,9 @@ module Aws::EC2
|
|
21321
21415
|
# * `network-interface-permission.network-interface-id` - The ID of the
|
21322
21416
|
# network interface.
|
21323
21417
|
#
|
21324
|
-
# * `network-interface-permission.aws-account-id` - The
|
21418
|
+
# * `network-interface-permission.aws-account-id` - The account ID.
|
21325
21419
|
#
|
21326
|
-
# * `network-interface-permission.aws-service` - The
|
21420
|
+
# * `network-interface-permission.aws-service` - The Amazon Web Service.
|
21327
21421
|
#
|
21328
21422
|
# * `network-interface-permission.permission` - The type of permission
|
21329
21423
|
# (`INSTANCE-ATTACH` \| `EIP-ASSOCIATE`).
|
@@ -21450,7 +21544,7 @@ module Aws::EC2
|
|
21450
21544
|
#
|
21451
21545
|
# * `network-interface-id` - The ID of the network interface.
|
21452
21546
|
#
|
21453
|
-
# * `owner-id` - The
|
21547
|
+
# * `owner-id` - The account ID of the network interface owner.
|
21454
21548
|
#
|
21455
21549
|
# * `private-ip-address` - The private IPv4 address or addresses of the
|
21456
21550
|
# network interface.
|
@@ -21458,11 +21552,11 @@ module Aws::EC2
|
|
21458
21552
|
# * `private-dns-name` - The private DNS name of the network interface
|
21459
21553
|
# (IPv4).
|
21460
21554
|
#
|
21461
|
-
# * `requester-id` - The alias or
|
21462
|
-
#
|
21555
|
+
# * `requester-id` - The alias or account ID of the principal or service
|
21556
|
+
# that created the network interface.
|
21463
21557
|
#
|
21464
21558
|
# * `requester-managed` - Indicates whether the network interface is
|
21465
|
-
# being managed by an
|
21559
|
+
# being managed by an Amazon Web Service (for example, Management
|
21466
21560
|
# Console, Auto Scaling, and so on).
|
21467
21561
|
#
|
21468
21562
|
# * `source-dest-check` - Indicates whether the network interface
|
@@ -21620,7 +21714,7 @@ module Aws::EC2
|
|
21620
21714
|
# resp.network_interfaces[0].groups #=> Array
|
21621
21715
|
# resp.network_interfaces[0].groups[0].group_name #=> String
|
21622
21716
|
# resp.network_interfaces[0].groups[0].group_id #=> String
|
21623
|
-
# resp.network_interfaces[0].interface_type #=> String, one of "interface", "natGateway", "efa"
|
21717
|
+
# resp.network_interfaces[0].interface_type #=> String, one of "interface", "natGateway", "efa", "trunk"
|
21624
21718
|
# resp.network_interfaces[0].ipv_6_addresses #=> Array
|
21625
21719
|
# resp.network_interfaces[0].ipv_6_addresses[0].ipv_6_address #=> String
|
21626
21720
|
# resp.network_interfaces[0].mac_address #=> String
|
@@ -21748,9 +21842,9 @@ module Aws::EC2
|
|
21748
21842
|
req.send_request(options)
|
21749
21843
|
end
|
21750
21844
|
|
21751
|
-
# Describes available
|
21752
|
-
# includes the prefix list name and prefix list ID of the
|
21753
|
-
# the IP address range for the service.
|
21845
|
+
# Describes available Amazon Web Services services in a prefix list
|
21846
|
+
# format, which includes the prefix list name and prefix list ID of the
|
21847
|
+
# service and the IP address range for the service.
|
21754
21848
|
#
|
21755
21849
|
# We recommend that you use DescribeManagedPrefixLists instead.
|
21756
21850
|
#
|
@@ -26314,6 +26408,76 @@ module Aws::EC2
|
|
26314
26408
|
req.send_request(options)
|
26315
26409
|
end
|
26316
26410
|
|
26411
|
+
# Describes one or more network interface trunk associations.
|
26412
|
+
#
|
26413
|
+
# @option params [Array<String>] :association_ids
|
26414
|
+
# The IDs of the associations.
|
26415
|
+
#
|
26416
|
+
# @option params [Boolean] :dry_run
|
26417
|
+
# Checks whether you have the required permissions for the action,
|
26418
|
+
# without actually making the request, and provides an error response.
|
26419
|
+
# If you have the required permissions, the error response is
|
26420
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
26421
|
+
#
|
26422
|
+
# @option params [Array<Types::Filter>] :filters
|
26423
|
+
# One or more filters.
|
26424
|
+
#
|
26425
|
+
# * `gre-key` - The ID of a trunk interface association.
|
26426
|
+
#
|
26427
|
+
# * `interface-protocol` - The interface protocol. Valid values are
|
26428
|
+
# `VLAN` and `GRE`.
|
26429
|
+
#
|
26430
|
+
# @option params [String] :next_token
|
26431
|
+
# The token for the next page of results.
|
26432
|
+
#
|
26433
|
+
# @option params [Integer] :max_results
|
26434
|
+
# The maximum number of results to return with a single call. To
|
26435
|
+
# retrieve the remaining results, make another call with the returned
|
26436
|
+
# `nextToken` value.
|
26437
|
+
#
|
26438
|
+
# @return [Types::DescribeTrunkInterfaceAssociationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26439
|
+
#
|
26440
|
+
# * {Types::DescribeTrunkInterfaceAssociationsResult#interface_associations #interface_associations} => Array<Types::TrunkInterfaceAssociation>
|
26441
|
+
# * {Types::DescribeTrunkInterfaceAssociationsResult#next_token #next_token} => String
|
26442
|
+
#
|
26443
|
+
# @example Request syntax with placeholder values
|
26444
|
+
#
|
26445
|
+
# resp = client.describe_trunk_interface_associations({
|
26446
|
+
# association_ids: ["TrunkInterfaceAssociationId"],
|
26447
|
+
# dry_run: false,
|
26448
|
+
# filters: [
|
26449
|
+
# {
|
26450
|
+
# name: "String",
|
26451
|
+
# values: ["String"],
|
26452
|
+
# },
|
26453
|
+
# ],
|
26454
|
+
# next_token: "String",
|
26455
|
+
# max_results: 1,
|
26456
|
+
# })
|
26457
|
+
#
|
26458
|
+
# @example Response structure
|
26459
|
+
#
|
26460
|
+
# resp.interface_associations #=> Array
|
26461
|
+
# resp.interface_associations[0].association_id #=> String
|
26462
|
+
# resp.interface_associations[0].branch_interface_id #=> String
|
26463
|
+
# resp.interface_associations[0].trunk_interface_id #=> String
|
26464
|
+
# resp.interface_associations[0].interface_protocol #=> String, one of "VLAN", "GRE"
|
26465
|
+
# resp.interface_associations[0].vlan_id #=> Integer
|
26466
|
+
# resp.interface_associations[0].gre_key #=> Integer
|
26467
|
+
# resp.interface_associations[0].tags #=> Array
|
26468
|
+
# resp.interface_associations[0].tags[0].key #=> String
|
26469
|
+
# resp.interface_associations[0].tags[0].value #=> String
|
26470
|
+
# resp.next_token #=> String
|
26471
|
+
#
|
26472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTrunkInterfaceAssociations AWS API Documentation
|
26473
|
+
#
|
26474
|
+
# @overload describe_trunk_interface_associations(params = {})
|
26475
|
+
# @param [Hash] params ({})
|
26476
|
+
def describe_trunk_interface_associations(params = {}, options = {})
|
26477
|
+
req = build_request(:describe_trunk_interface_associations, params)
|
26478
|
+
req.send_request(options)
|
26479
|
+
end
|
26480
|
+
|
26317
26481
|
# Describes the specified attribute of the specified volume. You can
|
26318
26482
|
# specify only one attribute at a time.
|
26319
26483
|
#
|
@@ -29303,6 +29467,57 @@ module Aws::EC2
|
|
29303
29467
|
req.send_request(options)
|
29304
29468
|
end
|
29305
29469
|
|
29470
|
+
# Removes an association between a branch network interface with a trunk
|
29471
|
+
# network interface.
|
29472
|
+
#
|
29473
|
+
# @option params [required, String] :association_id
|
29474
|
+
# The ID ofthe association
|
29475
|
+
#
|
29476
|
+
# @option params [String] :client_token
|
29477
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
29478
|
+
# idempotency of the request. For more information, see [How to Ensure
|
29479
|
+
# Idempotency][1].
|
29480
|
+
#
|
29481
|
+
# **A suitable default value is auto-generated.** You should normally
|
29482
|
+
# not need to pass this option.**
|
29483
|
+
#
|
29484
|
+
#
|
29485
|
+
#
|
29486
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
29487
|
+
#
|
29488
|
+
# @option params [Boolean] :dry_run
|
29489
|
+
# Checks whether you have the required permissions for the action,
|
29490
|
+
# without actually making the request, and provides an error response.
|
29491
|
+
# If you have the required permissions, the error response is
|
29492
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
29493
|
+
#
|
29494
|
+
# @return [Types::DisassociateTrunkInterfaceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
29495
|
+
#
|
29496
|
+
# * {Types::DisassociateTrunkInterfaceResult#return #return} => Boolean
|
29497
|
+
# * {Types::DisassociateTrunkInterfaceResult#client_token #client_token} => String
|
29498
|
+
#
|
29499
|
+
# @example Request syntax with placeholder values
|
29500
|
+
#
|
29501
|
+
# resp = client.disassociate_trunk_interface({
|
29502
|
+
# association_id: "TrunkInterfaceAssociationId", # required
|
29503
|
+
# client_token: "String",
|
29504
|
+
# dry_run: false,
|
29505
|
+
# })
|
29506
|
+
#
|
29507
|
+
# @example Response structure
|
29508
|
+
#
|
29509
|
+
# resp.return #=> Boolean
|
29510
|
+
# resp.client_token #=> String
|
29511
|
+
#
|
29512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateTrunkInterface AWS API Documentation
|
29513
|
+
#
|
29514
|
+
# @overload disassociate_trunk_interface(params = {})
|
29515
|
+
# @param [Hash] params ({})
|
29516
|
+
def disassociate_trunk_interface(params = {}, options = {})
|
29517
|
+
req = build_request(:disassociate_trunk_interface, params)
|
29518
|
+
req.send_request(options)
|
29519
|
+
end
|
29520
|
+
|
29306
29521
|
# Disassociates a CIDR block from a VPC. To disassociate the CIDR block,
|
29307
29522
|
# you must specify its association ID. You can get the association ID by
|
29308
29523
|
# using DescribeVpcs. You must detach or delete all gateways and
|
@@ -36334,17 +36549,17 @@ module Aws::EC2
|
|
36334
36549
|
req.send_request(options)
|
36335
36550
|
end
|
36336
36551
|
|
36337
|
-
# Provisions an IPv4 or IPv6 address range for use with your
|
36338
|
-
# resources through bring your own IP addresses (BYOIP) and
|
36339
|
-
# corresponding address pool. After the address range is
|
36340
|
-
# is ready to be advertised using AdvertiseByoipCidr.
|
36552
|
+
# Provisions an IPv4 or IPv6 address range for use with your Amazon Web
|
36553
|
+
# Services resources through bring your own IP addresses (BYOIP) and
|
36554
|
+
# creates a corresponding address pool. After the address range is
|
36555
|
+
# provisioned, it is ready to be advertised using AdvertiseByoipCidr.
|
36341
36556
|
#
|
36342
|
-
#
|
36343
|
-
# advertise it. You must ensure that the address range is
|
36344
|
-
# you and that you created an RPKI ROA to authorize Amazon
|
36345
|
-
# and 14618 to advertise the address range. For more
|
36346
|
-
# [Bring
|
36347
|
-
# Compute Cloud User Guide*.
|
36557
|
+
# Amazon Web Services verifies that you own the address range and are
|
36558
|
+
# authorized to advertise it. You must ensure that the address range is
|
36559
|
+
# registered to you and that you created an RPKI ROA to authorize Amazon
|
36560
|
+
# ASNs 16509 and 14618 to advertise the address range. For more
|
36561
|
+
# information, see [Bring your own IP addresses (BYOIP)][1] in the
|
36562
|
+
# *Amazon Elastic Compute Cloud User Guide*.
|
36348
36563
|
#
|
36349
36564
|
# Provisioning an address range is an asynchronous operation, so the
|
36350
36565
|
# call returns immediately, but the address range is not ready to use
|
@@ -37404,7 +37619,7 @@ module Aws::EC2
|
|
37404
37619
|
# address pool. Be sure to update your DNS records and any servers or
|
37405
37620
|
# devices that communicate with the address. If you attempt to release
|
37406
37621
|
# an Elastic IP address that you already released, you'll get an
|
37407
|
-
# `AuthFailure` error if the address is already allocated to another
|
37622
|
+
# `AuthFailure` error if the address is already allocated to another
|
37408
37623
|
# account.
|
37409
37624
|
#
|
37410
37625
|
# \[EC2-VPC\] After you release an Elastic IP address for use in a VPC,
|
@@ -41972,7 +42187,8 @@ module Aws::EC2
|
|
41972
42187
|
# you specify different address ranges each time.
|
41973
42188
|
#
|
41974
42189
|
# It can take a few minutes before traffic to the specified addresses
|
41975
|
-
# stops routing to
|
42190
|
+
# stops routing to Amazon Web Services because of BGP propagation
|
42191
|
+
# delays.
|
41976
42192
|
#
|
41977
42193
|
# @option params [required, String] :cidr
|
41978
42194
|
# The address range, in CIDR notation.
|
@@ -42023,7 +42239,7 @@ module Aws::EC2
|
|
42023
42239
|
params: params,
|
42024
42240
|
config: config)
|
42025
42241
|
context[:gem_name] = 'aws-sdk-ec2'
|
42026
|
-
context[:gem_version] = '1.
|
42242
|
+
context[:gem_version] = '1.244.0'
|
42027
42243
|
Seahorse::Client::Request.new(handlers, context)
|
42028
42244
|
end
|
42029
42245
|
|