aws-sdk-ec2 1.135.0 → 1.136.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/client.rb +197 -31
- data/lib/aws-sdk-ec2/client_api.rb +85 -0
- data/lib/aws-sdk-ec2/resource.rb +13 -0
- data/lib/aws-sdk-ec2/types.rb +261 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e477c32a2c9b717ed8511c35e94d3e03b3042e5b
|
4
|
+
data.tar.gz: 91ba661671d850231bd13006a5c1ab9fd4899145
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97703650820823dbe6d10b6a83dba6ef8d56f8d8f3919549ebcf59bec14b274958e49ea7fab8eee7958140d4b671539433f54a0171498fa3660d0c88f7c3c027
|
7
|
+
data.tar.gz: d54ce44126e8a32ce97b6581c37a1bc9d260e06b8e64219db1327d3a26f8e5ee5c394a051582de5785ec95b6638a065a4165eba2eb97da54eec85de27e91aabb
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -519,8 +519,8 @@ module Aws::EC2
|
|
519
519
|
req.send_request(options)
|
520
520
|
end
|
521
521
|
|
522
|
-
# Advertises an IPv4 address range that is provisioned for use
|
523
|
-
# AWS resources through bring your own IP addresses (BYOIP).
|
522
|
+
# Advertises an IPv4 or IPv6 address range that is provisioned for use
|
523
|
+
# with your AWS resources through bring your own IP addresses (BYOIP).
|
524
524
|
#
|
525
525
|
# You can perform this operation at most once every 10 seconds, even if
|
526
526
|
# you specify different address ranges each time.
|
@@ -537,8 +537,8 @@ module Aws::EC2
|
|
537
537
|
# To stop advertising the BYOIP CIDR, use WithdrawByoipCidr.
|
538
538
|
#
|
539
539
|
# @option params [required, String] :cidr
|
540
|
-
# The
|
541
|
-
#
|
540
|
+
# The address range, in CIDR notation. This must be the exact range that
|
541
|
+
# you provisioned. You can't advertise only a portion of the
|
542
542
|
# provisioned range.
|
543
543
|
#
|
544
544
|
# @option params [Boolean] :dry_run
|
@@ -1588,16 +1588,19 @@ module Aws::EC2
|
|
1588
1588
|
end
|
1589
1589
|
|
1590
1590
|
# Associates a CIDR block with your VPC. You can associate a secondary
|
1591
|
-
# IPv4 CIDR block,
|
1592
|
-
# block
|
1591
|
+
# IPv4 CIDR block, an Amazon-provided IPv6 CIDR block, or an IPv6 CIDR
|
1592
|
+
# block from an IPv6 address pool that you provisioned through bring
|
1593
|
+
# your own IP addresses ([BYOIP][1]). The IPv6 CIDR block size is fixed
|
1594
|
+
# at /56.
|
1593
1595
|
#
|
1594
1596
|
# For more information about associating CIDR blocks with your VPC and
|
1595
|
-
# applicable restrictions, see [VPC and Subnet Sizing][
|
1597
|
+
# applicable restrictions, see [VPC and Subnet Sizing][2] in the *Amazon
|
1596
1598
|
# Virtual Private Cloud User Guide*.
|
1597
1599
|
#
|
1598
1600
|
#
|
1599
1601
|
#
|
1600
|
-
# [1]: https://docs.aws.amazon.com/
|
1602
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html
|
1603
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html#VPC_Sizing
|
1601
1604
|
#
|
1602
1605
|
# @option params [Boolean] :amazon_provided_ipv_6_cidr_block
|
1603
1606
|
# Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
|
@@ -1610,6 +1613,16 @@ module Aws::EC2
|
|
1610
1613
|
# @option params [required, String] :vpc_id
|
1611
1614
|
# The ID of the VPC.
|
1612
1615
|
#
|
1616
|
+
# @option params [String] :ipv_6_pool
|
1617
|
+
# The ID of an IPv6 address pool from which to allocate the IPv6 CIDR
|
1618
|
+
# block.
|
1619
|
+
#
|
1620
|
+
# @option params [String] :ipv_6_cidr_block
|
1621
|
+
# An IPv6 CIDR block from the IPv6 address pool. You must also specify
|
1622
|
+
# `Ipv6Pool` in the request.
|
1623
|
+
#
|
1624
|
+
# To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
|
1625
|
+
#
|
1613
1626
|
# @option params [String] :ipv_6_cidr_block_network_border_group
|
1614
1627
|
# The name of the location from which we advertise the IPV6 CIDR block.
|
1615
1628
|
# Use this parameter to limit the CiDR block to this location.
|
@@ -1631,6 +1644,8 @@ module Aws::EC2
|
|
1631
1644
|
# amazon_provided_ipv_6_cidr_block: false,
|
1632
1645
|
# cidr_block: "String",
|
1633
1646
|
# vpc_id: "VpcId", # required
|
1647
|
+
# ipv_6_pool: "String",
|
1648
|
+
# ipv_6_cidr_block: "String",
|
1634
1649
|
# ipv_6_cidr_block_network_border_group: "String",
|
1635
1650
|
# })
|
1636
1651
|
#
|
@@ -1640,6 +1655,7 @@ module Aws::EC2
|
|
1640
1655
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block #=> String
|
1641
1656
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
1642
1657
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
|
1658
|
+
# resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
|
1643
1659
|
# resp.ipv_6_cidr_block_association.network_border_group #=> String
|
1644
1660
|
# resp.cidr_block_association.association_id #=> String
|
1645
1661
|
# resp.cidr_block_association.cidr_block #=> String
|
@@ -4063,6 +4079,7 @@ module Aws::EC2
|
|
4063
4079
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
4064
4080
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
4065
4081
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
4082
|
+
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
|
4066
4083
|
# resp.vpc.ipv_6_cidr_block_association_set[0].network_border_group #=> String
|
4067
4084
|
# resp.vpc.cidr_block_association_set #=> Array
|
4068
4085
|
# resp.vpc.cidr_block_association_set[0].association_id #=> String
|
@@ -8509,26 +8526,27 @@ module Aws::EC2
|
|
8509
8526
|
# how large to make your VPC, see [Your VPC and Subnets][1] in the
|
8510
8527
|
# *Amazon Virtual Private Cloud User Guide*.
|
8511
8528
|
#
|
8512
|
-
# You can optionally request an
|
8513
|
-
#
|
8514
|
-
#
|
8515
|
-
#
|
8529
|
+
# You can optionally request an IPv6 CIDR block for the VPC. You can
|
8530
|
+
# request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6
|
8531
|
+
# addresses, or an IPv6 CIDR block from an IPv6 address pool that you
|
8532
|
+
# provisioned through bring your own IP addresses ([BYOIP][2]).
|
8516
8533
|
#
|
8517
8534
|
# By default, each instance you launch in the VPC has the default DHCP
|
8518
8535
|
# options, which include only a default DNS server that we provide
|
8519
|
-
# (AmazonProvidedDNS). For more information, see [DHCP Options Sets][
|
8536
|
+
# (AmazonProvidedDNS). For more information, see [DHCP Options Sets][3]
|
8520
8537
|
# in the *Amazon Virtual Private Cloud User Guide*.
|
8521
8538
|
#
|
8522
8539
|
# You can specify the instance tenancy value for the VPC when you create
|
8523
8540
|
# it. You can't change this value for the VPC after you create it. For
|
8524
|
-
# more information, see [Dedicated Instances][
|
8541
|
+
# more information, see [Dedicated Instances][4] in the *Amazon Elastic
|
8525
8542
|
# Compute Cloud User Guide*.
|
8526
8543
|
#
|
8527
8544
|
#
|
8528
8545
|
#
|
8529
8546
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
|
8530
|
-
# [2]: https://docs.aws.amazon.com/
|
8531
|
-
# [3]: https://docs.aws.amazon.com/
|
8547
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html
|
8548
|
+
# [3]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_DHCP_Options.html
|
8549
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-instance.html
|
8532
8550
|
#
|
8533
8551
|
# @option params [required, String] :cidr_block
|
8534
8552
|
# The IPv4 network range for the VPC, in CIDR notation. For example,
|
@@ -8539,6 +8557,16 @@ module Aws::EC2
|
|
8539
8557
|
# for the VPC. You cannot specify the range of IP addresses, or the size
|
8540
8558
|
# of the CIDR block.
|
8541
8559
|
#
|
8560
|
+
# @option params [String] :ipv_6_pool
|
8561
|
+
# The ID of an IPv6 address pool from which to allocate the IPv6 CIDR
|
8562
|
+
# block.
|
8563
|
+
#
|
8564
|
+
# @option params [String] :ipv_6_cidr_block
|
8565
|
+
# The IPv6 CIDR block from the IPv6 address pool. You must also specify
|
8566
|
+
# `Ipv6Pool` in the request.
|
8567
|
+
#
|
8568
|
+
# To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
|
8569
|
+
#
|
8542
8570
|
# @option params [Boolean] :dry_run
|
8543
8571
|
# Checks whether you have the required permissions for the action,
|
8544
8572
|
# without actually making the request, and provides an error response.
|
@@ -8594,6 +8622,8 @@ module Aws::EC2
|
|
8594
8622
|
# resp = client.create_vpc({
|
8595
8623
|
# cidr_block: "String", # required
|
8596
8624
|
# amazon_provided_ipv_6_cidr_block: false,
|
8625
|
+
# ipv_6_pool: "String",
|
8626
|
+
# ipv_6_cidr_block: "String",
|
8597
8627
|
# dry_run: false,
|
8598
8628
|
# instance_tenancy: "default", # accepts default, dedicated, host
|
8599
8629
|
# ipv_6_cidr_block_network_border_group: "String",
|
@@ -8612,6 +8642,7 @@ module Aws::EC2
|
|
8612
8642
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
8613
8643
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
8614
8644
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
8645
|
+
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
|
8615
8646
|
# resp.vpc.ipv_6_cidr_block_association_set[0].network_border_group #=> String
|
8616
8647
|
# resp.vpc.cidr_block_association_set #=> Array
|
8617
8648
|
# resp.vpc.cidr_block_association_set[0].association_id #=> String
|
@@ -11430,9 +11461,8 @@ module Aws::EC2
|
|
11430
11461
|
# allocated from its address range.
|
11431
11462
|
#
|
11432
11463
|
# @option params [required, String] :cidr
|
11433
|
-
# The
|
11434
|
-
#
|
11435
|
-
# range.
|
11464
|
+
# The address range, in CIDR notation. The prefix must be the same
|
11465
|
+
# prefix that you specified when you provisioned the address range.
|
11436
11466
|
#
|
11437
11467
|
# @option params [Boolean] :dry_run
|
11438
11468
|
# Checks whether you have the required permissions for the action,
|
@@ -12236,7 +12266,7 @@ module Aws::EC2
|
|
12236
12266
|
# ProvisionByoipCidr.
|
12237
12267
|
#
|
12238
12268
|
# To describe the address pools that were created when you provisioned
|
12239
|
-
# the address ranges, use DescribePublicIpv4Pools.
|
12269
|
+
# the address ranges, use DescribePublicIpv4Pools or DescribeIpv6Pools.
|
12240
12270
|
#
|
12241
12271
|
# @option params [Boolean] :dry_run
|
12242
12272
|
# Checks whether you have the required permissions for the action,
|
@@ -16478,6 +16508,79 @@ module Aws::EC2
|
|
16478
16508
|
req.send_request(options)
|
16479
16509
|
end
|
16480
16510
|
|
16511
|
+
# Describes your IPv6 address pools.
|
16512
|
+
#
|
16513
|
+
# @option params [Array<String>] :pool_ids
|
16514
|
+
# The IDs of the IPv6 address pools.
|
16515
|
+
#
|
16516
|
+
# @option params [String] :next_token
|
16517
|
+
# The token for the next page of results.
|
16518
|
+
#
|
16519
|
+
# @option params [Integer] :max_results
|
16520
|
+
# The maximum number of results to return with a single call. To
|
16521
|
+
# retrieve the remaining results, make another call with the returned
|
16522
|
+
# `nextToken` value.
|
16523
|
+
#
|
16524
|
+
# @option params [Boolean] :dry_run
|
16525
|
+
# Checks whether you have the required permissions for the action,
|
16526
|
+
# without actually making the request, and provides an error response.
|
16527
|
+
# If you have the required permissions, the error response is
|
16528
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
16529
|
+
#
|
16530
|
+
# @option params [Array<Types::Filter>] :filters
|
16531
|
+
# One or more filters.
|
16532
|
+
#
|
16533
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
16534
|
+
# the resource. Use the tag key in the filter name and the tag value
|
16535
|
+
# as the filter value. For example, to find all resources that have a
|
16536
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
16537
|
+
# for the filter name and `TeamA` for the filter value.
|
16538
|
+
#
|
16539
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
16540
|
+
# filter to find all resources assigned a tag with a specific key,
|
16541
|
+
# regardless of the tag value.
|
16542
|
+
#
|
16543
|
+
# @return [Types::DescribeIpv6PoolsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16544
|
+
#
|
16545
|
+
# * {Types::DescribeIpv6PoolsResult#ipv_6_pools #ipv_6_pools} => Array<Types::Ipv6Pool>
|
16546
|
+
# * {Types::DescribeIpv6PoolsResult#next_token #next_token} => String
|
16547
|
+
#
|
16548
|
+
# @example Request syntax with placeholder values
|
16549
|
+
#
|
16550
|
+
# resp = client.describe_ipv_6_pools({
|
16551
|
+
# pool_ids: ["String"],
|
16552
|
+
# next_token: "NextToken",
|
16553
|
+
# max_results: 1,
|
16554
|
+
# dry_run: false,
|
16555
|
+
# filters: [
|
16556
|
+
# {
|
16557
|
+
# name: "String",
|
16558
|
+
# values: ["String"],
|
16559
|
+
# },
|
16560
|
+
# ],
|
16561
|
+
# })
|
16562
|
+
#
|
16563
|
+
# @example Response structure
|
16564
|
+
#
|
16565
|
+
# resp.ipv_6_pools #=> Array
|
16566
|
+
# resp.ipv_6_pools[0].pool_id #=> String
|
16567
|
+
# resp.ipv_6_pools[0].description #=> String
|
16568
|
+
# resp.ipv_6_pools[0].pool_cidr_blocks #=> Array
|
16569
|
+
# resp.ipv_6_pools[0].pool_cidr_blocks[0].cidr #=> String
|
16570
|
+
# resp.ipv_6_pools[0].tags #=> Array
|
16571
|
+
# resp.ipv_6_pools[0].tags[0].key #=> String
|
16572
|
+
# resp.ipv_6_pools[0].tags[0].value #=> String
|
16573
|
+
# resp.next_token #=> String
|
16574
|
+
#
|
16575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpv6Pools AWS API Documentation
|
16576
|
+
#
|
16577
|
+
# @overload describe_ipv_6_pools(params = {})
|
16578
|
+
# @param [Hash] params ({})
|
16579
|
+
def describe_ipv_6_pools(params = {}, options = {})
|
16580
|
+
req = build_request(:describe_ipv_6_pools, params)
|
16581
|
+
req.send_request(options)
|
16582
|
+
end
|
16583
|
+
|
16481
16584
|
# Describes the specified key pairs or all of your key pairs.
|
16482
16585
|
#
|
16483
16586
|
# For more information about key pairs, see [Key Pairs][1] in the
|
@@ -23804,6 +23907,9 @@ module Aws::EC2
|
|
23804
23907
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
23805
23908
|
# associated with the VPC.
|
23806
23909
|
#
|
23910
|
+
# * `ipv6-cidr-block-association.ipv6-pool` - The ID of the IPv6 address
|
23911
|
+
# pool from which the IPv6 CIDR block is allocated.
|
23912
|
+
#
|
23807
23913
|
# * `ipv6-cidr-block-association.association-id` - The association ID
|
23808
23914
|
# for an IPv6 CIDR block associated with the VPC.
|
23809
23915
|
#
|
@@ -23912,6 +24018,7 @@ module Aws::EC2
|
|
23912
24018
|
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
23913
24019
|
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
23914
24020
|
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
24021
|
+
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
|
23915
24022
|
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].network_border_group #=> String
|
23916
24023
|
# resp.vpcs[0].cidr_block_association_set #=> Array
|
23917
24024
|
# resp.vpcs[0].cidr_block_association_set[0].association_id #=> String
|
@@ -25095,6 +25202,7 @@ module Aws::EC2
|
|
25095
25202
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block #=> String
|
25096
25203
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
25097
25204
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
|
25205
|
+
# resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
|
25098
25206
|
# resp.ipv_6_cidr_block_association.network_border_group #=> String
|
25099
25207
|
# resp.cidr_block_association.association_id #=> String
|
25100
25208
|
# resp.cidr_block_association.cidr_block #=> String
|
@@ -25682,6 +25790,56 @@ module Aws::EC2
|
|
25682
25790
|
req.send_request(options)
|
25683
25791
|
end
|
25684
25792
|
|
25793
|
+
# Gets information about the IPv6 CIDR block associations for a
|
25794
|
+
# specified IPv6 address pool.
|
25795
|
+
#
|
25796
|
+
# @option params [required, String] :pool_id
|
25797
|
+
# The ID of the IPv6 address pool.
|
25798
|
+
#
|
25799
|
+
# @option params [String] :next_token
|
25800
|
+
# The token for the next page of results.
|
25801
|
+
#
|
25802
|
+
# @option params [Integer] :max_results
|
25803
|
+
# The maximum number of results to return with a single call. To
|
25804
|
+
# retrieve the remaining results, make another call with the returned
|
25805
|
+
# `nextToken` value.
|
25806
|
+
#
|
25807
|
+
# @option params [Boolean] :dry_run
|
25808
|
+
# Checks whether you have the required permissions for the action,
|
25809
|
+
# without actually making the request, and provides an error response.
|
25810
|
+
# If you have the required permissions, the error response is
|
25811
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
25812
|
+
#
|
25813
|
+
# @return [Types::GetAssociatedIpv6PoolCidrsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25814
|
+
#
|
25815
|
+
# * {Types::GetAssociatedIpv6PoolCidrsResult#ipv_6_cidr_associations #ipv_6_cidr_associations} => Array<Types::Ipv6CidrAssociation>
|
25816
|
+
# * {Types::GetAssociatedIpv6PoolCidrsResult#next_token #next_token} => String
|
25817
|
+
#
|
25818
|
+
# @example Request syntax with placeholder values
|
25819
|
+
#
|
25820
|
+
# resp = client.get_associated_ipv_6_pool_cidrs({
|
25821
|
+
# pool_id: "String", # required
|
25822
|
+
# next_token: "NextToken",
|
25823
|
+
# max_results: 1,
|
25824
|
+
# dry_run: false,
|
25825
|
+
# })
|
25826
|
+
#
|
25827
|
+
# @example Response structure
|
25828
|
+
#
|
25829
|
+
# resp.ipv_6_cidr_associations #=> Array
|
25830
|
+
# resp.ipv_6_cidr_associations[0].ipv_6_cidr #=> String
|
25831
|
+
# resp.ipv_6_cidr_associations[0].associated_resource #=> String
|
25832
|
+
# resp.next_token #=> String
|
25833
|
+
#
|
25834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetAssociatedIpv6PoolCidrs AWS API Documentation
|
25835
|
+
#
|
25836
|
+
# @overload get_associated_ipv_6_pool_cidrs(params = {})
|
25837
|
+
# @param [Hash] params ({})
|
25838
|
+
def get_associated_ipv_6_pool_cidrs(params = {}, options = {})
|
25839
|
+
req = build_request(:get_associated_ipv_6_pool_cidrs, params)
|
25840
|
+
req.send_request(options)
|
25841
|
+
end
|
25842
|
+
|
25685
25843
|
# Gets usage information about a Capacity Reservation. If the Capacity
|
25686
25844
|
# Reservation is shared, it shows usage information for the Capacity
|
25687
25845
|
# Reservation owner and each AWS account that is currently using the
|
@@ -30784,10 +30942,10 @@ module Aws::EC2
|
|
30784
30942
|
req.send_request(options)
|
30785
30943
|
end
|
30786
30944
|
|
30787
|
-
# Provisions an address range for use with your AWS
|
30788
|
-
# bring your own IP addresses (BYOIP) and creates a
|
30789
|
-
# address pool. After the address range is provisioned, it
|
30790
|
-
# be advertised using AdvertiseByoipCidr.
|
30945
|
+
# Provisions an IPv4 or IPv6 address range for use with your AWS
|
30946
|
+
# resources through bring your own IP addresses (BYOIP) and creates a
|
30947
|
+
# corresponding address pool. After the address range is provisioned, it
|
30948
|
+
# is ready to be advertised using AdvertiseByoipCidr.
|
30791
30949
|
#
|
30792
30950
|
# AWS verifies that you own the address range and are authorized to
|
30793
30951
|
# advertise it. You must ensure that the address range is registered to
|
@@ -30800,7 +30958,7 @@ module Aws::EC2
|
|
30800
30958
|
# call returns immediately, but the address range is not ready to use
|
30801
30959
|
# until its status changes from `pending-provision` to `provisioned`. To
|
30802
30960
|
# monitor the status of an address range, use DescribeByoipCidrs. To
|
30803
|
-
# allocate an Elastic IP address from your address pool, use
|
30961
|
+
# allocate an Elastic IP address from your IPv4 address pool, use
|
30804
30962
|
# AllocateAddress with either the specific address from the address pool
|
30805
30963
|
# or the ID of the address pool.
|
30806
30964
|
#
|
@@ -30809,8 +30967,9 @@ module Aws::EC2
|
|
30809
30967
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html
|
30810
30968
|
#
|
30811
30969
|
# @option params [required, String] :cidr
|
30812
|
-
# The public IPv4 address range, in CIDR notation. The most
|
30813
|
-
# prefix that you can specify is /24. The
|
30970
|
+
# The public IPv4 or IPv6 address range, in CIDR notation. The most
|
30971
|
+
# specific IPv4 prefix that you can specify is /24. The most specific
|
30972
|
+
# IPv6 prefix you can specify is /56. The address range cannot overlap
|
30814
30973
|
# with another address range that you've brought to this or another
|
30815
30974
|
# Region.
|
30816
30975
|
#
|
@@ -30818,6 +30977,12 @@ module Aws::EC2
|
|
30818
30977
|
# A signed document that proves that you are authorized to bring the
|
30819
30978
|
# specified IP address range to Amazon using BYOIP.
|
30820
30979
|
#
|
30980
|
+
# @option params [Boolean] :publicly_advertisable
|
30981
|
+
# (IPv6 only) Indicate whether the address range will be publicly
|
30982
|
+
# advertised to the internet.
|
30983
|
+
#
|
30984
|
+
# Default: true
|
30985
|
+
#
|
30821
30986
|
# @option params [String] :description
|
30822
30987
|
# A description for the address range and the address pool.
|
30823
30988
|
#
|
@@ -30839,6 +31004,7 @@ module Aws::EC2
|
|
30839
31004
|
# message: "String", # required
|
30840
31005
|
# signature: "String", # required
|
30841
31006
|
# },
|
31007
|
+
# publicly_advertisable: false,
|
30842
31008
|
# description: "String",
|
30843
31009
|
# dry_run: false,
|
30844
31010
|
# })
|
@@ -35654,8 +35820,8 @@ module Aws::EC2
|
|
35654
35820
|
req.send_request(options)
|
35655
35821
|
end
|
35656
35822
|
|
35657
|
-
# Stops advertising an
|
35658
|
-
#
|
35823
|
+
# Stops advertising an address range that is provisioned as an address
|
35824
|
+
# pool.
|
35659
35825
|
#
|
35660
35826
|
# You can perform this operation at most once every 10 seconds, even if
|
35661
35827
|
# you specify different address ranges each time.
|
@@ -35664,7 +35830,7 @@ module Aws::EC2
|
|
35664
35830
|
# stops routing to AWS because of BGP propagation delays.
|
35665
35831
|
#
|
35666
35832
|
# @option params [required, String] :cidr
|
35667
|
-
# The
|
35833
|
+
# The address range, in CIDR notation.
|
35668
35834
|
#
|
35669
35835
|
# @option params [Boolean] :dry_run
|
35670
35836
|
# Checks whether you have the required permissions for the action,
|
@@ -35712,7 +35878,7 @@ module Aws::EC2
|
|
35712
35878
|
params: params,
|
35713
35879
|
config: config)
|
35714
35880
|
context[:gem_name] = 'aws-sdk-ec2'
|
35715
|
-
context[:gem_version] = '1.
|
35881
|
+
context[:gem_version] = '1.136.0'
|
35716
35882
|
Seahorse::Client::Request.new(handlers, context)
|
35717
35883
|
end
|
35718
35884
|
|
@@ -565,6 +565,8 @@ module Aws::EC2
|
|
565
565
|
DescribeInternetGatewaysMaxResults = Shapes::IntegerShape.new(name: 'DescribeInternetGatewaysMaxResults')
|
566
566
|
DescribeInternetGatewaysRequest = Shapes::StructureShape.new(name: 'DescribeInternetGatewaysRequest')
|
567
567
|
DescribeInternetGatewaysResult = Shapes::StructureShape.new(name: 'DescribeInternetGatewaysResult')
|
568
|
+
DescribeIpv6PoolsRequest = Shapes::StructureShape.new(name: 'DescribeIpv6PoolsRequest')
|
569
|
+
DescribeIpv6PoolsResult = Shapes::StructureShape.new(name: 'DescribeIpv6PoolsResult')
|
568
570
|
DescribeKeyPairsRequest = Shapes::StructureShape.new(name: 'DescribeKeyPairsRequest')
|
569
571
|
DescribeKeyPairsResult = Shapes::StructureShape.new(name: 'DescribeKeyPairsResult')
|
570
572
|
DescribeLaunchTemplateVersionsRequest = Shapes::StructureShape.new(name: 'DescribeLaunchTemplateVersionsRequest')
|
@@ -907,6 +909,8 @@ module Aws::EC2
|
|
907
909
|
FpgaInfo = Shapes::StructureShape.new(name: 'FpgaInfo')
|
908
910
|
FreeTierEligibleFlag = Shapes::BooleanShape.new(name: 'FreeTierEligibleFlag')
|
909
911
|
GatewayType = Shapes::StringShape.new(name: 'GatewayType')
|
912
|
+
GetAssociatedIpv6PoolCidrsRequest = Shapes::StructureShape.new(name: 'GetAssociatedIpv6PoolCidrsRequest')
|
913
|
+
GetAssociatedIpv6PoolCidrsResult = Shapes::StructureShape.new(name: 'GetAssociatedIpv6PoolCidrsResult')
|
910
914
|
GetCapacityReservationUsageRequest = Shapes::StructureShape.new(name: 'GetCapacityReservationUsageRequest')
|
911
915
|
GetCapacityReservationUsageRequestMaxResults = Shapes::IntegerShape.new(name: 'GetCapacityReservationUsageRequestMaxResults')
|
912
916
|
GetCapacityReservationUsageResult = Shapes::StructureShape.new(name: 'GetCapacityReservationUsageResult')
|
@@ -1111,9 +1115,14 @@ module Aws::EC2
|
|
1111
1115
|
IpRanges = Shapes::ListShape.new(name: 'IpRanges')
|
1112
1116
|
Ipv6Address = Shapes::StringShape.new(name: 'Ipv6Address')
|
1113
1117
|
Ipv6AddressList = Shapes::ListShape.new(name: 'Ipv6AddressList')
|
1118
|
+
Ipv6CidrAssociation = Shapes::StructureShape.new(name: 'Ipv6CidrAssociation')
|
1119
|
+
Ipv6CidrAssociationSet = Shapes::ListShape.new(name: 'Ipv6CidrAssociationSet')
|
1114
1120
|
Ipv6CidrBlock = Shapes::StructureShape.new(name: 'Ipv6CidrBlock')
|
1115
1121
|
Ipv6CidrBlockSet = Shapes::ListShape.new(name: 'Ipv6CidrBlockSet')
|
1116
1122
|
Ipv6Flag = Shapes::BooleanShape.new(name: 'Ipv6Flag')
|
1123
|
+
Ipv6Pool = Shapes::StructureShape.new(name: 'Ipv6Pool')
|
1124
|
+
Ipv6PoolMaxResults = Shapes::IntegerShape.new(name: 'Ipv6PoolMaxResults')
|
1125
|
+
Ipv6PoolSet = Shapes::ListShape.new(name: 'Ipv6PoolSet')
|
1117
1126
|
Ipv6Range = Shapes::StructureShape.new(name: 'Ipv6Range')
|
1118
1127
|
Ipv6RangeList = Shapes::ListShape.new(name: 'Ipv6RangeList')
|
1119
1128
|
Ipv6SupportValue = Shapes::StringShape.new(name: 'Ipv6SupportValue')
|
@@ -1410,6 +1419,8 @@ module Aws::EC2
|
|
1410
1419
|
PlacementResponse = Shapes::StructureShape.new(name: 'PlacementResponse')
|
1411
1420
|
PlacementStrategy = Shapes::StringShape.new(name: 'PlacementStrategy')
|
1412
1421
|
PlatformValues = Shapes::StringShape.new(name: 'PlatformValues')
|
1422
|
+
PoolCidrBlock = Shapes::StructureShape.new(name: 'PoolCidrBlock')
|
1423
|
+
PoolCidrBlocksSet = Shapes::ListShape.new(name: 'PoolCidrBlocksSet')
|
1413
1424
|
PoolMaxResults = Shapes::IntegerShape.new(name: 'PoolMaxResults')
|
1414
1425
|
PortRange = Shapes::StructureShape.new(name: 'PortRange')
|
1415
1426
|
PrefixList = Shapes::StructureShape.new(name: 'PrefixList')
|
@@ -2154,6 +2165,8 @@ module Aws::EC2
|
|
2154
2165
|
AssociateVpcCidrBlockRequest.add_member(:amazon_provided_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: Boolean, location_name: "amazonProvidedIpv6CidrBlock"))
|
2155
2166
|
AssociateVpcCidrBlockRequest.add_member(:cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "CidrBlock"))
|
2156
2167
|
AssociateVpcCidrBlockRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
2168
|
+
AssociateVpcCidrBlockRequest.add_member(:ipv_6_pool, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6Pool"))
|
2169
|
+
AssociateVpcCidrBlockRequest.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6CidrBlock"))
|
2157
2170
|
AssociateVpcCidrBlockRequest.add_member(:ipv_6_cidr_block_network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6CidrBlockNetworkBorderGroup"))
|
2158
2171
|
AssociateVpcCidrBlockRequest.struct_class = Types::AssociateVpcCidrBlockRequest
|
2159
2172
|
|
@@ -3249,6 +3262,8 @@ module Aws::EC2
|
|
3249
3262
|
|
3250
3263
|
CreateVpcRequest.add_member(:cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CidrBlock"))
|
3251
3264
|
CreateVpcRequest.add_member(:amazon_provided_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: Boolean, location_name: "amazonProvidedIpv6CidrBlock"))
|
3265
|
+
CreateVpcRequest.add_member(:ipv_6_pool, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6Pool"))
|
3266
|
+
CreateVpcRequest.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6CidrBlock"))
|
3252
3267
|
CreateVpcRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3253
3268
|
CreateVpcRequest.add_member(:instance_tenancy, Shapes::ShapeRef.new(shape: Tenancy, location_name: "instanceTenancy"))
|
3254
3269
|
CreateVpcRequest.add_member(:ipv_6_cidr_block_network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6CidrBlockNetworkBorderGroup"))
|
@@ -4136,6 +4151,17 @@ module Aws::EC2
|
|
4136
4151
|
DescribeInternetGatewaysResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
4137
4152
|
DescribeInternetGatewaysResult.struct_class = Types::DescribeInternetGatewaysResult
|
4138
4153
|
|
4154
|
+
DescribeIpv6PoolsRequest.add_member(:pool_ids, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "PoolId"))
|
4155
|
+
DescribeIpv6PoolsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4156
|
+
DescribeIpv6PoolsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Ipv6PoolMaxResults, location_name: "MaxResults"))
|
4157
|
+
DescribeIpv6PoolsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4158
|
+
DescribeIpv6PoolsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
4159
|
+
DescribeIpv6PoolsRequest.struct_class = Types::DescribeIpv6PoolsRequest
|
4160
|
+
|
4161
|
+
DescribeIpv6PoolsResult.add_member(:ipv_6_pools, Shapes::ShapeRef.new(shape: Ipv6PoolSet, location_name: "ipv6PoolSet"))
|
4162
|
+
DescribeIpv6PoolsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
4163
|
+
DescribeIpv6PoolsResult.struct_class = Types::DescribeIpv6PoolsResult
|
4164
|
+
|
4139
4165
|
DescribeKeyPairsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
4140
4166
|
DescribeKeyPairsRequest.add_member(:key_names, Shapes::ShapeRef.new(shape: KeyNameStringList, location_name: "KeyName"))
|
4141
4167
|
DescribeKeyPairsRequest.add_member(:key_pair_ids, Shapes::ShapeRef.new(shape: KeyPairIdStringList, location_name: "KeyPairId"))
|
@@ -5471,6 +5497,16 @@ module Aws::EC2
|
|
5471
5497
|
FpgaInfo.add_member(:total_fpga_memory_in_mi_b, Shapes::ShapeRef.new(shape: totalFpgaMemory, location_name: "totalFpgaMemoryInMiB"))
|
5472
5498
|
FpgaInfo.struct_class = Types::FpgaInfo
|
5473
5499
|
|
5500
|
+
GetAssociatedIpv6PoolCidrsRequest.add_member(:pool_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "PoolId"))
|
5501
|
+
GetAssociatedIpv6PoolCidrsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5502
|
+
GetAssociatedIpv6PoolCidrsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Ipv6PoolMaxResults, location_name: "MaxResults"))
|
5503
|
+
GetAssociatedIpv6PoolCidrsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5504
|
+
GetAssociatedIpv6PoolCidrsRequest.struct_class = Types::GetAssociatedIpv6PoolCidrsRequest
|
5505
|
+
|
5506
|
+
GetAssociatedIpv6PoolCidrsResult.add_member(:ipv_6_cidr_associations, Shapes::ShapeRef.new(shape: Ipv6CidrAssociationSet, location_name: "ipv6CidrAssociationSet"))
|
5507
|
+
GetAssociatedIpv6PoolCidrsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
5508
|
+
GetAssociatedIpv6PoolCidrsResult.struct_class = Types::GetAssociatedIpv6PoolCidrsResult
|
5509
|
+
|
5474
5510
|
GetCapacityReservationUsageRequest.add_member(:capacity_reservation_id, Shapes::ShapeRef.new(shape: CapacityReservationId, required: true, location_name: "CapacityReservationId"))
|
5475
5511
|
GetCapacityReservationUsageRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
5476
5512
|
GetCapacityReservationUsageRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetCapacityReservationUsageRequestMaxResults, location_name: "MaxResults"))
|
@@ -6328,11 +6364,25 @@ module Aws::EC2
|
|
6328
6364
|
|
6329
6365
|
Ipv6AddressList.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
6330
6366
|
|
6367
|
+
Ipv6CidrAssociation.add_member(:ipv_6_cidr, Shapes::ShapeRef.new(shape: String, location_name: "ipv6Cidr"))
|
6368
|
+
Ipv6CidrAssociation.add_member(:associated_resource, Shapes::ShapeRef.new(shape: String, location_name: "associatedResource"))
|
6369
|
+
Ipv6CidrAssociation.struct_class = Types::Ipv6CidrAssociation
|
6370
|
+
|
6371
|
+
Ipv6CidrAssociationSet.member = Shapes::ShapeRef.new(shape: Ipv6CidrAssociation, location_name: "item")
|
6372
|
+
|
6331
6373
|
Ipv6CidrBlock.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "ipv6CidrBlock"))
|
6332
6374
|
Ipv6CidrBlock.struct_class = Types::Ipv6CidrBlock
|
6333
6375
|
|
6334
6376
|
Ipv6CidrBlockSet.member = Shapes::ShapeRef.new(shape: Ipv6CidrBlock, location_name: "item")
|
6335
6377
|
|
6378
|
+
Ipv6Pool.add_member(:pool_id, Shapes::ShapeRef.new(shape: String, location_name: "poolId"))
|
6379
|
+
Ipv6Pool.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
6380
|
+
Ipv6Pool.add_member(:pool_cidr_blocks, Shapes::ShapeRef.new(shape: PoolCidrBlocksSet, location_name: "poolCidrBlockSet"))
|
6381
|
+
Ipv6Pool.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
6382
|
+
Ipv6Pool.struct_class = Types::Ipv6Pool
|
6383
|
+
|
6384
|
+
Ipv6PoolSet.member = Shapes::ShapeRef.new(shape: Ipv6Pool, location_name: "item")
|
6385
|
+
|
6336
6386
|
Ipv6Range.add_member(:cidr_ipv_6, Shapes::ShapeRef.new(shape: String, location_name: "cidrIpv6"))
|
6337
6387
|
Ipv6Range.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
6338
6388
|
Ipv6Range.struct_class = Types::Ipv6Range
|
@@ -7441,6 +7491,11 @@ module Aws::EC2
|
|
7441
7491
|
PlacementResponse.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
|
7442
7492
|
PlacementResponse.struct_class = Types::PlacementResponse
|
7443
7493
|
|
7494
|
+
PoolCidrBlock.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "poolCidrBlock"))
|
7495
|
+
PoolCidrBlock.struct_class = Types::PoolCidrBlock
|
7496
|
+
|
7497
|
+
PoolCidrBlocksSet.member = Shapes::ShapeRef.new(shape: PoolCidrBlock, location_name: "item")
|
7498
|
+
|
7444
7499
|
PortRange.add_member(:from, Shapes::ShapeRef.new(shape: Integer, location_name: "from"))
|
7445
7500
|
PortRange.add_member(:to, Shapes::ShapeRef.new(shape: Integer, location_name: "to"))
|
7446
7501
|
PortRange.struct_class = Types::PortRange
|
@@ -7524,6 +7579,7 @@ module Aws::EC2
|
|
7524
7579
|
|
7525
7580
|
ProvisionByoipCidrRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
7526
7581
|
ProvisionByoipCidrRequest.add_member(:cidr_authorization_context, Shapes::ShapeRef.new(shape: CidrAuthorizationContext, location_name: "CidrAuthorizationContext"))
|
7582
|
+
ProvisionByoipCidrRequest.add_member(:publicly_advertisable, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAdvertisable"))
|
7527
7583
|
ProvisionByoipCidrRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
7528
7584
|
ProvisionByoipCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
7529
7585
|
ProvisionByoipCidrRequest.struct_class = Types::ProvisionByoipCidrRequest
|
@@ -9390,6 +9446,7 @@ module Aws::EC2
|
|
9390
9446
|
VpcIpv6CidrBlockAssociation.add_member(:association_id, Shapes::ShapeRef.new(shape: String, location_name: "associationId"))
|
9391
9447
|
VpcIpv6CidrBlockAssociation.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "ipv6CidrBlock"))
|
9392
9448
|
VpcIpv6CidrBlockAssociation.add_member(:ipv_6_cidr_block_state, Shapes::ShapeRef.new(shape: VpcCidrBlockState, location_name: "ipv6CidrBlockState"))
|
9449
|
+
VpcIpv6CidrBlockAssociation.add_member(:ipv_6_pool, Shapes::ShapeRef.new(shape: String, location_name: "ipv6Pool"))
|
9393
9450
|
VpcIpv6CidrBlockAssociation.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "networkBorderGroup"))
|
9394
9451
|
VpcIpv6CidrBlockAssociation.struct_class = Types::VpcIpv6CidrBlockAssociation
|
9395
9452
|
|
@@ -11191,6 +11248,20 @@ module Aws::EC2
|
|
11191
11248
|
)
|
11192
11249
|
end)
|
11193
11250
|
|
11251
|
+
api.add_operation(:describe_ipv_6_pools, Seahorse::Model::Operation.new.tap do |o|
|
11252
|
+
o.name = "DescribeIpv6Pools"
|
11253
|
+
o.http_method = "POST"
|
11254
|
+
o.http_request_uri = "/"
|
11255
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeIpv6PoolsRequest)
|
11256
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeIpv6PoolsResult)
|
11257
|
+
o[:pager] = Aws::Pager.new(
|
11258
|
+
limit_key: "max_results",
|
11259
|
+
tokens: {
|
11260
|
+
"next_token" => "next_token"
|
11261
|
+
}
|
11262
|
+
)
|
11263
|
+
end)
|
11264
|
+
|
11194
11265
|
api.add_operation(:describe_key_pairs, Seahorse::Model::Operation.new.tap do |o|
|
11195
11266
|
o.name = "DescribeKeyPairs"
|
11196
11267
|
o.http_method = "POST"
|
@@ -12204,6 +12275,20 @@ module Aws::EC2
|
|
12204
12275
|
o.output = Shapes::ShapeRef.new(shape: ExportTransitGatewayRoutesResult)
|
12205
12276
|
end)
|
12206
12277
|
|
12278
|
+
api.add_operation(:get_associated_ipv_6_pool_cidrs, Seahorse::Model::Operation.new.tap do |o|
|
12279
|
+
o.name = "GetAssociatedIpv6PoolCidrs"
|
12280
|
+
o.http_method = "POST"
|
12281
|
+
o.http_request_uri = "/"
|
12282
|
+
o.input = Shapes::ShapeRef.new(shape: GetAssociatedIpv6PoolCidrsRequest)
|
12283
|
+
o.output = Shapes::ShapeRef.new(shape: GetAssociatedIpv6PoolCidrsResult)
|
12284
|
+
o[:pager] = Aws::Pager.new(
|
12285
|
+
limit_key: "max_results",
|
12286
|
+
tokens: {
|
12287
|
+
"next_token" => "next_token"
|
12288
|
+
}
|
12289
|
+
)
|
12290
|
+
end)
|
12291
|
+
|
12207
12292
|
api.add_operation(:get_capacity_reservation_usage, Seahorse::Model::Operation.new.tap do |o|
|
12208
12293
|
o.name = "GetCapacityReservationUsage"
|
12209
12294
|
o.http_method = "POST"
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -1037,6 +1037,8 @@ module Aws::EC2
|
|
1037
1037
|
# vpc = ec2.create_vpc({
|
1038
1038
|
# cidr_block: "String", # required
|
1039
1039
|
# amazon_provided_ipv_6_cidr_block: false,
|
1040
|
+
# ipv_6_pool: "String",
|
1041
|
+
# ipv_6_cidr_block: "String",
|
1040
1042
|
# dry_run: false,
|
1041
1043
|
# instance_tenancy: "default", # accepts default, dedicated, host
|
1042
1044
|
# ipv_6_cidr_block_network_border_group: "String",
|
@@ -1049,6 +1051,14 @@ module Aws::EC2
|
|
1049
1051
|
# Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
|
1050
1052
|
# for the VPC. You cannot specify the range of IP addresses, or the size
|
1051
1053
|
# of the CIDR block.
|
1054
|
+
# @option options [String] :ipv_6_pool
|
1055
|
+
# The ID of an IPv6 address pool from which to allocate the IPv6 CIDR
|
1056
|
+
# block.
|
1057
|
+
# @option options [String] :ipv_6_cidr_block
|
1058
|
+
# The IPv6 CIDR block from the IPv6 address pool. You must also specify
|
1059
|
+
# `Ipv6Pool` in the request.
|
1060
|
+
#
|
1061
|
+
# To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
|
1052
1062
|
# @option options [Boolean] :dry_run
|
1053
1063
|
# Checks whether you have the required permissions for the action,
|
1054
1064
|
# without actually making the request, and provides an error response.
|
@@ -3193,6 +3203,9 @@ module Aws::EC2
|
|
3193
3203
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
3194
3204
|
# associated with the VPC.
|
3195
3205
|
#
|
3206
|
+
# * `ipv6-cidr-block-association.ipv6-pool` - The ID of the IPv6 address
|
3207
|
+
# pool from which the IPv6 CIDR block is allocated.
|
3208
|
+
#
|
3196
3209
|
# * `ipv6-cidr-block-association.association-id` - The association ID
|
3197
3210
|
# for an IPv6 CIDR block associated with the VPC.
|
3198
3211
|
#
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -370,9 +370,9 @@ module Aws::EC2
|
|
370
370
|
# }
|
371
371
|
#
|
372
372
|
# @!attribute [rw] cidr
|
373
|
-
# The
|
374
|
-
#
|
375
|
-
#
|
373
|
+
# The address range, in CIDR notation. This must be the exact range
|
374
|
+
# that you provisioned. You can't advertise only a portion of the
|
375
|
+
# provisioned range.
|
376
376
|
# @return [String]
|
377
377
|
#
|
378
378
|
# @!attribute [rw] dry_run
|
@@ -1263,6 +1263,8 @@ module Aws::EC2
|
|
1263
1263
|
# amazon_provided_ipv_6_cidr_block: false,
|
1264
1264
|
# cidr_block: "String",
|
1265
1265
|
# vpc_id: "VpcId", # required
|
1266
|
+
# ipv_6_pool: "String",
|
1267
|
+
# ipv_6_cidr_block: "String",
|
1266
1268
|
# ipv_6_cidr_block_network_border_group: "String",
|
1267
1269
|
# }
|
1268
1270
|
#
|
@@ -1280,6 +1282,19 @@ module Aws::EC2
|
|
1280
1282
|
# The ID of the VPC.
|
1281
1283
|
# @return [String]
|
1282
1284
|
#
|
1285
|
+
# @!attribute [rw] ipv_6_pool
|
1286
|
+
# The ID of an IPv6 address pool from which to allocate the IPv6 CIDR
|
1287
|
+
# block.
|
1288
|
+
# @return [String]
|
1289
|
+
#
|
1290
|
+
# @!attribute [rw] ipv_6_cidr_block
|
1291
|
+
# An IPv6 CIDR block from the IPv6 address pool. You must also specify
|
1292
|
+
# `Ipv6Pool` in the request.
|
1293
|
+
#
|
1294
|
+
# To let Amazon choose the IPv6 CIDR block for you, omit this
|
1295
|
+
# parameter.
|
1296
|
+
# @return [String]
|
1297
|
+
#
|
1283
1298
|
# @!attribute [rw] ipv_6_cidr_block_network_border_group
|
1284
1299
|
# The name of the location from which we advertise the IPV6 CIDR
|
1285
1300
|
# block. Use this parameter to limit the CiDR block to this location.
|
@@ -1297,6 +1312,8 @@ module Aws::EC2
|
|
1297
1312
|
:amazon_provided_ipv_6_cidr_block,
|
1298
1313
|
:cidr_block,
|
1299
1314
|
:vpc_id,
|
1315
|
+
:ipv_6_pool,
|
1316
|
+
:ipv_6_cidr_block,
|
1300
1317
|
:ipv_6_cidr_block_network_border_group)
|
1301
1318
|
include Aws::Structure
|
1302
1319
|
end
|
@@ -2320,7 +2337,7 @@ module Aws::EC2
|
|
2320
2337
|
# your AWS resources through bring your own IP addresses (BYOIP).
|
2321
2338
|
#
|
2322
2339
|
# @!attribute [rw] cidr
|
2323
|
-
# The
|
2340
|
+
# The address range, in CIDR notation.
|
2324
2341
|
# @return [String]
|
2325
2342
|
#
|
2326
2343
|
# @!attribute [rw] description
|
@@ -8741,6 +8758,8 @@ module Aws::EC2
|
|
8741
8758
|
# {
|
8742
8759
|
# cidr_block: "String", # required
|
8743
8760
|
# amazon_provided_ipv_6_cidr_block: false,
|
8761
|
+
# ipv_6_pool: "String",
|
8762
|
+
# ipv_6_cidr_block: "String",
|
8744
8763
|
# dry_run: false,
|
8745
8764
|
# instance_tenancy: "default", # accepts default, dedicated, host
|
8746
8765
|
# ipv_6_cidr_block_network_border_group: "String",
|
@@ -8757,6 +8776,19 @@ module Aws::EC2
|
|
8757
8776
|
# size of the CIDR block.
|
8758
8777
|
# @return [Boolean]
|
8759
8778
|
#
|
8779
|
+
# @!attribute [rw] ipv_6_pool
|
8780
|
+
# The ID of an IPv6 address pool from which to allocate the IPv6 CIDR
|
8781
|
+
# block.
|
8782
|
+
# @return [String]
|
8783
|
+
#
|
8784
|
+
# @!attribute [rw] ipv_6_cidr_block
|
8785
|
+
# The IPv6 CIDR block from the IPv6 address pool. You must also
|
8786
|
+
# specify `Ipv6Pool` in the request.
|
8787
|
+
#
|
8788
|
+
# To let Amazon choose the IPv6 CIDR block for you, omit this
|
8789
|
+
# parameter.
|
8790
|
+
# @return [String]
|
8791
|
+
#
|
8760
8792
|
# @!attribute [rw] dry_run
|
8761
8793
|
# Checks whether you have the required permissions for the action,
|
8762
8794
|
# without actually making the request, and provides an error response.
|
@@ -8791,6 +8823,8 @@ module Aws::EC2
|
|
8791
8823
|
class CreateVpcRequest < Struct.new(
|
8792
8824
|
:cidr_block,
|
8793
8825
|
:amazon_provided_ipv_6_cidr_block,
|
8826
|
+
:ipv_6_pool,
|
8827
|
+
:ipv_6_cidr_block,
|
8794
8828
|
:dry_run,
|
8795
8829
|
:instance_tenancy,
|
8796
8830
|
:ipv_6_cidr_block_network_border_group)
|
@@ -10952,9 +10986,8 @@ module Aws::EC2
|
|
10952
10986
|
# }
|
10953
10987
|
#
|
10954
10988
|
# @!attribute [rw] cidr
|
10955
|
-
# The
|
10956
|
-
#
|
10957
|
-
# range.
|
10989
|
+
# The address range, in CIDR notation. The prefix must be the same
|
10990
|
+
# prefix that you specified when you provisioned the address range.
|
10958
10991
|
# @return [String]
|
10959
10992
|
#
|
10960
10993
|
# @!attribute [rw] dry_run
|
@@ -14986,6 +15019,85 @@ module Aws::EC2
|
|
14986
15019
|
include Aws::Structure
|
14987
15020
|
end
|
14988
15021
|
|
15022
|
+
# @note When making an API call, you may pass DescribeIpv6PoolsRequest
|
15023
|
+
# data as a hash:
|
15024
|
+
#
|
15025
|
+
# {
|
15026
|
+
# pool_ids: ["String"],
|
15027
|
+
# next_token: "NextToken",
|
15028
|
+
# max_results: 1,
|
15029
|
+
# dry_run: false,
|
15030
|
+
# filters: [
|
15031
|
+
# {
|
15032
|
+
# name: "String",
|
15033
|
+
# values: ["String"],
|
15034
|
+
# },
|
15035
|
+
# ],
|
15036
|
+
# }
|
15037
|
+
#
|
15038
|
+
# @!attribute [rw] pool_ids
|
15039
|
+
# The IDs of the IPv6 address pools.
|
15040
|
+
# @return [Array<String>]
|
15041
|
+
#
|
15042
|
+
# @!attribute [rw] next_token
|
15043
|
+
# The token for the next page of results.
|
15044
|
+
# @return [String]
|
15045
|
+
#
|
15046
|
+
# @!attribute [rw] max_results
|
15047
|
+
# The maximum number of results to return with a single call. To
|
15048
|
+
# retrieve the remaining results, make another call with the returned
|
15049
|
+
# `nextToken` value.
|
15050
|
+
# @return [Integer]
|
15051
|
+
#
|
15052
|
+
# @!attribute [rw] dry_run
|
15053
|
+
# Checks whether you have the required permissions for the action,
|
15054
|
+
# without actually making the request, and provides an error response.
|
15055
|
+
# If you have the required permissions, the error response is
|
15056
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
15057
|
+
# @return [Boolean]
|
15058
|
+
#
|
15059
|
+
# @!attribute [rw] filters
|
15060
|
+
# One or more filters.
|
15061
|
+
#
|
15062
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned
|
15063
|
+
# to the resource. Use the tag key in the filter name and the tag
|
15064
|
+
# value as the filter value. For example, to find all resources that
|
15065
|
+
# have a tag with the key `Owner` and the value `TeamA`, specify
|
15066
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
15067
|
+
#
|
15068
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
15069
|
+
# filter to find all resources assigned a tag with a specific key,
|
15070
|
+
# regardless of the tag value.
|
15071
|
+
# @return [Array<Types::Filter>]
|
15072
|
+
#
|
15073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpv6PoolsRequest AWS API Documentation
|
15074
|
+
#
|
15075
|
+
class DescribeIpv6PoolsRequest < Struct.new(
|
15076
|
+
:pool_ids,
|
15077
|
+
:next_token,
|
15078
|
+
:max_results,
|
15079
|
+
:dry_run,
|
15080
|
+
:filters)
|
15081
|
+
include Aws::Structure
|
15082
|
+
end
|
15083
|
+
|
15084
|
+
# @!attribute [rw] ipv_6_pools
|
15085
|
+
# Information about the IPv6 address pools.
|
15086
|
+
# @return [Array<Types::Ipv6Pool>]
|
15087
|
+
#
|
15088
|
+
# @!attribute [rw] next_token
|
15089
|
+
# The token to use to retrieve the next page of results. This value is
|
15090
|
+
# `null` when there are no more results to return.
|
15091
|
+
# @return [String]
|
15092
|
+
#
|
15093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpv6PoolsResult AWS API Documentation
|
15094
|
+
#
|
15095
|
+
class DescribeIpv6PoolsResult < Struct.new(
|
15096
|
+
:ipv_6_pools,
|
15097
|
+
:next_token)
|
15098
|
+
include Aws::Structure
|
15099
|
+
end
|
15100
|
+
|
14989
15101
|
# @note When making an API call, you may pass DescribeKeyPairsRequest
|
14990
15102
|
# data as a hash:
|
14991
15103
|
#
|
@@ -20618,6 +20730,9 @@ module Aws::EC2
|
|
20618
20730
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
20619
20731
|
# associated with the VPC.
|
20620
20732
|
#
|
20733
|
+
# * `ipv6-cidr-block-association.ipv6-pool` - The ID of the IPv6
|
20734
|
+
# address pool from which the IPv6 CIDR block is allocated.
|
20735
|
+
#
|
20621
20736
|
# * `ipv6-cidr-block-association.association-id` - The association ID
|
20622
20737
|
# for an IPv6 CIDR block associated with the VPC.
|
20623
20738
|
#
|
@@ -24194,6 +24309,64 @@ module Aws::EC2
|
|
24194
24309
|
include Aws::Structure
|
24195
24310
|
end
|
24196
24311
|
|
24312
|
+
# @note When making an API call, you may pass GetAssociatedIpv6PoolCidrsRequest
|
24313
|
+
# data as a hash:
|
24314
|
+
#
|
24315
|
+
# {
|
24316
|
+
# pool_id: "String", # required
|
24317
|
+
# next_token: "NextToken",
|
24318
|
+
# max_results: 1,
|
24319
|
+
# dry_run: false,
|
24320
|
+
# }
|
24321
|
+
#
|
24322
|
+
# @!attribute [rw] pool_id
|
24323
|
+
# The ID of the IPv6 address pool.
|
24324
|
+
# @return [String]
|
24325
|
+
#
|
24326
|
+
# @!attribute [rw] next_token
|
24327
|
+
# The token for the next page of results.
|
24328
|
+
# @return [String]
|
24329
|
+
#
|
24330
|
+
# @!attribute [rw] max_results
|
24331
|
+
# The maximum number of results to return with a single call. To
|
24332
|
+
# retrieve the remaining results, make another call with the returned
|
24333
|
+
# `nextToken` value.
|
24334
|
+
# @return [Integer]
|
24335
|
+
#
|
24336
|
+
# @!attribute [rw] dry_run
|
24337
|
+
# Checks whether you have the required permissions for the action,
|
24338
|
+
# without actually making the request, and provides an error response.
|
24339
|
+
# If you have the required permissions, the error response is
|
24340
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
24341
|
+
# @return [Boolean]
|
24342
|
+
#
|
24343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetAssociatedIpv6PoolCidrsRequest AWS API Documentation
|
24344
|
+
#
|
24345
|
+
class GetAssociatedIpv6PoolCidrsRequest < Struct.new(
|
24346
|
+
:pool_id,
|
24347
|
+
:next_token,
|
24348
|
+
:max_results,
|
24349
|
+
:dry_run)
|
24350
|
+
include Aws::Structure
|
24351
|
+
end
|
24352
|
+
|
24353
|
+
# @!attribute [rw] ipv_6_cidr_associations
|
24354
|
+
# Information about the IPv6 CIDR block associations.
|
24355
|
+
# @return [Array<Types::Ipv6CidrAssociation>]
|
24356
|
+
#
|
24357
|
+
# @!attribute [rw] next_token
|
24358
|
+
# The token to use to retrieve the next page of results. This value is
|
24359
|
+
# `null` when there are no more results to return.
|
24360
|
+
# @return [String]
|
24361
|
+
#
|
24362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetAssociatedIpv6PoolCidrsResult AWS API Documentation
|
24363
|
+
#
|
24364
|
+
class GetAssociatedIpv6PoolCidrsResult < Struct.new(
|
24365
|
+
:ipv_6_cidr_associations,
|
24366
|
+
:next_token)
|
24367
|
+
include Aws::Structure
|
24368
|
+
end
|
24369
|
+
|
24197
24370
|
# @note When making an API call, you may pass GetCapacityReservationUsageRequest
|
24198
24371
|
# data as a hash:
|
24199
24372
|
#
|
@@ -28796,6 +28969,24 @@ module Aws::EC2
|
|
28796
28969
|
include Aws::Structure
|
28797
28970
|
end
|
28798
28971
|
|
28972
|
+
# Describes an IPv6 CIDR block association.
|
28973
|
+
#
|
28974
|
+
# @!attribute [rw] ipv_6_cidr
|
28975
|
+
# The IPv6 CIDR block.
|
28976
|
+
# @return [String]
|
28977
|
+
#
|
28978
|
+
# @!attribute [rw] associated_resource
|
28979
|
+
# The resource that's associated with the IPv6 CIDR block.
|
28980
|
+
# @return [String]
|
28981
|
+
#
|
28982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6CidrAssociation AWS API Documentation
|
28983
|
+
#
|
28984
|
+
class Ipv6CidrAssociation < Struct.new(
|
28985
|
+
:ipv_6_cidr,
|
28986
|
+
:associated_resource)
|
28987
|
+
include Aws::Structure
|
28988
|
+
end
|
28989
|
+
|
28799
28990
|
# Describes an IPv6 CIDR block.
|
28800
28991
|
#
|
28801
28992
|
# @!attribute [rw] ipv_6_cidr_block
|
@@ -28809,6 +29000,34 @@ module Aws::EC2
|
|
28809
29000
|
include Aws::Structure
|
28810
29001
|
end
|
28811
29002
|
|
29003
|
+
# Describes an IPv6 address pool.
|
29004
|
+
#
|
29005
|
+
# @!attribute [rw] pool_id
|
29006
|
+
# The ID of the address pool.
|
29007
|
+
# @return [String]
|
29008
|
+
#
|
29009
|
+
# @!attribute [rw] description
|
29010
|
+
# The description for the address pool.
|
29011
|
+
# @return [String]
|
29012
|
+
#
|
29013
|
+
# @!attribute [rw] pool_cidr_blocks
|
29014
|
+
# The CIDR blocks for the address pool.
|
29015
|
+
# @return [Array<Types::PoolCidrBlock>]
|
29016
|
+
#
|
29017
|
+
# @!attribute [rw] tags
|
29018
|
+
# Any tags for the address pool.
|
29019
|
+
# @return [Array<Types::Tag>]
|
29020
|
+
#
|
29021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6Pool AWS API Documentation
|
29022
|
+
#
|
29023
|
+
class Ipv6Pool < Struct.new(
|
29024
|
+
:pool_id,
|
29025
|
+
:description,
|
29026
|
+
:pool_cidr_blocks,
|
29027
|
+
:tags)
|
29028
|
+
include Aws::Structure
|
29029
|
+
end
|
29030
|
+
|
28812
29031
|
# \[EC2-VPC only\] Describes an IPv6 range.
|
28813
29032
|
#
|
28814
29033
|
# @note When making an API call, you may pass Ipv6Range
|
@@ -35147,6 +35366,19 @@ module Aws::EC2
|
|
35147
35366
|
include Aws::Structure
|
35148
35367
|
end
|
35149
35368
|
|
35369
|
+
# Describes a CIDR block for an address pool.
|
35370
|
+
#
|
35371
|
+
# @!attribute [rw] cidr
|
35372
|
+
# The CIDR block.
|
35373
|
+
# @return [String]
|
35374
|
+
#
|
35375
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PoolCidrBlock AWS API Documentation
|
35376
|
+
#
|
35377
|
+
class PoolCidrBlock < Struct.new(
|
35378
|
+
:cidr)
|
35379
|
+
include Aws::Structure
|
35380
|
+
end
|
35381
|
+
|
35150
35382
|
# Describes a range of ports.
|
35151
35383
|
#
|
35152
35384
|
# @note When making an API call, you may pass PortRange
|
@@ -35463,13 +35695,15 @@ module Aws::EC2
|
|
35463
35695
|
# message: "String", # required
|
35464
35696
|
# signature: "String", # required
|
35465
35697
|
# },
|
35698
|
+
# publicly_advertisable: false,
|
35466
35699
|
# description: "String",
|
35467
35700
|
# dry_run: false,
|
35468
35701
|
# }
|
35469
35702
|
#
|
35470
35703
|
# @!attribute [rw] cidr
|
35471
|
-
# The public IPv4 address range, in CIDR notation. The most
|
35472
|
-
# prefix that you can specify is /24. The
|
35704
|
+
# The public IPv4 or IPv6 address range, in CIDR notation. The most
|
35705
|
+
# specific IPv4 prefix that you can specify is /24. The most specific
|
35706
|
+
# IPv6 prefix you can specify is /56. The address range cannot overlap
|
35473
35707
|
# with another address range that you've brought to this or another
|
35474
35708
|
# Region.
|
35475
35709
|
# @return [String]
|
@@ -35479,6 +35713,13 @@ module Aws::EC2
|
|
35479
35713
|
# specified IP address range to Amazon using BYOIP.
|
35480
35714
|
# @return [Types::CidrAuthorizationContext]
|
35481
35715
|
#
|
35716
|
+
# @!attribute [rw] publicly_advertisable
|
35717
|
+
# (IPv6 only) Indicate whether the address range will be publicly
|
35718
|
+
# advertised to the internet.
|
35719
|
+
#
|
35720
|
+
# Default: true
|
35721
|
+
# @return [Boolean]
|
35722
|
+
#
|
35482
35723
|
# @!attribute [rw] description
|
35483
35724
|
# A description for the address range and the address pool.
|
35484
35725
|
# @return [String]
|
@@ -35495,13 +35736,14 @@ module Aws::EC2
|
|
35495
35736
|
class ProvisionByoipCidrRequest < Struct.new(
|
35496
35737
|
:cidr,
|
35497
35738
|
:cidr_authorization_context,
|
35739
|
+
:publicly_advertisable,
|
35498
35740
|
:description,
|
35499
35741
|
:dry_run)
|
35500
35742
|
include Aws::Structure
|
35501
35743
|
end
|
35502
35744
|
|
35503
35745
|
# @!attribute [rw] byoip_cidr
|
35504
|
-
# Information about the address
|
35746
|
+
# Information about the address range.
|
35505
35747
|
# @return [Types::ByoipCidr]
|
35506
35748
|
#
|
35507
35749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionByoipCidrResult AWS API Documentation
|
@@ -35580,10 +35822,10 @@ module Aws::EC2
|
|
35580
35822
|
include Aws::Structure
|
35581
35823
|
end
|
35582
35824
|
|
35583
|
-
# Describes an address pool.
|
35825
|
+
# Describes an IPv4 address pool.
|
35584
35826
|
#
|
35585
35827
|
# @!attribute [rw] pool_id
|
35586
|
-
# The ID of the
|
35828
|
+
# The ID of the address pool.
|
35587
35829
|
# @return [String]
|
35588
35830
|
#
|
35589
35831
|
# @!attribute [rw] description
|
@@ -46426,6 +46668,11 @@ module Aws::EC2
|
|
46426
46668
|
# Information about the state of the CIDR block.
|
46427
46669
|
# @return [Types::VpcCidrBlockState]
|
46428
46670
|
#
|
46671
|
+
# @!attribute [rw] ipv_6_pool
|
46672
|
+
# The ID of the IPv6 address pool from which the IPv6 CIDR block is
|
46673
|
+
# allocated.
|
46674
|
+
# @return [String]
|
46675
|
+
#
|
46429
46676
|
# @!attribute [rw] network_border_group
|
46430
46677
|
# The name of the location from which we advertise the IPV6 CIDR
|
46431
46678
|
# block.
|
@@ -46437,6 +46684,7 @@ module Aws::EC2
|
|
46437
46684
|
:association_id,
|
46438
46685
|
:ipv_6_cidr_block,
|
46439
46686
|
:ipv_6_cidr_block_state,
|
46687
|
+
:ipv_6_pool,
|
46440
46688
|
:network_border_group)
|
46441
46689
|
include Aws::Structure
|
46442
46690
|
end
|
@@ -47040,7 +47288,7 @@ module Aws::EC2
|
|
47040
47288
|
# }
|
47041
47289
|
#
|
47042
47290
|
# @!attribute [rw] cidr
|
47043
|
-
# The
|
47291
|
+
# The address range, in CIDR notation.
|
47044
47292
|
# @return [String]
|
47045
47293
|
#
|
47046
47294
|
# @!attribute [rw] dry_run
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.136.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-01-
|
11
|
+
date: 2020-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|