aws-sdk-ec2 1.467.0 → 1.468.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +38 -2
- data/lib/aws-sdk-ec2/client_api.rb +11 -0
- data/lib/aws-sdk-ec2/types.rb +63 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +8 -0
- 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: d164038c3e50954e8d70c7994b51bdacdc26f1d1fad3bfe99d69cffd7adc8e08
|
4
|
+
data.tar.gz: ed8a5efcd26a3019e9d63b974ce3fb03fdb349ff094f24c34a499034e38fdd19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c96c4391fb5d2c28afb1ea083e3632c91179b7dc0d452f679a8e93c30a82047658b0337f1ca039153a2fb2804753c41c79911231cb64522c8131855a835c84e
|
7
|
+
data.tar.gz: dc7dbb5653217b35ebe050519aca650804cd89dedba4b9d56ea1457e6d095e13d9c4c6381ab03237a323b3e818bc5a926d1befadfcc224496cbb33573d3645dc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.468.0 (2024-08-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Launch of private IPv6 addressing for VPCs and Subnets. VPC IPAM supports the planning and monitoring of private IPv6 usage.
|
8
|
+
|
4
9
|
1.467.0 (2024-07-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.468.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -2386,6 +2386,8 @@ module Aws::EC2
|
|
2386
2386
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block #=> String
|
2387
2387
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
2388
2388
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
|
2389
|
+
# resp.ipv_6_cidr_block_association.ipv_6_address_attribute #=> String, one of "public", "private"
|
2390
|
+
# resp.ipv_6_cidr_block_association.ip_source #=> String, one of "amazon", "byoip", "none"
|
2389
2391
|
# resp.subnet_id #=> String
|
2390
2392
|
#
|
2391
2393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateSubnetCidrBlock AWS API Documentation
|
@@ -2742,6 +2744,8 @@ module Aws::EC2
|
|
2742
2744
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
|
2743
2745
|
# resp.ipv_6_cidr_block_association.network_border_group #=> String
|
2744
2746
|
# resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
|
2747
|
+
# resp.ipv_6_cidr_block_association.ipv_6_address_attribute #=> String, one of "public", "private"
|
2748
|
+
# resp.ipv_6_cidr_block_association.ip_source #=> String, one of "amazon", "byoip", "none"
|
2745
2749
|
# resp.cidr_block_association.association_id #=> String
|
2746
2750
|
# resp.cidr_block_association.cidr_block #=> String
|
2747
2751
|
# resp.cidr_block_association.cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
@@ -5964,6 +5968,8 @@ module Aws::EC2
|
|
5964
5968
|
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
5965
5969
|
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
5966
5970
|
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
5971
|
+
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_address_attribute #=> String, one of "public", "private"
|
5972
|
+
# resp.subnet.ipv_6_cidr_block_association_set[0].ip_source #=> String, one of "amazon", "byoip", "none"
|
5967
5973
|
# resp.subnet.tags #=> Array
|
5968
5974
|
# resp.subnet.tags[0].key #=> String
|
5969
5975
|
# resp.subnet.tags[0].value #=> String
|
@@ -6028,6 +6034,8 @@ module Aws::EC2
|
|
6028
6034
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
6029
6035
|
# resp.vpc.ipv_6_cidr_block_association_set[0].network_border_group #=> String
|
6030
6036
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
|
6037
|
+
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_address_attribute #=> String, one of "public", "private"
|
6038
|
+
# resp.vpc.ipv_6_cidr_block_association_set[0].ip_source #=> String, one of "amazon", "byoip", "none"
|
6031
6039
|
# resp.vpc.cidr_block_association_set #=> Array
|
6032
6040
|
# resp.vpc.cidr_block_association_set[0].association_id #=> String
|
6033
6041
|
# resp.vpc.cidr_block_association_set[0].cidr_block #=> String
|
@@ -7592,6 +7600,10 @@ module Aws::EC2
|
|
7592
7600
|
#
|
7593
7601
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
7594
7602
|
#
|
7603
|
+
# @option params [Boolean] :enable_private_gua
|
7604
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
7605
|
+
# addresses. This option is disabled by default.
|
7606
|
+
#
|
7595
7607
|
# @return [Types::CreateIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7596
7608
|
#
|
7597
7609
|
# * {Types::CreateIpamResult#ipam #ipam} => Types::Ipam
|
@@ -7619,6 +7631,7 @@ module Aws::EC2
|
|
7619
7631
|
# ],
|
7620
7632
|
# client_token: "String",
|
7621
7633
|
# tier: "free", # accepts free, advanced
|
7634
|
+
# enable_private_gua: false,
|
7622
7635
|
# })
|
7623
7636
|
#
|
7624
7637
|
# @example Response structure
|
@@ -7642,6 +7655,7 @@ module Aws::EC2
|
|
7642
7655
|
# resp.ipam.resource_discovery_association_count #=> Integer
|
7643
7656
|
# resp.ipam.state_message #=> String
|
7644
7657
|
# resp.ipam.tier #=> String, one of "free", "advanced"
|
7658
|
+
# resp.ipam.enable_private_gua #=> Boolean
|
7645
7659
|
#
|
7646
7660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpam AWS API Documentation
|
7647
7661
|
#
|
@@ -12226,6 +12240,8 @@ module Aws::EC2
|
|
12226
12240
|
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
12227
12241
|
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
12228
12242
|
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
12243
|
+
# resp.subnet.ipv_6_cidr_block_association_set[0].ipv_6_address_attribute #=> String, one of "public", "private"
|
12244
|
+
# resp.subnet.ipv_6_cidr_block_association_set[0].ip_source #=> String, one of "amazon", "byoip", "none"
|
12229
12245
|
# resp.subnet.tags #=> Array
|
12230
12246
|
# resp.subnet.tags[0].key #=> String
|
12231
12247
|
# resp.subnet.tags[0].value #=> String
|
@@ -14702,6 +14718,8 @@ module Aws::EC2
|
|
14702
14718
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
14703
14719
|
# resp.vpc.ipv_6_cidr_block_association_set[0].network_border_group #=> String
|
14704
14720
|
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
|
14721
|
+
# resp.vpc.ipv_6_cidr_block_association_set[0].ipv_6_address_attribute #=> String, one of "public", "private"
|
14722
|
+
# resp.vpc.ipv_6_cidr_block_association_set[0].ip_source #=> String, one of "amazon", "byoip", "none"
|
14705
14723
|
# resp.vpc.cidr_block_association_set #=> Array
|
14706
14724
|
# resp.vpc.cidr_block_association_set[0].association_id #=> String
|
14707
14725
|
# resp.vpc.cidr_block_association_set[0].cidr_block #=> String
|
@@ -16269,6 +16287,7 @@ module Aws::EC2
|
|
16269
16287
|
# resp.ipam.resource_discovery_association_count #=> Integer
|
16270
16288
|
# resp.ipam.state_message #=> String
|
16271
16289
|
# resp.ipam.tier #=> String, one of "free", "advanced"
|
16290
|
+
# resp.ipam.enable_private_gua #=> Boolean
|
16272
16291
|
#
|
16273
16292
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpam AWS API Documentation
|
16274
16293
|
#
|
@@ -26887,6 +26906,7 @@ module Aws::EC2
|
|
26887
26906
|
# resp.ipams[0].resource_discovery_association_count #=> Integer
|
26888
26907
|
# resp.ipams[0].state_message #=> String
|
26889
26908
|
# resp.ipams[0].tier #=> String, one of "free", "advanced"
|
26909
|
+
# resp.ipams[0].enable_private_gua #=> Boolean
|
26890
26910
|
#
|
26891
26911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpams AWS API Documentation
|
26892
26912
|
#
|
@@ -34314,6 +34334,8 @@ module Aws::EC2
|
|
34314
34334
|
# resp.subnets[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String
|
34315
34335
|
# resp.subnets[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
34316
34336
|
# resp.subnets[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
34337
|
+
# resp.subnets[0].ipv_6_cidr_block_association_set[0].ipv_6_address_attribute #=> String, one of "public", "private"
|
34338
|
+
# resp.subnets[0].ipv_6_cidr_block_association_set[0].ip_source #=> String, one of "amazon", "byoip", "none"
|
34317
34339
|
# resp.subnets[0].tags #=> Array
|
34318
34340
|
# resp.subnets[0].tags[0].key #=> String
|
34319
34341
|
# resp.subnets[0].tags[0].value #=> String
|
@@ -37930,6 +37952,8 @@ module Aws::EC2
|
|
37930
37952
|
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_cidr_block_state.status_message #=> String
|
37931
37953
|
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].network_border_group #=> String
|
37932
37954
|
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_pool #=> String
|
37955
|
+
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ipv_6_address_attribute #=> String, one of "public", "private"
|
37956
|
+
# resp.vpcs[0].ipv_6_cidr_block_association_set[0].ip_source #=> String, one of "amazon", "byoip", "none"
|
37933
37957
|
# resp.vpcs[0].cidr_block_association_set #=> Array
|
37934
37958
|
# resp.vpcs[0].cidr_block_association_set[0].association_id #=> String
|
37935
37959
|
# resp.vpcs[0].cidr_block_association_set[0].cidr_block #=> String
|
@@ -39887,6 +39911,8 @@ module Aws::EC2
|
|
39887
39911
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block #=> String
|
39888
39912
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
39889
39913
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
|
39914
|
+
# resp.ipv_6_cidr_block_association.ipv_6_address_attribute #=> String, one of "public", "private"
|
39915
|
+
# resp.ipv_6_cidr_block_association.ip_source #=> String, one of "amazon", "byoip", "none"
|
39890
39916
|
# resp.subnet_id #=> String
|
39891
39917
|
#
|
39892
39918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateSubnetCidrBlock AWS API Documentation
|
@@ -40120,6 +40146,8 @@ module Aws::EC2
|
|
40120
40146
|
# resp.ipv_6_cidr_block_association.ipv_6_cidr_block_state.status_message #=> String
|
40121
40147
|
# resp.ipv_6_cidr_block_association.network_border_group #=> String
|
40122
40148
|
# resp.ipv_6_cidr_block_association.ipv_6_pool #=> String
|
40149
|
+
# resp.ipv_6_cidr_block_association.ipv_6_address_attribute #=> String, one of "public", "private"
|
40150
|
+
# resp.ipv_6_cidr_block_association.ip_source #=> String, one of "amazon", "byoip", "none"
|
40123
40151
|
# resp.cidr_block_association.association_id #=> String
|
40124
40152
|
# resp.cidr_block_association.cidr_block #=> String
|
40125
40153
|
# resp.cidr_block_association.cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
|
@@ -42729,6 +42757,7 @@ module Aws::EC2
|
|
42729
42757
|
# resp.ipam_discovered_resource_cidrs[0].resource_id #=> String
|
42730
42758
|
# resp.ipam_discovered_resource_cidrs[0].resource_owner_id #=> String
|
42731
42759
|
# resp.ipam_discovered_resource_cidrs[0].resource_cidr #=> String
|
42760
|
+
# resp.ipam_discovered_resource_cidrs[0].ip_source #=> String, one of "amazon", "byoip", "none"
|
42732
42761
|
# resp.ipam_discovered_resource_cidrs[0].resource_type #=> String, one of "vpc", "subnet", "eip", "public-ipv4-pool", "ipv6-pool", "eni"
|
42733
42762
|
# resp.ipam_discovered_resource_cidrs[0].resource_tags #=> Array
|
42734
42763
|
# resp.ipam_discovered_resource_cidrs[0].resource_tags[0].key #=> String
|
@@ -48319,6 +48348,10 @@ module Aws::EC2
|
|
48319
48348
|
#
|
48320
48349
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
48321
48350
|
#
|
48351
|
+
# @option params [Boolean] :enable_private_gua
|
48352
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
48353
|
+
# addresses. This option is disabled by default.
|
48354
|
+
#
|
48322
48355
|
# @return [Types::ModifyIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
48323
48356
|
#
|
48324
48357
|
# * {Types::ModifyIpamResult#ipam #ipam} => Types::Ipam
|
@@ -48340,6 +48373,7 @@ module Aws::EC2
|
|
48340
48373
|
# },
|
48341
48374
|
# ],
|
48342
48375
|
# tier: "free", # accepts free, advanced
|
48376
|
+
# enable_private_gua: false,
|
48343
48377
|
# })
|
48344
48378
|
#
|
48345
48379
|
# @example Response structure
|
@@ -48363,6 +48397,7 @@ module Aws::EC2
|
|
48363
48397
|
# resp.ipam.resource_discovery_association_count #=> Integer
|
48364
48398
|
# resp.ipam.state_message #=> String
|
48365
48399
|
# resp.ipam.tier #=> String, one of "free", "advanced"
|
48400
|
+
# resp.ipam.enable_private_gua #=> Boolean
|
48366
48401
|
#
|
48367
48402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpam AWS API Documentation
|
48368
48403
|
#
|
@@ -52663,7 +52698,8 @@ module Aws::EC2
|
|
52663
52698
|
#
|
52664
52699
|
# @option params [required, Integer] :netmask_length
|
52665
52700
|
# The netmask length of the CIDR you would like to allocate to the
|
52666
|
-
# public IPv4 pool.
|
52701
|
+
# public IPv4 pool. The least specific netmask length you can define is
|
52702
|
+
# 24.
|
52667
52703
|
#
|
52668
52704
|
# @option params [String] :network_border_group
|
52669
52705
|
# The Availability Zone (AZ) or Local Zone (LZ) network border group
|
@@ -59774,7 +59810,7 @@ module Aws::EC2
|
|
59774
59810
|
params: params,
|
59775
59811
|
config: config)
|
59776
59812
|
context[:gem_name] = 'aws-sdk-ec2'
|
59777
|
-
context[:gem_version] = '1.
|
59813
|
+
context[:gem_version] = '1.468.0'
|
59778
59814
|
Seahorse::Client::Request.new(handlers, context)
|
59779
59815
|
end
|
59780
59816
|
|
@@ -1800,6 +1800,7 @@ module Aws::EC2
|
|
1800
1800
|
IpRange = Shapes::StructureShape.new(name: 'IpRange')
|
1801
1801
|
IpRangeList = Shapes::ListShape.new(name: 'IpRangeList')
|
1802
1802
|
IpRanges = Shapes::ListShape.new(name: 'IpRanges')
|
1803
|
+
IpSource = Shapes::StringShape.new(name: 'IpSource')
|
1803
1804
|
Ipam = Shapes::StructureShape.new(name: 'Ipam')
|
1804
1805
|
IpamAddressHistoryMaxResults = Shapes::IntegerShape.new(name: 'IpamAddressHistoryMaxResults')
|
1805
1806
|
IpamAddressHistoryRecord = Shapes::StructureShape.new(name: 'IpamAddressHistoryRecord')
|
@@ -1858,6 +1859,7 @@ module Aws::EC2
|
|
1858
1859
|
IpamPublicAddressTags = Shapes::StructureShape.new(name: 'IpamPublicAddressTags')
|
1859
1860
|
IpamPublicAddressType = Shapes::StringShape.new(name: 'IpamPublicAddressType')
|
1860
1861
|
IpamResourceCidr = Shapes::StructureShape.new(name: 'IpamResourceCidr')
|
1862
|
+
IpamResourceCidrIpSource = Shapes::StringShape.new(name: 'IpamResourceCidrIpSource')
|
1861
1863
|
IpamResourceCidrSet = Shapes::ListShape.new(name: 'IpamResourceCidrSet')
|
1862
1864
|
IpamResourceDiscovery = Shapes::StructureShape.new(name: 'IpamResourceDiscovery')
|
1863
1865
|
IpamResourceDiscoveryAssociation = Shapes::StructureShape.new(name: 'IpamResourceDiscoveryAssociation')
|
@@ -1887,6 +1889,7 @@ module Aws::EC2
|
|
1887
1889
|
Ipv4PrefixSpecificationResponse = Shapes::StructureShape.new(name: 'Ipv4PrefixSpecificationResponse')
|
1888
1890
|
Ipv4PrefixesList = Shapes::ListShape.new(name: 'Ipv4PrefixesList')
|
1889
1891
|
Ipv6Address = Shapes::StringShape.new(name: 'Ipv6Address')
|
1892
|
+
Ipv6AddressAttribute = Shapes::StringShape.new(name: 'Ipv6AddressAttribute')
|
1890
1893
|
Ipv6AddressList = Shapes::ListShape.new(name: 'Ipv6AddressList')
|
1891
1894
|
Ipv6CidrAssociation = Shapes::StructureShape.new(name: 'Ipv6CidrAssociation')
|
1892
1895
|
Ipv6CidrAssociationSet = Shapes::ListShape.new(name: 'Ipv6CidrAssociationSet')
|
@@ -4833,6 +4836,7 @@ module Aws::EC2
|
|
4833
4836
|
CreateIpamRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4834
4837
|
CreateIpamRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4835
4838
|
CreateIpamRequest.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "Tier"))
|
4839
|
+
CreateIpamRequest.add_member(:enable_private_gua, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrivateGua"))
|
4836
4840
|
CreateIpamRequest.struct_class = Types::CreateIpamRequest
|
4837
4841
|
|
4838
4842
|
CreateIpamResourceDiscoveryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -10519,6 +10523,7 @@ module Aws::EC2
|
|
10519
10523
|
Ipam.add_member(:resource_discovery_association_count, Shapes::ShapeRef.new(shape: Integer, location_name: "resourceDiscoveryAssociationCount"))
|
10520
10524
|
Ipam.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
|
10521
10525
|
Ipam.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "tier"))
|
10526
|
+
Ipam.add_member(:enable_private_gua, Shapes::ShapeRef.new(shape: Boolean, location_name: "enablePrivateGua"))
|
10522
10527
|
Ipam.struct_class = Types::Ipam
|
10523
10528
|
|
10524
10529
|
IpamAddressHistoryRecord.add_member(:resource_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceOwnerId"))
|
@@ -10577,6 +10582,7 @@ module Aws::EC2
|
|
10577
10582
|
IpamDiscoveredResourceCidr.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
|
10578
10583
|
IpamDiscoveredResourceCidr.add_member(:resource_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceOwnerId"))
|
10579
10584
|
IpamDiscoveredResourceCidr.add_member(:resource_cidr, Shapes::ShapeRef.new(shape: String, location_name: "resourceCidr"))
|
10585
|
+
IpamDiscoveredResourceCidr.add_member(:ip_source, Shapes::ShapeRef.new(shape: IpamResourceCidrIpSource, location_name: "ipSource"))
|
10580
10586
|
IpamDiscoveredResourceCidr.add_member(:resource_type, Shapes::ShapeRef.new(shape: IpamResourceType, location_name: "resourceType"))
|
10581
10587
|
IpamDiscoveredResourceCidr.add_member(:resource_tags, Shapes::ShapeRef.new(shape: IpamResourceTagList, location_name: "resourceTagSet"))
|
10582
10588
|
IpamDiscoveredResourceCidr.add_member(:ip_usage, Shapes::ShapeRef.new(shape: BoxedDouble, location_name: "ipUsage"))
|
@@ -11685,6 +11691,7 @@ module Aws::EC2
|
|
11685
11691
|
ModifyIpamRequest.add_member(:add_operating_regions, Shapes::ShapeRef.new(shape: AddIpamOperatingRegionSet, location_name: "AddOperatingRegion"))
|
11686
11692
|
ModifyIpamRequest.add_member(:remove_operating_regions, Shapes::ShapeRef.new(shape: RemoveIpamOperatingRegionSet, location_name: "RemoveOperatingRegion"))
|
11687
11693
|
ModifyIpamRequest.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "Tier"))
|
11694
|
+
ModifyIpamRequest.add_member(:enable_private_gua, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrivateGua"))
|
11688
11695
|
ModifyIpamRequest.struct_class = Types::ModifyIpamRequest
|
11689
11696
|
|
11690
11697
|
ModifyIpamResourceCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -14512,6 +14519,8 @@ module Aws::EC2
|
|
14512
14519
|
SubnetIpv6CidrBlockAssociation.add_member(:association_id, Shapes::ShapeRef.new(shape: SubnetCidrAssociationId, location_name: "associationId"))
|
14513
14520
|
SubnetIpv6CidrBlockAssociation.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "ipv6CidrBlock"))
|
14514
14521
|
SubnetIpv6CidrBlockAssociation.add_member(:ipv_6_cidr_block_state, Shapes::ShapeRef.new(shape: SubnetCidrBlockState, location_name: "ipv6CidrBlockState"))
|
14522
|
+
SubnetIpv6CidrBlockAssociation.add_member(:ipv_6_address_attribute, Shapes::ShapeRef.new(shape: Ipv6AddressAttribute, location_name: "ipv6AddressAttribute"))
|
14523
|
+
SubnetIpv6CidrBlockAssociation.add_member(:ip_source, Shapes::ShapeRef.new(shape: IpSource, location_name: "ipSource"))
|
14515
14524
|
SubnetIpv6CidrBlockAssociation.struct_class = Types::SubnetIpv6CidrBlockAssociation
|
14516
14525
|
|
14517
14526
|
SubnetIpv6CidrBlockAssociationSet.member = Shapes::ShapeRef.new(shape: SubnetIpv6CidrBlockAssociation, location_name: "item")
|
@@ -15639,6 +15648,8 @@ module Aws::EC2
|
|
15639
15648
|
VpcIpv6CidrBlockAssociation.add_member(:ipv_6_cidr_block_state, Shapes::ShapeRef.new(shape: VpcCidrBlockState, location_name: "ipv6CidrBlockState"))
|
15640
15649
|
VpcIpv6CidrBlockAssociation.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "networkBorderGroup"))
|
15641
15650
|
VpcIpv6CidrBlockAssociation.add_member(:ipv_6_pool, Shapes::ShapeRef.new(shape: String, location_name: "ipv6Pool"))
|
15651
|
+
VpcIpv6CidrBlockAssociation.add_member(:ipv_6_address_attribute, Shapes::ShapeRef.new(shape: Ipv6AddressAttribute, location_name: "ipv6AddressAttribute"))
|
15652
|
+
VpcIpv6CidrBlockAssociation.add_member(:ip_source, Shapes::ShapeRef.new(shape: IpSource, location_name: "ipSource"))
|
15642
15653
|
VpcIpv6CidrBlockAssociation.struct_class = Types::VpcIpv6CidrBlockAssociation
|
15643
15654
|
|
15644
15655
|
VpcIpv6CidrBlockAssociationSet.member = Shapes::ShapeRef.new(shape: VpcIpv6CidrBlockAssociation, location_name: "item")
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -8809,6 +8809,11 @@ module Aws::EC2
|
|
8809
8809
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
8810
8810
|
# @return [String]
|
8811
8811
|
#
|
8812
|
+
# @!attribute [rw] enable_private_gua
|
8813
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
8814
|
+
# addresses. This option is disabled by default.
|
8815
|
+
# @return [Boolean]
|
8816
|
+
#
|
8812
8817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamRequest AWS API Documentation
|
8813
8818
|
#
|
8814
8819
|
class CreateIpamRequest < Struct.new(
|
@@ -8817,7 +8822,8 @@ module Aws::EC2
|
|
8817
8822
|
:operating_regions,
|
8818
8823
|
:tag_specifications,
|
8819
8824
|
:client_token,
|
8820
|
-
:tier
|
8825
|
+
:tier,
|
8826
|
+
:enable_private_gua)
|
8821
8827
|
SENSITIVE = []
|
8822
8828
|
include Aws::Structure
|
8823
8829
|
end
|
@@ -42610,6 +42616,11 @@ module Aws::EC2
|
|
42610
42616
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
42611
42617
|
# @return [String]
|
42612
42618
|
#
|
42619
|
+
# @!attribute [rw] enable_private_gua
|
42620
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
42621
|
+
# addresses. This option is disabled by default.
|
42622
|
+
# @return [Boolean]
|
42623
|
+
#
|
42613
42624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipam AWS API Documentation
|
42614
42625
|
#
|
42615
42626
|
class Ipam < Struct.new(
|
@@ -42628,7 +42639,8 @@ module Aws::EC2
|
|
42628
42639
|
:default_resource_discovery_association_id,
|
42629
42640
|
:resource_discovery_association_count,
|
42630
42641
|
:state_message,
|
42631
|
-
:tier
|
42642
|
+
:tier,
|
42643
|
+
:enable_private_gua)
|
42632
42644
|
SENSITIVE = []
|
42633
42645
|
include Aws::Structure
|
42634
42646
|
end
|
@@ -42924,6 +42936,13 @@ module Aws::EC2
|
|
42924
42936
|
# The resource CIDR.
|
42925
42937
|
# @return [String]
|
42926
42938
|
#
|
42939
|
+
# @!attribute [rw] ip_source
|
42940
|
+
# The source that allocated the IP address space. `byoip` or `amazon`
|
42941
|
+
# indicates public IP address space allocated by Amazon or space that
|
42942
|
+
# you have allocated with Bring your own IP (BYOIP). `none` indicates
|
42943
|
+
# private space.
|
42944
|
+
# @return [String]
|
42945
|
+
#
|
42927
42946
|
# @!attribute [rw] resource_type
|
42928
42947
|
# The resource type.
|
42929
42948
|
# @return [String]
|
@@ -42976,6 +42995,7 @@ module Aws::EC2
|
|
42976
42995
|
:resource_id,
|
42977
42996
|
:resource_owner_id,
|
42978
42997
|
:resource_cidr,
|
42998
|
+
:ip_source,
|
42979
42999
|
:resource_type,
|
42980
43000
|
:resource_tags,
|
42981
43001
|
:ip_usage,
|
@@ -48990,6 +49010,11 @@ module Aws::EC2
|
|
48990
49010
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
48991
49011
|
# @return [String]
|
48992
49012
|
#
|
49013
|
+
# @!attribute [rw] enable_private_gua
|
49014
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
49015
|
+
# addresses. This option is disabled by default.
|
49016
|
+
# @return [Boolean]
|
49017
|
+
#
|
48993
49018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamRequest AWS API Documentation
|
48994
49019
|
#
|
48995
49020
|
class ModifyIpamRequest < Struct.new(
|
@@ -48998,7 +49023,8 @@ module Aws::EC2
|
|
48998
49023
|
:description,
|
48999
49024
|
:add_operating_regions,
|
49000
49025
|
:remove_operating_regions,
|
49001
|
-
:tier
|
49026
|
+
:tier,
|
49027
|
+
:enable_private_gua)
|
49002
49028
|
SENSITIVE = []
|
49003
49029
|
include Aws::Structure
|
49004
49030
|
end
|
@@ -55002,7 +55028,8 @@ module Aws::EC2
|
|
55002
55028
|
#
|
55003
55029
|
# @!attribute [rw] netmask_length
|
55004
55030
|
# The netmask length of the CIDR you would like to allocate to the
|
55005
|
-
# public IPv4 pool.
|
55031
|
+
# public IPv4 pool. The least specific netmask length you can define
|
55032
|
+
# is 24.
|
55006
55033
|
# @return [Integer]
|
55007
55034
|
#
|
55008
55035
|
# @!attribute [rw] network_border_group
|
@@ -64088,12 +64115,27 @@ module Aws::EC2
|
|
64088
64115
|
# The state of the CIDR block.
|
64089
64116
|
# @return [Types::SubnetCidrBlockState]
|
64090
64117
|
#
|
64118
|
+
# @!attribute [rw] ipv_6_address_attribute
|
64119
|
+
# Public IPv6 addresses are those advertised on the internet from
|
64120
|
+
# Amazon Web Services. Private IP addresses are not and cannot be
|
64121
|
+
# advertised on the internet from Amazon Web Services.
|
64122
|
+
# @return [String]
|
64123
|
+
#
|
64124
|
+
# @!attribute [rw] ip_source
|
64125
|
+
# The source that allocated the IP address space. `byoip` or `amazon`
|
64126
|
+
# indicates public IP address space allocated by Amazon or space that
|
64127
|
+
# you have allocated with Bring your own IP (BYOIP). `none` indicates
|
64128
|
+
# private space.
|
64129
|
+
# @return [String]
|
64130
|
+
#
|
64091
64131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetIpv6CidrBlockAssociation AWS API Documentation
|
64092
64132
|
#
|
64093
64133
|
class SubnetIpv6CidrBlockAssociation < Struct.new(
|
64094
64134
|
:association_id,
|
64095
64135
|
:ipv_6_cidr_block,
|
64096
|
-
:ipv_6_cidr_block_state
|
64136
|
+
:ipv_6_cidr_block_state,
|
64137
|
+
:ipv_6_address_attribute,
|
64138
|
+
:ip_source)
|
64097
64139
|
SENSITIVE = []
|
64098
64140
|
include Aws::Structure
|
64099
64141
|
end
|
@@ -68826,6 +68868,19 @@ module Aws::EC2
|
|
68826
68868
|
# allocated.
|
68827
68869
|
# @return [String]
|
68828
68870
|
#
|
68871
|
+
# @!attribute [rw] ipv_6_address_attribute
|
68872
|
+
# Public IPv6 addresses are those advertised on the internet from
|
68873
|
+
# Amazon Web Services. Private IP addresses are not and cannot be
|
68874
|
+
# advertised on the internet from Amazon Web Services.
|
68875
|
+
# @return [String]
|
68876
|
+
#
|
68877
|
+
# @!attribute [rw] ip_source
|
68878
|
+
# The source that allocated the IP address space. `byoip` or `amazon`
|
68879
|
+
# indicates public IP address space allocated by Amazon or space that
|
68880
|
+
# you have allocated with Bring your own IP (BYOIP). `none` indicates
|
68881
|
+
# private space.
|
68882
|
+
# @return [String]
|
68883
|
+
#
|
68829
68884
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcIpv6CidrBlockAssociation AWS API Documentation
|
68830
68885
|
#
|
68831
68886
|
class VpcIpv6CidrBlockAssociation < Struct.new(
|
@@ -68833,7 +68888,9 @@ module Aws::EC2
|
|
68833
68888
|
:ipv_6_cidr_block,
|
68834
68889
|
:ipv_6_cidr_block_state,
|
68835
68890
|
:network_border_group,
|
68836
|
-
:ipv_6_pool
|
68891
|
+
:ipv_6_pool,
|
68892
|
+
:ipv_6_address_attribute,
|
68893
|
+
:ip_source)
|
68837
68894
|
SENSITIVE = []
|
68838
68895
|
include Aws::Structure
|
68839
68896
|
end
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1726,7 +1726,8 @@ module Aws
|
|
1726
1726
|
},
|
1727
1727
|
],
|
1728
1728
|
?client_token: ::String,
|
1729
|
-
?tier: ("free" | "advanced")
|
1729
|
+
?tier: ("free" | "advanced"),
|
1730
|
+
?enable_private_gua: bool
|
1730
1731
|
) -> _CreateIpamResponseSuccess
|
1731
1732
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpamResponseSuccess
|
1732
1733
|
|
@@ -10218,7 +10219,8 @@ module Aws
|
|
10218
10219
|
region_name: ::String?
|
10219
10220
|
},
|
10220
10221
|
],
|
10221
|
-
?tier: ("free" | "advanced")
|
10222
|
+
?tier: ("free" | "advanced"),
|
10223
|
+
?enable_private_gua: bool
|
10222
10224
|
) -> _ModifyIpamResponseSuccess
|
10223
10225
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpamResponseSuccess
|
10224
10226
|
|
data/sig/types.rbs
CHANGED
@@ -1986,6 +1986,7 @@ module Aws::EC2
|
|
1986
1986
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
1987
1987
|
attr_accessor client_token: ::String
|
1988
1988
|
attr_accessor tier: ("free" | "advanced")
|
1989
|
+
attr_accessor enable_private_gua: bool
|
1989
1990
|
SENSITIVE: []
|
1990
1991
|
end
|
1991
1992
|
|
@@ -9348,6 +9349,7 @@ module Aws::EC2
|
|
9348
9349
|
attr_accessor resource_discovery_association_count: ::Integer
|
9349
9350
|
attr_accessor state_message: ::String
|
9350
9351
|
attr_accessor tier: ("free" | "advanced")
|
9352
|
+
attr_accessor enable_private_gua: bool
|
9351
9353
|
SENSITIVE: []
|
9352
9354
|
end
|
9353
9355
|
|
@@ -9410,6 +9412,7 @@ module Aws::EC2
|
|
9410
9412
|
attr_accessor resource_id: ::String
|
9411
9413
|
attr_accessor resource_owner_id: ::String
|
9412
9414
|
attr_accessor resource_cidr: ::String
|
9415
|
+
attr_accessor ip_source: ("amazon" | "byoip" | "none")
|
9413
9416
|
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni")
|
9414
9417
|
attr_accessor resource_tags: ::Array[Types::IpamResourceTag]
|
9415
9418
|
attr_accessor ip_usage: ::Float
|
@@ -10676,6 +10679,7 @@ module Aws::EC2
|
|
10676
10679
|
attr_accessor add_operating_regions: ::Array[Types::AddIpamOperatingRegion]
|
10677
10680
|
attr_accessor remove_operating_regions: ::Array[Types::RemoveIpamOperatingRegion]
|
10678
10681
|
attr_accessor tier: ("free" | "advanced")
|
10682
|
+
attr_accessor enable_private_gua: bool
|
10679
10683
|
SENSITIVE: []
|
10680
10684
|
end
|
10681
10685
|
|
@@ -13935,6 +13939,8 @@ module Aws::EC2
|
|
13935
13939
|
attr_accessor association_id: ::String
|
13936
13940
|
attr_accessor ipv_6_cidr_block: ::String
|
13937
13941
|
attr_accessor ipv_6_cidr_block_state: Types::SubnetCidrBlockState
|
13942
|
+
attr_accessor ipv_6_address_attribute: ("public" | "private")
|
13943
|
+
attr_accessor ip_source: ("amazon" | "byoip" | "none")
|
13938
13944
|
SENSITIVE: []
|
13939
13945
|
end
|
13940
13946
|
|
@@ -15118,6 +15124,8 @@ module Aws::EC2
|
|
15118
15124
|
attr_accessor ipv_6_cidr_block_state: Types::VpcCidrBlockState
|
15119
15125
|
attr_accessor network_border_group: ::String
|
15120
15126
|
attr_accessor ipv_6_pool: ::String
|
15127
|
+
attr_accessor ipv_6_address_attribute: ("public" | "private")
|
15128
|
+
attr_accessor ip_source: ("amazon" | "byoip" | "none")
|
15121
15129
|
SENSITIVE: []
|
15122
15130
|
end
|
15123
15131
|
|
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.468.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: 2024-
|
11
|
+
date: 2024-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|