aws-sdk-ec2 1.422.0 → 1.424.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +599 -43
- data/lib/aws-sdk-ec2/client_api.rb +266 -1
- data/lib/aws-sdk-ec2/endpoints.rb +84 -0
- data/lib/aws-sdk-ec2/instance.rb +2 -1
- data/lib/aws-sdk-ec2/network_interface.rb +20 -0
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-ec2/resource.rb +26 -4
- data/lib/aws-sdk-ec2/subnet.rb +12 -0
- data/lib/aws-sdk-ec2/types.rb +1053 -31
- data/lib/aws-sdk-ec2/vpc.rb +14 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
@@ -110,6 +110,11 @@ module Aws::EC2
|
|
110
110
|
ArchitectureTypeSet = Shapes::ListShape.new(name: 'ArchitectureTypeSet')
|
111
111
|
ArchitectureValues = Shapes::StringShape.new(name: 'ArchitectureValues')
|
112
112
|
ArnList = Shapes::ListShape.new(name: 'ArnList')
|
113
|
+
AsnAssociation = Shapes::StructureShape.new(name: 'AsnAssociation')
|
114
|
+
AsnAssociationSet = Shapes::ListShape.new(name: 'AsnAssociationSet')
|
115
|
+
AsnAssociationState = Shapes::StringShape.new(name: 'AsnAssociationState')
|
116
|
+
AsnAuthorizationContext = Shapes::StructureShape.new(name: 'AsnAuthorizationContext')
|
117
|
+
AsnState = Shapes::StringShape.new(name: 'AsnState')
|
113
118
|
AssetId = Shapes::StringShape.new(name: 'AssetId')
|
114
119
|
AssetIdList = Shapes::ListShape.new(name: 'AssetIdList')
|
115
120
|
AssignIpv6AddressesRequest = Shapes::StructureShape.new(name: 'AssignIpv6AddressesRequest')
|
@@ -131,6 +136,8 @@ module Aws::EC2
|
|
131
136
|
AssociateIamInstanceProfileResult = Shapes::StructureShape.new(name: 'AssociateIamInstanceProfileResult')
|
132
137
|
AssociateInstanceEventWindowRequest = Shapes::StructureShape.new(name: 'AssociateInstanceEventWindowRequest')
|
133
138
|
AssociateInstanceEventWindowResult = Shapes::StructureShape.new(name: 'AssociateInstanceEventWindowResult')
|
139
|
+
AssociateIpamByoasnRequest = Shapes::StructureShape.new(name: 'AssociateIpamByoasnRequest')
|
140
|
+
AssociateIpamByoasnResult = Shapes::StructureShape.new(name: 'AssociateIpamByoasnResult')
|
134
141
|
AssociateIpamResourceDiscoveryRequest = Shapes::StructureShape.new(name: 'AssociateIpamResourceDiscoveryRequest')
|
135
142
|
AssociateIpamResourceDiscoveryResult = Shapes::StructureShape.new(name: 'AssociateIpamResourceDiscoveryResult')
|
136
143
|
AssociateNatGatewayAddressRequest = Shapes::StructureShape.new(name: 'AssociateNatGatewayAddressRequest')
|
@@ -228,6 +235,8 @@ module Aws::EC2
|
|
228
235
|
BundleTaskState = Shapes::StringShape.new(name: 'BundleTaskState')
|
229
236
|
BurstablePerformance = Shapes::StringShape.new(name: 'BurstablePerformance')
|
230
237
|
BurstablePerformanceFlag = Shapes::BooleanShape.new(name: 'BurstablePerformanceFlag')
|
238
|
+
Byoasn = Shapes::StructureShape.new(name: 'Byoasn')
|
239
|
+
ByoasnSet = Shapes::ListShape.new(name: 'ByoasnSet')
|
231
240
|
ByoipCidr = Shapes::StructureShape.new(name: 'ByoipCidr')
|
232
241
|
ByoipCidrSet = Shapes::ListShape.new(name: 'ByoipCidrSet')
|
233
242
|
ByoipCidrState = Shapes::StringShape.new(name: 'ByoipCidrState')
|
@@ -363,6 +372,10 @@ module Aws::EC2
|
|
363
372
|
ConnectionNotificationSet = Shapes::ListShape.new(name: 'ConnectionNotificationSet')
|
364
373
|
ConnectionNotificationState = Shapes::StringShape.new(name: 'ConnectionNotificationState')
|
365
374
|
ConnectionNotificationType = Shapes::StringShape.new(name: 'ConnectionNotificationType')
|
375
|
+
ConnectionTrackingConfiguration = Shapes::StructureShape.new(name: 'ConnectionTrackingConfiguration')
|
376
|
+
ConnectionTrackingSpecification = Shapes::StructureShape.new(name: 'ConnectionTrackingSpecification')
|
377
|
+
ConnectionTrackingSpecificationRequest = Shapes::StructureShape.new(name: 'ConnectionTrackingSpecificationRequest')
|
378
|
+
ConnectionTrackingSpecificationResponse = Shapes::StructureShape.new(name: 'ConnectionTrackingSpecificationResponse')
|
366
379
|
ConnectivityType = Shapes::StringShape.new(name: 'ConnectivityType')
|
367
380
|
ContainerFormat = Shapes::StringShape.new(name: 'ContainerFormat')
|
368
381
|
ConversionIdStringList = Shapes::ListShape.new(name: 'ConversionIdStringList')
|
@@ -728,6 +741,8 @@ module Aws::EC2
|
|
728
741
|
DeleteVpnGatewayRequest = Shapes::StructureShape.new(name: 'DeleteVpnGatewayRequest')
|
729
742
|
DeprovisionByoipCidrRequest = Shapes::StructureShape.new(name: 'DeprovisionByoipCidrRequest')
|
730
743
|
DeprovisionByoipCidrResult = Shapes::StructureShape.new(name: 'DeprovisionByoipCidrResult')
|
744
|
+
DeprovisionIpamByoasnRequest = Shapes::StructureShape.new(name: 'DeprovisionIpamByoasnRequest')
|
745
|
+
DeprovisionIpamByoasnResult = Shapes::StructureShape.new(name: 'DeprovisionIpamByoasnResult')
|
731
746
|
DeprovisionIpamPoolCidrRequest = Shapes::StructureShape.new(name: 'DeprovisionIpamPoolCidrRequest')
|
732
747
|
DeprovisionIpamPoolCidrResult = Shapes::StructureShape.new(name: 'DeprovisionIpamPoolCidrResult')
|
733
748
|
DeprovisionPublicIpv4PoolCidrRequest = Shapes::StructureShape.new(name: 'DeprovisionPublicIpv4PoolCidrRequest')
|
@@ -885,6 +900,9 @@ module Aws::EC2
|
|
885
900
|
DescribeInternetGatewaysMaxResults = Shapes::IntegerShape.new(name: 'DescribeInternetGatewaysMaxResults')
|
886
901
|
DescribeInternetGatewaysRequest = Shapes::StructureShape.new(name: 'DescribeInternetGatewaysRequest')
|
887
902
|
DescribeInternetGatewaysResult = Shapes::StructureShape.new(name: 'DescribeInternetGatewaysResult')
|
903
|
+
DescribeIpamByoasnMaxResults = Shapes::IntegerShape.new(name: 'DescribeIpamByoasnMaxResults')
|
904
|
+
DescribeIpamByoasnRequest = Shapes::StructureShape.new(name: 'DescribeIpamByoasnRequest')
|
905
|
+
DescribeIpamByoasnResult = Shapes::StructureShape.new(name: 'DescribeIpamByoasnResult')
|
888
906
|
DescribeIpamPoolsRequest = Shapes::StructureShape.new(name: 'DescribeIpamPoolsRequest')
|
889
907
|
DescribeIpamPoolsResult = Shapes::StructureShape.new(name: 'DescribeIpamPoolsResult')
|
890
908
|
DescribeIpamResourceDiscoveriesRequest = Shapes::StructureShape.new(name: 'DescribeIpamResourceDiscoveriesRequest')
|
@@ -1167,6 +1185,8 @@ module Aws::EC2
|
|
1167
1185
|
DisassociateIamInstanceProfileResult = Shapes::StructureShape.new(name: 'DisassociateIamInstanceProfileResult')
|
1168
1186
|
DisassociateInstanceEventWindowRequest = Shapes::StructureShape.new(name: 'DisassociateInstanceEventWindowRequest')
|
1169
1187
|
DisassociateInstanceEventWindowResult = Shapes::StructureShape.new(name: 'DisassociateInstanceEventWindowResult')
|
1188
|
+
DisassociateIpamByoasnRequest = Shapes::StructureShape.new(name: 'DisassociateIpamByoasnRequest')
|
1189
|
+
DisassociateIpamByoasnResult = Shapes::StructureShape.new(name: 'DisassociateIpamByoasnResult')
|
1170
1190
|
DisassociateIpamResourceDiscoveryRequest = Shapes::StructureShape.new(name: 'DisassociateIpamResourceDiscoveryRequest')
|
1171
1191
|
DisassociateIpamResourceDiscoveryResult = Shapes::StructureShape.new(name: 'DisassociateIpamResourceDiscoveryResult')
|
1172
1192
|
DisassociateNatGatewayAddressRequest = Shapes::StructureShape.new(name: 'DisassociateNatGatewayAddressRequest')
|
@@ -1445,6 +1465,8 @@ module Aws::EC2
|
|
1445
1465
|
GetIpamAddressHistoryResult = Shapes::StructureShape.new(name: 'GetIpamAddressHistoryResult')
|
1446
1466
|
GetIpamDiscoveredAccountsRequest = Shapes::StructureShape.new(name: 'GetIpamDiscoveredAccountsRequest')
|
1447
1467
|
GetIpamDiscoveredAccountsResult = Shapes::StructureShape.new(name: 'GetIpamDiscoveredAccountsResult')
|
1468
|
+
GetIpamDiscoveredPublicAddressesRequest = Shapes::StructureShape.new(name: 'GetIpamDiscoveredPublicAddressesRequest')
|
1469
|
+
GetIpamDiscoveredPublicAddressesResult = Shapes::StructureShape.new(name: 'GetIpamDiscoveredPublicAddressesResult')
|
1448
1470
|
GetIpamDiscoveredResourceCidrsRequest = Shapes::StructureShape.new(name: 'GetIpamDiscoveredResourceCidrsRequest')
|
1449
1471
|
GetIpamDiscoveredResourceCidrsResult = Shapes::StructureShape.new(name: 'GetIpamDiscoveredResourceCidrsResult')
|
1450
1472
|
GetIpamPoolAllocationsMaxResults = Shapes::IntegerShape.new(name: 'GetIpamPoolAllocationsMaxResults')
|
@@ -1760,6 +1782,8 @@ module Aws::EC2
|
|
1760
1782
|
IpamComplianceStatus = Shapes::StringShape.new(name: 'IpamComplianceStatus')
|
1761
1783
|
IpamDiscoveredAccount = Shapes::StructureShape.new(name: 'IpamDiscoveredAccount')
|
1762
1784
|
IpamDiscoveredAccountSet = Shapes::ListShape.new(name: 'IpamDiscoveredAccountSet')
|
1785
|
+
IpamDiscoveredPublicAddress = Shapes::StructureShape.new(name: 'IpamDiscoveredPublicAddress')
|
1786
|
+
IpamDiscoveredPublicAddressSet = Shapes::ListShape.new(name: 'IpamDiscoveredPublicAddressSet')
|
1763
1787
|
IpamDiscoveredResourceCidr = Shapes::StructureShape.new(name: 'IpamDiscoveredResourceCidr')
|
1764
1788
|
IpamDiscoveredResourceCidrSet = Shapes::ListShape.new(name: 'IpamDiscoveredResourceCidrSet')
|
1765
1789
|
IpamDiscoveryFailureCode = Shapes::StringShape.new(name: 'IpamDiscoveryFailureCode')
|
@@ -1773,6 +1797,7 @@ module Aws::EC2
|
|
1773
1797
|
IpamOverlapStatus = Shapes::StringShape.new(name: 'IpamOverlapStatus')
|
1774
1798
|
IpamPool = Shapes::StructureShape.new(name: 'IpamPool')
|
1775
1799
|
IpamPoolAllocation = Shapes::StructureShape.new(name: 'IpamPoolAllocation')
|
1800
|
+
IpamPoolAllocationAllowedCidrs = Shapes::ListShape.new(name: 'IpamPoolAllocationAllowedCidrs')
|
1776
1801
|
IpamPoolAllocationDisallowedCidrs = Shapes::ListShape.new(name: 'IpamPoolAllocationDisallowedCidrs')
|
1777
1802
|
IpamPoolAllocationId = Shapes::StringShape.new(name: 'IpamPoolAllocationId')
|
1778
1803
|
IpamPoolAllocationResourceType = Shapes::StringShape.new(name: 'IpamPoolAllocationResourceType')
|
@@ -1787,7 +1812,18 @@ module Aws::EC2
|
|
1787
1812
|
IpamPoolId = Shapes::StringShape.new(name: 'IpamPoolId')
|
1788
1813
|
IpamPoolPublicIpSource = Shapes::StringShape.new(name: 'IpamPoolPublicIpSource')
|
1789
1814
|
IpamPoolSet = Shapes::ListShape.new(name: 'IpamPoolSet')
|
1815
|
+
IpamPoolSourceResource = Shapes::StructureShape.new(name: 'IpamPoolSourceResource')
|
1816
|
+
IpamPoolSourceResourceRequest = Shapes::StructureShape.new(name: 'IpamPoolSourceResourceRequest')
|
1817
|
+
IpamPoolSourceResourceType = Shapes::StringShape.new(name: 'IpamPoolSourceResourceType')
|
1790
1818
|
IpamPoolState = Shapes::StringShape.new(name: 'IpamPoolState')
|
1819
|
+
IpamPublicAddressAssociationStatus = Shapes::StringShape.new(name: 'IpamPublicAddressAssociationStatus')
|
1820
|
+
IpamPublicAddressAwsService = Shapes::StringShape.new(name: 'IpamPublicAddressAwsService')
|
1821
|
+
IpamPublicAddressSecurityGroup = Shapes::StructureShape.new(name: 'IpamPublicAddressSecurityGroup')
|
1822
|
+
IpamPublicAddressSecurityGroupList = Shapes::ListShape.new(name: 'IpamPublicAddressSecurityGroupList')
|
1823
|
+
IpamPublicAddressTag = Shapes::StructureShape.new(name: 'IpamPublicAddressTag')
|
1824
|
+
IpamPublicAddressTagList = Shapes::ListShape.new(name: 'IpamPublicAddressTagList')
|
1825
|
+
IpamPublicAddressTags = Shapes::StructureShape.new(name: 'IpamPublicAddressTags')
|
1826
|
+
IpamPublicAddressType = Shapes::StringShape.new(name: 'IpamPublicAddressType')
|
1791
1827
|
IpamResourceCidr = Shapes::StructureShape.new(name: 'IpamResourceCidr')
|
1792
1828
|
IpamResourceCidrSet = Shapes::ListShape.new(name: 'IpamResourceCidrSet')
|
1793
1829
|
IpamResourceDiscovery = Shapes::StructureShape.new(name: 'IpamResourceDiscovery')
|
@@ -1808,6 +1844,7 @@ module Aws::EC2
|
|
1808
1844
|
IpamScopeType = Shapes::StringShape.new(name: 'IpamScopeType')
|
1809
1845
|
IpamSet = Shapes::ListShape.new(name: 'IpamSet')
|
1810
1846
|
IpamState = Shapes::StringShape.new(name: 'IpamState')
|
1847
|
+
IpamTier = Shapes::StringShape.new(name: 'IpamTier')
|
1811
1848
|
Ipv4PoolCoipId = Shapes::StringShape.new(name: 'Ipv4PoolCoipId')
|
1812
1849
|
Ipv4PoolEc2Id = Shapes::StringShape.new(name: 'Ipv4PoolEc2Id')
|
1813
1850
|
Ipv4PrefixList = Shapes::ListShape.new(name: 'Ipv4PrefixList')
|
@@ -2359,6 +2396,8 @@ module Aws::EC2
|
|
2359
2396
|
ProtocolValue = Shapes::StringShape.new(name: 'ProtocolValue')
|
2360
2397
|
ProvisionByoipCidrRequest = Shapes::StructureShape.new(name: 'ProvisionByoipCidrRequest')
|
2361
2398
|
ProvisionByoipCidrResult = Shapes::StructureShape.new(name: 'ProvisionByoipCidrResult')
|
2399
|
+
ProvisionIpamByoasnRequest = Shapes::StructureShape.new(name: 'ProvisionIpamByoasnRequest')
|
2400
|
+
ProvisionIpamByoasnResult = Shapes::StructureShape.new(name: 'ProvisionIpamByoasnResult')
|
2362
2401
|
ProvisionIpamPoolCidrRequest = Shapes::StructureShape.new(name: 'ProvisionIpamPoolCidrRequest')
|
2363
2402
|
ProvisionIpamPoolCidrResult = Shapes::StructureShape.new(name: 'ProvisionIpamPoolCidrResult')
|
2364
2403
|
ProvisionPublicIpv4PoolCidrRequest = Shapes::StructureShape.new(name: 'ProvisionPublicIpv4PoolCidrRequest')
|
@@ -2610,6 +2649,7 @@ module Aws::EC2
|
|
2610
2649
|
SecurityGroupName = Shapes::StringShape.new(name: 'SecurityGroupName')
|
2611
2650
|
SecurityGroupReference = Shapes::StructureShape.new(name: 'SecurityGroupReference')
|
2612
2651
|
SecurityGroupReferences = Shapes::ListShape.new(name: 'SecurityGroupReferences')
|
2652
|
+
SecurityGroupReferencingSupportValue = Shapes::StringShape.new(name: 'SecurityGroupReferencingSupportValue')
|
2613
2653
|
SecurityGroupRule = Shapes::StructureShape.new(name: 'SecurityGroupRule')
|
2614
2654
|
SecurityGroupRuleDescription = Shapes::StructureShape.new(name: 'SecurityGroupRuleDescription')
|
2615
2655
|
SecurityGroupRuleDescriptionList = Shapes::ListShape.new(name: 'SecurityGroupRuleDescriptionList')
|
@@ -3295,6 +3335,7 @@ module Aws::EC2
|
|
3295
3335
|
AddressTransferList.member = Shapes::ShapeRef.new(shape: AddressTransfer, location_name: "item")
|
3296
3336
|
|
3297
3337
|
AdvertiseByoipCidrRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
3338
|
+
AdvertiseByoipCidrRequest.add_member(:asn, Shapes::ShapeRef.new(shape: String, location_name: "Asn"))
|
3298
3339
|
AdvertiseByoipCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3299
3340
|
AdvertiseByoipCidrRequest.struct_class = Types::AdvertiseByoipCidrRequest
|
3300
3341
|
|
@@ -3343,6 +3384,7 @@ module Aws::EC2
|
|
3343
3384
|
AllocateIpamPoolCidrRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
3344
3385
|
AllocateIpamPoolCidrRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
3345
3386
|
AllocateIpamPoolCidrRequest.add_member(:preview_next_cidr, Shapes::ShapeRef.new(shape: Boolean, location_name: "PreviewNextCidr"))
|
3387
|
+
AllocateIpamPoolCidrRequest.add_member(:allowed_cidrs, Shapes::ShapeRef.new(shape: IpamPoolAllocationAllowedCidrs, location_name: "AllowedCidr"))
|
3346
3388
|
AllocateIpamPoolCidrRequest.add_member(:disallowed_cidrs, Shapes::ShapeRef.new(shape: IpamPoolAllocationDisallowedCidrs, location_name: "DisallowedCidr"))
|
3347
3389
|
AllocateIpamPoolCidrRequest.struct_class = Types::AllocateIpamPoolCidrRequest
|
3348
3390
|
|
@@ -3441,6 +3483,18 @@ module Aws::EC2
|
|
3441
3483
|
|
3442
3484
|
ArnList.member = Shapes::ShapeRef.new(shape: ResourceArn, location_name: "item")
|
3443
3485
|
|
3486
|
+
AsnAssociation.add_member(:asn, Shapes::ShapeRef.new(shape: String, location_name: "asn"))
|
3487
|
+
AsnAssociation.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "cidr"))
|
3488
|
+
AsnAssociation.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
3489
|
+
AsnAssociation.add_member(:state, Shapes::ShapeRef.new(shape: AsnAssociationState, location_name: "state"))
|
3490
|
+
AsnAssociation.struct_class = Types::AsnAssociation
|
3491
|
+
|
3492
|
+
AsnAssociationSet.member = Shapes::ShapeRef.new(shape: AsnAssociation, location_name: "item")
|
3493
|
+
|
3494
|
+
AsnAuthorizationContext.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
3495
|
+
AsnAuthorizationContext.add_member(:signature, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Signature"))
|
3496
|
+
AsnAuthorizationContext.struct_class = Types::AsnAuthorizationContext
|
3497
|
+
|
3444
3498
|
AssetIdList.member = Shapes::ShapeRef.new(shape: AssetId)
|
3445
3499
|
|
3446
3500
|
AssignIpv6AddressesRequest.add_member(:ipv_6_address_count, Shapes::ShapeRef.new(shape: Integer, location_name: "ipv6AddressCount"))
|
@@ -3535,6 +3589,14 @@ module Aws::EC2
|
|
3535
3589
|
AssociateInstanceEventWindowResult.add_member(:instance_event_window, Shapes::ShapeRef.new(shape: InstanceEventWindow, location_name: "instanceEventWindow"))
|
3536
3590
|
AssociateInstanceEventWindowResult.struct_class = Types::AssociateInstanceEventWindowResult
|
3537
3591
|
|
3592
|
+
AssociateIpamByoasnRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3593
|
+
AssociateIpamByoasnRequest.add_member(:asn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Asn"))
|
3594
|
+
AssociateIpamByoasnRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
3595
|
+
AssociateIpamByoasnRequest.struct_class = Types::AssociateIpamByoasnRequest
|
3596
|
+
|
3597
|
+
AssociateIpamByoasnResult.add_member(:asn_association, Shapes::ShapeRef.new(shape: AsnAssociation, location_name: "asnAssociation"))
|
3598
|
+
AssociateIpamByoasnResult.struct_class = Types::AssociateIpamByoasnResult
|
3599
|
+
|
3538
3600
|
AssociateIpamResourceDiscoveryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3539
3601
|
AssociateIpamResourceDiscoveryRequest.add_member(:ipam_id, Shapes::ShapeRef.new(shape: IpamId, required: true, location_name: "IpamId"))
|
3540
3602
|
AssociateIpamResourceDiscoveryRequest.add_member(:ipam_resource_discovery_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryId, required: true, location_name: "IpamResourceDiscoveryId"))
|
@@ -3565,8 +3627,10 @@ module Aws::EC2
|
|
3565
3627
|
AssociateRouteTableResult.add_member(:association_state, Shapes::ShapeRef.new(shape: RouteTableAssociationState, location_name: "associationState"))
|
3566
3628
|
AssociateRouteTableResult.struct_class = Types::AssociateRouteTableResult
|
3567
3629
|
|
3568
|
-
AssociateSubnetCidrBlockRequest.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String,
|
3630
|
+
AssociateSubnetCidrBlockRequest.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "ipv6CidrBlock"))
|
3569
3631
|
AssociateSubnetCidrBlockRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
3632
|
+
AssociateSubnetCidrBlockRequest.add_member(:ipv_6_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "Ipv6IpamPoolId"))
|
3633
|
+
AssociateSubnetCidrBlockRequest.add_member(:ipv_6_netmask_length, Shapes::ShapeRef.new(shape: NetmaskLength, location_name: "Ipv6NetmaskLength"))
|
3570
3634
|
AssociateSubnetCidrBlockRequest.struct_class = Types::AssociateSubnetCidrBlockRequest
|
3571
3635
|
|
3572
3636
|
AssociateSubnetCidrBlockResult.add_member(:ipv_6_cidr_block_association, Shapes::ShapeRef.new(shape: SubnetIpv6CidrBlockAssociation, location_name: "ipv6CidrBlockAssociation"))
|
@@ -3852,8 +3916,17 @@ module Aws::EC2
|
|
3852
3916
|
|
3853
3917
|
BundleTaskList.member = Shapes::ShapeRef.new(shape: BundleTask, location_name: "item")
|
3854
3918
|
|
3919
|
+
Byoasn.add_member(:asn, Shapes::ShapeRef.new(shape: String, location_name: "asn"))
|
3920
|
+
Byoasn.add_member(:ipam_id, Shapes::ShapeRef.new(shape: IpamId, location_name: "ipamId"))
|
3921
|
+
Byoasn.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
3922
|
+
Byoasn.add_member(:state, Shapes::ShapeRef.new(shape: AsnState, location_name: "state"))
|
3923
|
+
Byoasn.struct_class = Types::Byoasn
|
3924
|
+
|
3925
|
+
ByoasnSet.member = Shapes::ShapeRef.new(shape: Byoasn, location_name: "item")
|
3926
|
+
|
3855
3927
|
ByoipCidr.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "cidr"))
|
3856
3928
|
ByoipCidr.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
3929
|
+
ByoipCidr.add_member(:asn_associations, Shapes::ShapeRef.new(shape: AsnAssociationSet, location_name: "asnAssociationSet"))
|
3857
3930
|
ByoipCidr.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
3858
3931
|
ByoipCidr.add_member(:state, Shapes::ShapeRef.new(shape: ByoipCidrState, location_name: "state"))
|
3859
3932
|
ByoipCidr.struct_class = Types::ByoipCidr
|
@@ -4294,6 +4367,26 @@ module Aws::EC2
|
|
4294
4367
|
|
4295
4368
|
ConnectionNotificationSet.member = Shapes::ShapeRef.new(shape: ConnectionNotification, location_name: "item")
|
4296
4369
|
|
4370
|
+
ConnectionTrackingConfiguration.add_member(:tcp_established_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "tcpEstablishedTimeout"))
|
4371
|
+
ConnectionTrackingConfiguration.add_member(:udp_stream_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "udpStreamTimeout"))
|
4372
|
+
ConnectionTrackingConfiguration.add_member(:udp_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "udpTimeout"))
|
4373
|
+
ConnectionTrackingConfiguration.struct_class = Types::ConnectionTrackingConfiguration
|
4374
|
+
|
4375
|
+
ConnectionTrackingSpecification.add_member(:tcp_established_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "tcpEstablishedTimeout"))
|
4376
|
+
ConnectionTrackingSpecification.add_member(:udp_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "udpTimeout"))
|
4377
|
+
ConnectionTrackingSpecification.add_member(:udp_stream_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "udpStreamTimeout"))
|
4378
|
+
ConnectionTrackingSpecification.struct_class = Types::ConnectionTrackingSpecification
|
4379
|
+
|
4380
|
+
ConnectionTrackingSpecificationRequest.add_member(:tcp_established_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "TcpEstablishedTimeout"))
|
4381
|
+
ConnectionTrackingSpecificationRequest.add_member(:udp_stream_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "UdpStreamTimeout"))
|
4382
|
+
ConnectionTrackingSpecificationRequest.add_member(:udp_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "UdpTimeout"))
|
4383
|
+
ConnectionTrackingSpecificationRequest.struct_class = Types::ConnectionTrackingSpecificationRequest
|
4384
|
+
|
4385
|
+
ConnectionTrackingSpecificationResponse.add_member(:tcp_established_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "tcpEstablishedTimeout"))
|
4386
|
+
ConnectionTrackingSpecificationResponse.add_member(:udp_stream_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "udpStreamTimeout"))
|
4387
|
+
ConnectionTrackingSpecificationResponse.add_member(:udp_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "udpTimeout"))
|
4388
|
+
ConnectionTrackingSpecificationResponse.struct_class = Types::ConnectionTrackingSpecificationResponse
|
4389
|
+
|
4297
4390
|
ConversionIdStringList.member = Shapes::ShapeRef.new(shape: ConversionTaskId, location_name: "item")
|
4298
4391
|
|
4299
4392
|
ConversionTask.add_member(:conversion_task_id, Shapes::ShapeRef.new(shape: String, location_name: "conversionTaskId"))
|
@@ -4651,6 +4744,7 @@ module Aws::EC2
|
|
4651
4744
|
CreateIpamPoolRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4652
4745
|
CreateIpamPoolRequest.add_member(:aws_service, Shapes::ShapeRef.new(shape: IpamPoolAwsService, location_name: "AwsService"))
|
4653
4746
|
CreateIpamPoolRequest.add_member(:public_ip_source, Shapes::ShapeRef.new(shape: IpamPoolPublicIpSource, location_name: "PublicIpSource"))
|
4747
|
+
CreateIpamPoolRequest.add_member(:source_resource, Shapes::ShapeRef.new(shape: IpamPoolSourceResourceRequest, location_name: "SourceResource"))
|
4654
4748
|
CreateIpamPoolRequest.struct_class = Types::CreateIpamPoolRequest
|
4655
4749
|
|
4656
4750
|
CreateIpamPoolResult.add_member(:ipam_pool, Shapes::ShapeRef.new(shape: IpamPool, location_name: "ipamPool"))
|
@@ -4661,6 +4755,7 @@ module Aws::EC2
|
|
4661
4755
|
CreateIpamRequest.add_member(:operating_regions, Shapes::ShapeRef.new(shape: AddIpamOperatingRegionSet, location_name: "OperatingRegion"))
|
4662
4756
|
CreateIpamRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4663
4757
|
CreateIpamRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4758
|
+
CreateIpamRequest.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "Tier"))
|
4664
4759
|
CreateIpamRequest.struct_class = Types::CreateIpamRequest
|
4665
4760
|
|
4666
4761
|
CreateIpamResourceDiscoveryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -4859,6 +4954,7 @@ module Aws::EC2
|
|
4859
4954
|
CreateNetworkInterfaceRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4860
4955
|
CreateNetworkInterfaceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4861
4956
|
CreateNetworkInterfaceRequest.add_member(:enable_primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrimaryIpv6"))
|
4957
|
+
CreateNetworkInterfaceRequest.add_member(:connection_tracking_specification, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecificationRequest, location_name: "ConnectionTrackingSpecification"))
|
4862
4958
|
CreateNetworkInterfaceRequest.struct_class = Types::CreateNetworkInterfaceRequest
|
4863
4959
|
|
4864
4960
|
CreateNetworkInterfaceResult.add_member(:network_interface, Shapes::ShapeRef.new(shape: NetworkInterface, location_name: "networkInterface"))
|
@@ -5009,6 +5105,10 @@ module Aws::EC2
|
|
5009
5105
|
CreateSubnetRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "VpcId"))
|
5010
5106
|
CreateSubnetRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
5011
5107
|
CreateSubnetRequest.add_member(:ipv_6_native, Shapes::ShapeRef.new(shape: Boolean, location_name: "Ipv6Native"))
|
5108
|
+
CreateSubnetRequest.add_member(:ipv_4_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "Ipv4IpamPoolId"))
|
5109
|
+
CreateSubnetRequest.add_member(:ipv_4_netmask_length, Shapes::ShapeRef.new(shape: NetmaskLength, location_name: "Ipv4NetmaskLength"))
|
5110
|
+
CreateSubnetRequest.add_member(:ipv_6_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "Ipv6IpamPoolId"))
|
5111
|
+
CreateSubnetRequest.add_member(:ipv_6_netmask_length, Shapes::ShapeRef.new(shape: NetmaskLength, location_name: "Ipv6NetmaskLength"))
|
5012
5112
|
CreateSubnetRequest.struct_class = Types::CreateSubnetRequest
|
5013
5113
|
|
5014
5114
|
CreateSubnetResult.add_member(:subnet, Shapes::ShapeRef.new(shape: Subnet, location_name: "subnet"))
|
@@ -5192,6 +5292,7 @@ module Aws::EC2
|
|
5192
5292
|
CreateTransitGatewayVpcAttachmentRequest.struct_class = Types::CreateTransitGatewayVpcAttachmentRequest
|
5193
5293
|
|
5194
5294
|
CreateTransitGatewayVpcAttachmentRequestOptions.add_member(:dns_support, Shapes::ShapeRef.new(shape: DnsSupportValue, location_name: "DnsSupport"))
|
5295
|
+
CreateTransitGatewayVpcAttachmentRequestOptions.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: SecurityGroupReferencingSupportValue, location_name: "SecurityGroupReferencingSupport"))
|
5195
5296
|
CreateTransitGatewayVpcAttachmentRequestOptions.add_member(:ipv_6_support, Shapes::ShapeRef.new(shape: Ipv6SupportValue, location_name: "Ipv6Support"))
|
5196
5297
|
CreateTransitGatewayVpcAttachmentRequestOptions.add_member(:appliance_mode_support, Shapes::ShapeRef.new(shape: ApplianceModeSupportValue, location_name: "ApplianceModeSupport"))
|
5197
5298
|
CreateTransitGatewayVpcAttachmentRequestOptions.struct_class = Types::CreateTransitGatewayVpcAttachmentRequestOptions
|
@@ -5565,6 +5666,7 @@ module Aws::EC2
|
|
5565
5666
|
|
5566
5667
|
DeleteIpamPoolRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5567
5668
|
DeleteIpamPoolRequest.add_member(:ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, required: true, location_name: "IpamPoolId"))
|
5669
|
+
DeleteIpamPoolRequest.add_member(:cascade, Shapes::ShapeRef.new(shape: Boolean, location_name: "Cascade"))
|
5568
5670
|
DeleteIpamPoolRequest.struct_class = Types::DeleteIpamPoolRequest
|
5569
5671
|
|
5570
5672
|
DeleteIpamPoolResult.add_member(:ipam_pool, Shapes::ShapeRef.new(shape: IpamPool, location_name: "ipamPool"))
|
@@ -5986,6 +6088,14 @@ module Aws::EC2
|
|
5986
6088
|
DeprovisionByoipCidrResult.add_member(:byoip_cidr, Shapes::ShapeRef.new(shape: ByoipCidr, location_name: "byoipCidr"))
|
5987
6089
|
DeprovisionByoipCidrResult.struct_class = Types::DeprovisionByoipCidrResult
|
5988
6090
|
|
6091
|
+
DeprovisionIpamByoasnRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
6092
|
+
DeprovisionIpamByoasnRequest.add_member(:ipam_id, Shapes::ShapeRef.new(shape: IpamId, required: true, location_name: "IpamId"))
|
6093
|
+
DeprovisionIpamByoasnRequest.add_member(:asn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Asn"))
|
6094
|
+
DeprovisionIpamByoasnRequest.struct_class = Types::DeprovisionIpamByoasnRequest
|
6095
|
+
|
6096
|
+
DeprovisionIpamByoasnResult.add_member(:byoasn, Shapes::ShapeRef.new(shape: Byoasn, location_name: "byoasn"))
|
6097
|
+
DeprovisionIpamByoasnResult.struct_class = Types::DeprovisionIpamByoasnResult
|
6098
|
+
|
5989
6099
|
DeprovisionIpamPoolCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5990
6100
|
DeprovisionIpamPoolCidrRequest.add_member(:ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, required: true, location_name: "IpamPoolId"))
|
5991
6101
|
DeprovisionIpamPoolCidrRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "Cidr"))
|
@@ -6661,6 +6771,15 @@ module Aws::EC2
|
|
6661
6771
|
DescribeInternetGatewaysResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
6662
6772
|
DescribeInternetGatewaysResult.struct_class = Types::DescribeInternetGatewaysResult
|
6663
6773
|
|
6774
|
+
DescribeIpamByoasnRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
6775
|
+
DescribeIpamByoasnRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeIpamByoasnMaxResults, location_name: "MaxResults"))
|
6776
|
+
DescribeIpamByoasnRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
6777
|
+
DescribeIpamByoasnRequest.struct_class = Types::DescribeIpamByoasnRequest
|
6778
|
+
|
6779
|
+
DescribeIpamByoasnResult.add_member(:byoasns, Shapes::ShapeRef.new(shape: ByoasnSet, location_name: "byoasnSet"))
|
6780
|
+
DescribeIpamByoasnResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
6781
|
+
DescribeIpamByoasnResult.struct_class = Types::DescribeIpamByoasnResult
|
6782
|
+
|
6664
6783
|
DescribeIpamPoolsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
6665
6784
|
DescribeIpamPoolsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
6666
6785
|
DescribeIpamPoolsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: IpamMaxResults, location_name: "MaxResults"))
|
@@ -7933,6 +8052,14 @@ module Aws::EC2
|
|
7933
8052
|
DisassociateInstanceEventWindowResult.add_member(:instance_event_window, Shapes::ShapeRef.new(shape: InstanceEventWindow, location_name: "instanceEventWindow"))
|
7934
8053
|
DisassociateInstanceEventWindowResult.struct_class = Types::DisassociateInstanceEventWindowResult
|
7935
8054
|
|
8055
|
+
DisassociateIpamByoasnRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
8056
|
+
DisassociateIpamByoasnRequest.add_member(:asn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Asn"))
|
8057
|
+
DisassociateIpamByoasnRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
8058
|
+
DisassociateIpamByoasnRequest.struct_class = Types::DisassociateIpamByoasnRequest
|
8059
|
+
|
8060
|
+
DisassociateIpamByoasnResult.add_member(:asn_association, Shapes::ShapeRef.new(shape: AsnAssociation, location_name: "asnAssociation"))
|
8061
|
+
DisassociateIpamByoasnResult.struct_class = Types::DisassociateIpamByoasnResult
|
8062
|
+
|
7936
8063
|
DisassociateIpamResourceDiscoveryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
7937
8064
|
DisassociateIpamResourceDiscoveryRequest.add_member(:ipam_resource_discovery_association_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryAssociationId, required: true, location_name: "IpamResourceDiscoveryAssociationId"))
|
7938
8065
|
DisassociateIpamResourceDiscoveryRequest.struct_class = Types::DisassociateIpamResourceDiscoveryRequest
|
@@ -8932,6 +9059,19 @@ module Aws::EC2
|
|
8932
9059
|
GetIpamDiscoveredAccountsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
8933
9060
|
GetIpamDiscoveredAccountsResult.struct_class = Types::GetIpamDiscoveredAccountsResult
|
8934
9061
|
|
9062
|
+
GetIpamDiscoveredPublicAddressesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
9063
|
+
GetIpamDiscoveredPublicAddressesRequest.add_member(:ipam_resource_discovery_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryId, required: true, location_name: "IpamResourceDiscoveryId"))
|
9064
|
+
GetIpamDiscoveredPublicAddressesRequest.add_member(:address_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AddressRegion"))
|
9065
|
+
GetIpamDiscoveredPublicAddressesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
9066
|
+
GetIpamDiscoveredPublicAddressesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
9067
|
+
GetIpamDiscoveredPublicAddressesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: IpamMaxResults, location_name: "MaxResults"))
|
9068
|
+
GetIpamDiscoveredPublicAddressesRequest.struct_class = Types::GetIpamDiscoveredPublicAddressesRequest
|
9069
|
+
|
9070
|
+
GetIpamDiscoveredPublicAddressesResult.add_member(:ipam_discovered_public_addresses, Shapes::ShapeRef.new(shape: IpamDiscoveredPublicAddressSet, location_name: "ipamDiscoveredPublicAddressSet"))
|
9071
|
+
GetIpamDiscoveredPublicAddressesResult.add_member(:oldest_sample_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "oldestSampleTime"))
|
9072
|
+
GetIpamDiscoveredPublicAddressesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
9073
|
+
GetIpamDiscoveredPublicAddressesResult.struct_class = Types::GetIpamDiscoveredPublicAddressesResult
|
9074
|
+
|
8935
9075
|
GetIpamDiscoveredResourceCidrsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
8936
9076
|
GetIpamDiscoveredResourceCidrsRequest.add_member(:ipam_resource_discovery_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryId, required: true, location_name: "IpamResourceDiscoveryId"))
|
8937
9077
|
GetIpamDiscoveredResourceCidrsRequest.add_member(:resource_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceRegion"))
|
@@ -9909,6 +10049,7 @@ module Aws::EC2
|
|
9909
10049
|
InstanceNetworkInterface.add_member(:interface_type, Shapes::ShapeRef.new(shape: String, location_name: "interfaceType"))
|
9910
10050
|
InstanceNetworkInterface.add_member(:ipv_4_prefixes, Shapes::ShapeRef.new(shape: InstanceIpv4PrefixList, location_name: "ipv4PrefixSet"))
|
9911
10051
|
InstanceNetworkInterface.add_member(:ipv_6_prefixes, Shapes::ShapeRef.new(shape: InstanceIpv6PrefixList, location_name: "ipv6PrefixSet"))
|
10052
|
+
InstanceNetworkInterface.add_member(:connection_tracking_configuration, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecificationResponse, location_name: "connectionTrackingConfiguration"))
|
9912
10053
|
InstanceNetworkInterface.struct_class = Types::InstanceNetworkInterface
|
9913
10054
|
|
9914
10055
|
InstanceNetworkInterfaceAssociation.add_member(:carrier_ip, Shapes::ShapeRef.new(shape: String, location_name: "carrierIp"))
|
@@ -9950,6 +10091,7 @@ module Aws::EC2
|
|
9950
10091
|
InstanceNetworkInterfaceSpecification.add_member(:ipv_6_prefix_count, Shapes::ShapeRef.new(shape: Integer, location_name: "Ipv6PrefixCount"))
|
9951
10092
|
InstanceNetworkInterfaceSpecification.add_member(:primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrimaryIpv6"))
|
9952
10093
|
InstanceNetworkInterfaceSpecification.add_member(:ena_srd_specification, Shapes::ShapeRef.new(shape: EnaSrdSpecificationRequest, location_name: "EnaSrdSpecification"))
|
10094
|
+
InstanceNetworkInterfaceSpecification.add_member(:connection_tracking_specification, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecificationRequest, location_name: "ConnectionTrackingSpecification"))
|
9953
10095
|
InstanceNetworkInterfaceSpecification.struct_class = Types::InstanceNetworkInterfaceSpecification
|
9954
10096
|
|
9955
10097
|
InstanceNetworkInterfaceSpecificationList.member = Shapes::ShapeRef.new(shape: InstanceNetworkInterfaceSpecification, location_name: "item")
|
@@ -10200,6 +10342,8 @@ module Aws::EC2
|
|
10200
10342
|
Ipam.add_member(:default_resource_discovery_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryId, location_name: "defaultResourceDiscoveryId"))
|
10201
10343
|
Ipam.add_member(:default_resource_discovery_association_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryAssociationId, location_name: "defaultResourceDiscoveryAssociationId"))
|
10202
10344
|
Ipam.add_member(:resource_discovery_association_count, Shapes::ShapeRef.new(shape: Integer, location_name: "resourceDiscoveryAssociationCount"))
|
10345
|
+
Ipam.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
|
10346
|
+
Ipam.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "tier"))
|
10203
10347
|
Ipam.struct_class = Types::Ipam
|
10204
10348
|
|
10205
10349
|
IpamAddressHistoryRecord.add_member(:resource_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceOwnerId"))
|
@@ -10230,6 +10374,29 @@ module Aws::EC2
|
|
10230
10374
|
|
10231
10375
|
IpamDiscoveredAccountSet.member = Shapes::ShapeRef.new(shape: IpamDiscoveredAccount, location_name: "item")
|
10232
10376
|
|
10377
|
+
IpamDiscoveredPublicAddress.add_member(:ipam_resource_discovery_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryId, location_name: "ipamResourceDiscoveryId"))
|
10378
|
+
IpamDiscoveredPublicAddress.add_member(:address_region, Shapes::ShapeRef.new(shape: String, location_name: "addressRegion"))
|
10379
|
+
IpamDiscoveredPublicAddress.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "address"))
|
10380
|
+
IpamDiscoveredPublicAddress.add_member(:address_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "addressOwnerId"))
|
10381
|
+
IpamDiscoveredPublicAddress.add_member(:address_allocation_id, Shapes::ShapeRef.new(shape: String, location_name: "addressAllocationId"))
|
10382
|
+
IpamDiscoveredPublicAddress.add_member(:association_status, Shapes::ShapeRef.new(shape: IpamPublicAddressAssociationStatus, location_name: "associationStatus"))
|
10383
|
+
IpamDiscoveredPublicAddress.add_member(:address_type, Shapes::ShapeRef.new(shape: IpamPublicAddressType, location_name: "addressType"))
|
10384
|
+
IpamDiscoveredPublicAddress.add_member(:service, Shapes::ShapeRef.new(shape: IpamPublicAddressAwsService, location_name: "service"))
|
10385
|
+
IpamDiscoveredPublicAddress.add_member(:service_resource, Shapes::ShapeRef.new(shape: String, location_name: "serviceResource"))
|
10386
|
+
IpamDiscoveredPublicAddress.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcId"))
|
10387
|
+
IpamDiscoveredPublicAddress.add_member(:subnet_id, Shapes::ShapeRef.new(shape: String, location_name: "subnetId"))
|
10388
|
+
IpamDiscoveredPublicAddress.add_member(:public_ipv_4_pool_id, Shapes::ShapeRef.new(shape: String, location_name: "publicIpv4PoolId"))
|
10389
|
+
IpamDiscoveredPublicAddress.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: String, location_name: "networkInterfaceId"))
|
10390
|
+
IpamDiscoveredPublicAddress.add_member(:network_interface_description, Shapes::ShapeRef.new(shape: String, location_name: "networkInterfaceDescription"))
|
10391
|
+
IpamDiscoveredPublicAddress.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
10392
|
+
IpamDiscoveredPublicAddress.add_member(:tags, Shapes::ShapeRef.new(shape: IpamPublicAddressTags, location_name: "tags"))
|
10393
|
+
IpamDiscoveredPublicAddress.add_member(:network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "networkBorderGroup"))
|
10394
|
+
IpamDiscoveredPublicAddress.add_member(:security_groups, Shapes::ShapeRef.new(shape: IpamPublicAddressSecurityGroupList, location_name: "securityGroupSet"))
|
10395
|
+
IpamDiscoveredPublicAddress.add_member(:sample_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "sampleTime"))
|
10396
|
+
IpamDiscoveredPublicAddress.struct_class = Types::IpamDiscoveredPublicAddress
|
10397
|
+
|
10398
|
+
IpamDiscoveredPublicAddressSet.member = Shapes::ShapeRef.new(shape: IpamDiscoveredPublicAddress, location_name: "item")
|
10399
|
+
|
10233
10400
|
IpamDiscoveredResourceCidr.add_member(:ipam_resource_discovery_id, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryId, location_name: "ipamResourceDiscoveryId"))
|
10234
10401
|
IpamDiscoveredResourceCidr.add_member(:resource_region, Shapes::ShapeRef.new(shape: String, location_name: "resourceRegion"))
|
10235
10402
|
IpamDiscoveredResourceCidr.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
|
@@ -10276,6 +10443,7 @@ module Aws::EC2
|
|
10276
10443
|
IpamPool.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
10277
10444
|
IpamPool.add_member(:aws_service, Shapes::ShapeRef.new(shape: IpamPoolAwsService, location_name: "awsService"))
|
10278
10445
|
IpamPool.add_member(:public_ip_source, Shapes::ShapeRef.new(shape: IpamPoolPublicIpSource, location_name: "publicIpSource"))
|
10446
|
+
IpamPool.add_member(:source_resource, Shapes::ShapeRef.new(shape: IpamPoolSourceResource, location_name: "sourceResource"))
|
10279
10447
|
IpamPool.struct_class = Types::IpamPool
|
10280
10448
|
|
10281
10449
|
IpamPoolAllocation.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "cidr"))
|
@@ -10287,6 +10455,8 @@ module Aws::EC2
|
|
10287
10455
|
IpamPoolAllocation.add_member(:resource_owner, Shapes::ShapeRef.new(shape: String, location_name: "resourceOwner"))
|
10288
10456
|
IpamPoolAllocation.struct_class = Types::IpamPoolAllocation
|
10289
10457
|
|
10458
|
+
IpamPoolAllocationAllowedCidrs.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
10459
|
+
|
10290
10460
|
IpamPoolAllocationDisallowedCidrs.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
10291
10461
|
|
10292
10462
|
IpamPoolAllocationSet.member = Shapes::ShapeRef.new(shape: IpamPoolAllocation, location_name: "item")
|
@@ -10306,6 +10476,33 @@ module Aws::EC2
|
|
10306
10476
|
|
10307
10477
|
IpamPoolSet.member = Shapes::ShapeRef.new(shape: IpamPool, location_name: "item")
|
10308
10478
|
|
10479
|
+
IpamPoolSourceResource.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
|
10480
|
+
IpamPoolSourceResource.add_member(:resource_type, Shapes::ShapeRef.new(shape: IpamPoolSourceResourceType, location_name: "resourceType"))
|
10481
|
+
IpamPoolSourceResource.add_member(:resource_region, Shapes::ShapeRef.new(shape: String, location_name: "resourceRegion"))
|
10482
|
+
IpamPoolSourceResource.add_member(:resource_owner, Shapes::ShapeRef.new(shape: String, location_name: "resourceOwner"))
|
10483
|
+
IpamPoolSourceResource.struct_class = Types::IpamPoolSourceResource
|
10484
|
+
|
10485
|
+
IpamPoolSourceResourceRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
|
10486
|
+
IpamPoolSourceResourceRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: IpamPoolSourceResourceType, location_name: "ResourceType"))
|
10487
|
+
IpamPoolSourceResourceRequest.add_member(:resource_region, Shapes::ShapeRef.new(shape: String, location_name: "ResourceRegion"))
|
10488
|
+
IpamPoolSourceResourceRequest.add_member(:resource_owner, Shapes::ShapeRef.new(shape: String, location_name: "ResourceOwner"))
|
10489
|
+
IpamPoolSourceResourceRequest.struct_class = Types::IpamPoolSourceResourceRequest
|
10490
|
+
|
10491
|
+
IpamPublicAddressSecurityGroup.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
|
10492
|
+
IpamPublicAddressSecurityGroup.add_member(:group_id, Shapes::ShapeRef.new(shape: String, location_name: "groupId"))
|
10493
|
+
IpamPublicAddressSecurityGroup.struct_class = Types::IpamPublicAddressSecurityGroup
|
10494
|
+
|
10495
|
+
IpamPublicAddressSecurityGroupList.member = Shapes::ShapeRef.new(shape: IpamPublicAddressSecurityGroup, location_name: "item")
|
10496
|
+
|
10497
|
+
IpamPublicAddressTag.add_member(:key, Shapes::ShapeRef.new(shape: String, location_name: "key"))
|
10498
|
+
IpamPublicAddressTag.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
|
10499
|
+
IpamPublicAddressTag.struct_class = Types::IpamPublicAddressTag
|
10500
|
+
|
10501
|
+
IpamPublicAddressTagList.member = Shapes::ShapeRef.new(shape: IpamPublicAddressTag, location_name: "item")
|
10502
|
+
|
10503
|
+
IpamPublicAddressTags.add_member(:eip_tags, Shapes::ShapeRef.new(shape: IpamPublicAddressTagList, location_name: "eipTagSet"))
|
10504
|
+
IpamPublicAddressTags.struct_class = Types::IpamPublicAddressTags
|
10505
|
+
|
10309
10506
|
IpamResourceCidr.add_member(:ipam_id, Shapes::ShapeRef.new(shape: IpamId, location_name: "ipamId"))
|
10310
10507
|
IpamResourceCidr.add_member(:ipam_scope_id, Shapes::ShapeRef.new(shape: IpamScopeId, location_name: "ipamScopeId"))
|
10311
10508
|
IpamResourceCidr.add_member(:ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "ipamPoolId"))
|
@@ -10656,6 +10853,7 @@ module Aws::EC2
|
|
10656
10853
|
LaunchTemplateInstanceNetworkInterfaceSpecification.add_member(:ipv_6_prefix_count, Shapes::ShapeRef.new(shape: Integer, location_name: "ipv6PrefixCount"))
|
10657
10854
|
LaunchTemplateInstanceNetworkInterfaceSpecification.add_member(:primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "primaryIpv6"))
|
10658
10855
|
LaunchTemplateInstanceNetworkInterfaceSpecification.add_member(:ena_srd_specification, Shapes::ShapeRef.new(shape: LaunchTemplateEnaSrdSpecification, location_name: "enaSrdSpecification"))
|
10856
|
+
LaunchTemplateInstanceNetworkInterfaceSpecification.add_member(:connection_tracking_specification, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecification, location_name: "connectionTrackingSpecification"))
|
10659
10857
|
LaunchTemplateInstanceNetworkInterfaceSpecification.struct_class = Types::LaunchTemplateInstanceNetworkInterfaceSpecification
|
10660
10858
|
|
10661
10859
|
LaunchTemplateInstanceNetworkInterfaceSpecificationList.member = Shapes::ShapeRef.new(shape: LaunchTemplateInstanceNetworkInterfaceSpecification, location_name: "item")
|
@@ -10681,6 +10879,7 @@ module Aws::EC2
|
|
10681
10879
|
LaunchTemplateInstanceNetworkInterfaceSpecificationRequest.add_member(:ipv_6_prefix_count, Shapes::ShapeRef.new(shape: Integer, location_name: "Ipv6PrefixCount"))
|
10682
10880
|
LaunchTemplateInstanceNetworkInterfaceSpecificationRequest.add_member(:primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrimaryIpv6"))
|
10683
10881
|
LaunchTemplateInstanceNetworkInterfaceSpecificationRequest.add_member(:ena_srd_specification, Shapes::ShapeRef.new(shape: EnaSrdSpecificationRequest, location_name: "EnaSrdSpecification"))
|
10882
|
+
LaunchTemplateInstanceNetworkInterfaceSpecificationRequest.add_member(:connection_tracking_specification, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecificationRequest, location_name: "ConnectionTrackingSpecification"))
|
10684
10883
|
LaunchTemplateInstanceNetworkInterfaceSpecificationRequest.struct_class = Types::LaunchTemplateInstanceNetworkInterfaceSpecificationRequest
|
10685
10884
|
|
10686
10885
|
LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList.member = Shapes::ShapeRef.new(shape: LaunchTemplateInstanceNetworkInterfaceSpecificationRequest, location_name: "InstanceNetworkInterfaceSpecification")
|
@@ -11259,6 +11458,7 @@ module Aws::EC2
|
|
11259
11458
|
ModifyIpamRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
11260
11459
|
ModifyIpamRequest.add_member(:add_operating_regions, Shapes::ShapeRef.new(shape: AddIpamOperatingRegionSet, location_name: "AddOperatingRegion"))
|
11261
11460
|
ModifyIpamRequest.add_member(:remove_operating_regions, Shapes::ShapeRef.new(shape: RemoveIpamOperatingRegionSet, location_name: "RemoveOperatingRegion"))
|
11461
|
+
ModifyIpamRequest.add_member(:tier, Shapes::ShapeRef.new(shape: IpamTier, location_name: "Tier"))
|
11262
11462
|
ModifyIpamRequest.struct_class = Types::ModifyIpamRequest
|
11263
11463
|
|
11264
11464
|
ModifyIpamResourceCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -11335,6 +11535,7 @@ module Aws::EC2
|
|
11335
11535
|
ModifyNetworkInterfaceAttributeRequest.add_member(:source_dest_check, Shapes::ShapeRef.new(shape: AttributeBooleanValue, location_name: "sourceDestCheck"))
|
11336
11536
|
ModifyNetworkInterfaceAttributeRequest.add_member(:ena_srd_specification, Shapes::ShapeRef.new(shape: EnaSrdSpecification, location_name: "EnaSrdSpecification"))
|
11337
11537
|
ModifyNetworkInterfaceAttributeRequest.add_member(:enable_primary_ipv_6, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePrimaryIpv6"))
|
11538
|
+
ModifyNetworkInterfaceAttributeRequest.add_member(:connection_tracking_specification, Shapes::ShapeRef.new(shape: ConnectionTrackingSpecificationRequest, location_name: "ConnectionTrackingSpecification"))
|
11338
11539
|
ModifyNetworkInterfaceAttributeRequest.struct_class = Types::ModifyNetworkInterfaceAttributeRequest
|
11339
11540
|
|
11340
11541
|
ModifyPrivateDnsNameOptionsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -11449,6 +11650,7 @@ module Aws::EC2
|
|
11449
11650
|
ModifyTransitGatewayOptions.add_member(:remove_transit_gateway_cidr_blocks, Shapes::ShapeRef.new(shape: TransitGatewayCidrBlockStringList, location_name: "RemoveTransitGatewayCidrBlocks"))
|
11450
11651
|
ModifyTransitGatewayOptions.add_member(:vpn_ecmp_support, Shapes::ShapeRef.new(shape: VpnEcmpSupportValue, location_name: "VpnEcmpSupport"))
|
11451
11652
|
ModifyTransitGatewayOptions.add_member(:dns_support, Shapes::ShapeRef.new(shape: DnsSupportValue, location_name: "DnsSupport"))
|
11653
|
+
ModifyTransitGatewayOptions.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: SecurityGroupReferencingSupportValue, location_name: "SecurityGroupReferencingSupport"))
|
11452
11654
|
ModifyTransitGatewayOptions.add_member(:auto_accept_shared_attachments, Shapes::ShapeRef.new(shape: AutoAcceptSharedAttachmentsValue, location_name: "AutoAcceptSharedAttachments"))
|
11453
11655
|
ModifyTransitGatewayOptions.add_member(:default_route_table_association, Shapes::ShapeRef.new(shape: DefaultRouteTableAssociationValue, location_name: "DefaultRouteTableAssociation"))
|
11454
11656
|
ModifyTransitGatewayOptions.add_member(:association_default_route_table_id, Shapes::ShapeRef.new(shape: TransitGatewayRouteTableId, location_name: "AssociationDefaultRouteTableId"))
|
@@ -11484,6 +11686,7 @@ module Aws::EC2
|
|
11484
11686
|
ModifyTransitGatewayVpcAttachmentRequest.struct_class = Types::ModifyTransitGatewayVpcAttachmentRequest
|
11485
11687
|
|
11486
11688
|
ModifyTransitGatewayVpcAttachmentRequestOptions.add_member(:dns_support, Shapes::ShapeRef.new(shape: DnsSupportValue, location_name: "DnsSupport"))
|
11689
|
+
ModifyTransitGatewayVpcAttachmentRequestOptions.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: SecurityGroupReferencingSupportValue, location_name: "SecurityGroupReferencingSupport"))
|
11487
11690
|
ModifyTransitGatewayVpcAttachmentRequestOptions.add_member(:ipv_6_support, Shapes::ShapeRef.new(shape: Ipv6SupportValue, location_name: "Ipv6Support"))
|
11488
11691
|
ModifyTransitGatewayVpcAttachmentRequestOptions.add_member(:appliance_mode_support, Shapes::ShapeRef.new(shape: ApplianceModeSupportValue, location_name: "ApplianceModeSupport"))
|
11489
11692
|
ModifyTransitGatewayVpcAttachmentRequestOptions.struct_class = Types::ModifyTransitGatewayVpcAttachmentRequestOptions
|
@@ -11961,6 +12164,7 @@ module Aws::EC2
|
|
11961
12164
|
NetworkInterface.add_member(:association, Shapes::ShapeRef.new(shape: NetworkInterfaceAssociation, location_name: "association"))
|
11962
12165
|
NetworkInterface.add_member(:attachment, Shapes::ShapeRef.new(shape: NetworkInterfaceAttachment, location_name: "attachment"))
|
11963
12166
|
NetworkInterface.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
12167
|
+
NetworkInterface.add_member(:connection_tracking_configuration, Shapes::ShapeRef.new(shape: ConnectionTrackingConfiguration, location_name: "connectionTrackingConfiguration"))
|
11964
12168
|
NetworkInterface.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
11965
12169
|
NetworkInterface.add_member(:groups, Shapes::ShapeRef.new(shape: GroupIdentifierList, location_name: "groupSet"))
|
11966
12170
|
NetworkInterface.add_member(:interface_type, Shapes::ShapeRef.new(shape: NetworkInterfaceType, location_name: "interfaceType"))
|
@@ -12424,6 +12628,15 @@ module Aws::EC2
|
|
12424
12628
|
ProvisionByoipCidrResult.add_member(:byoip_cidr, Shapes::ShapeRef.new(shape: ByoipCidr, location_name: "byoipCidr"))
|
12425
12629
|
ProvisionByoipCidrResult.struct_class = Types::ProvisionByoipCidrResult
|
12426
12630
|
|
12631
|
+
ProvisionIpamByoasnRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
12632
|
+
ProvisionIpamByoasnRequest.add_member(:ipam_id, Shapes::ShapeRef.new(shape: IpamId, required: true, location_name: "IpamId"))
|
12633
|
+
ProvisionIpamByoasnRequest.add_member(:asn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Asn"))
|
12634
|
+
ProvisionIpamByoasnRequest.add_member(:asn_authorization_context, Shapes::ShapeRef.new(shape: AsnAuthorizationContext, required: true, location_name: "AsnAuthorizationContext"))
|
12635
|
+
ProvisionIpamByoasnRequest.struct_class = Types::ProvisionIpamByoasnRequest
|
12636
|
+
|
12637
|
+
ProvisionIpamByoasnResult.add_member(:byoasn, Shapes::ShapeRef.new(shape: Byoasn, location_name: "byoasn"))
|
12638
|
+
ProvisionIpamByoasnResult.struct_class = Types::ProvisionIpamByoasnResult
|
12639
|
+
|
12427
12640
|
ProvisionIpamPoolCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
12428
12641
|
ProvisionIpamPoolCidrRequest.add_member(:ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, required: true, location_name: "IpamPoolId"))
|
12429
12642
|
ProvisionIpamPoolCidrRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "Cidr"))
|
@@ -13538,6 +13751,7 @@ module Aws::EC2
|
|
13538
13751
|
SecurityGroupReference.add_member(:group_id, Shapes::ShapeRef.new(shape: String, location_name: "groupId"))
|
13539
13752
|
SecurityGroupReference.add_member(:referencing_vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "referencingVpcId"))
|
13540
13753
|
SecurityGroupReference.add_member(:vpc_peering_connection_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcPeeringConnectionId"))
|
13754
|
+
SecurityGroupReference.add_member(:transit_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "transitGatewayId"))
|
13541
13755
|
SecurityGroupReference.struct_class = Types::SecurityGroupReference
|
13542
13756
|
|
13543
13757
|
SecurityGroupReferences.member = Shapes::ShapeRef.new(shape: SecurityGroupReference, location_name: "item")
|
@@ -14435,6 +14649,7 @@ module Aws::EC2
|
|
14435
14649
|
TransitGatewayOptions.add_member(:propagation_default_route_table_id, Shapes::ShapeRef.new(shape: String, location_name: "propagationDefaultRouteTableId"))
|
14436
14650
|
TransitGatewayOptions.add_member(:vpn_ecmp_support, Shapes::ShapeRef.new(shape: VpnEcmpSupportValue, location_name: "vpnEcmpSupport"))
|
14437
14651
|
TransitGatewayOptions.add_member(:dns_support, Shapes::ShapeRef.new(shape: DnsSupportValue, location_name: "dnsSupport"))
|
14652
|
+
TransitGatewayOptions.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: SecurityGroupReferencingSupportValue, location_name: "securityGroupReferencingSupport"))
|
14438
14653
|
TransitGatewayOptions.add_member(:multicast_support, Shapes::ShapeRef.new(shape: MulticastSupportValue, location_name: "multicastSupport"))
|
14439
14654
|
TransitGatewayOptions.struct_class = Types::TransitGatewayOptions
|
14440
14655
|
|
@@ -14522,6 +14737,7 @@ module Aws::EC2
|
|
14522
14737
|
TransitGatewayRequestOptions.add_member(:default_route_table_propagation, Shapes::ShapeRef.new(shape: DefaultRouteTablePropagationValue, location_name: "DefaultRouteTablePropagation"))
|
14523
14738
|
TransitGatewayRequestOptions.add_member(:vpn_ecmp_support, Shapes::ShapeRef.new(shape: VpnEcmpSupportValue, location_name: "VpnEcmpSupport"))
|
14524
14739
|
TransitGatewayRequestOptions.add_member(:dns_support, Shapes::ShapeRef.new(shape: DnsSupportValue, location_name: "DnsSupport"))
|
14740
|
+
TransitGatewayRequestOptions.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: SecurityGroupReferencingSupportValue, location_name: "SecurityGroupReferencingSupport"))
|
14525
14741
|
TransitGatewayRequestOptions.add_member(:multicast_support, Shapes::ShapeRef.new(shape: MulticastSupportValue, location_name: "MulticastSupport"))
|
14526
14742
|
TransitGatewayRequestOptions.add_member(:transit_gateway_cidr_blocks, Shapes::ShapeRef.new(shape: TransitGatewayCidrBlockStringList, location_name: "TransitGatewayCidrBlocks"))
|
14527
14743
|
TransitGatewayRequestOptions.struct_class = Types::TransitGatewayRequestOptions
|
@@ -14615,6 +14831,7 @@ module Aws::EC2
|
|
14615
14831
|
TransitGatewayVpcAttachmentList.member = Shapes::ShapeRef.new(shape: TransitGatewayVpcAttachment, location_name: "item")
|
14616
14832
|
|
14617
14833
|
TransitGatewayVpcAttachmentOptions.add_member(:dns_support, Shapes::ShapeRef.new(shape: DnsSupportValue, location_name: "dnsSupport"))
|
14834
|
+
TransitGatewayVpcAttachmentOptions.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: SecurityGroupReferencingSupportValue, location_name: "securityGroupReferencingSupport"))
|
14618
14835
|
TransitGatewayVpcAttachmentOptions.add_member(:ipv_6_support, Shapes::ShapeRef.new(shape: Ipv6SupportValue, location_name: "ipv6Support"))
|
14619
14836
|
TransitGatewayVpcAttachmentOptions.add_member(:appliance_mode_support, Shapes::ShapeRef.new(shape: ApplianceModeSupportValue, location_name: "applianceModeSupport"))
|
14620
14837
|
TransitGatewayVpcAttachmentOptions.struct_class = Types::TransitGatewayVpcAttachmentOptions
|
@@ -15501,6 +15718,14 @@ module Aws::EC2
|
|
15501
15718
|
o.output = Shapes::ShapeRef.new(shape: AssociateInstanceEventWindowResult)
|
15502
15719
|
end)
|
15503
15720
|
|
15721
|
+
api.add_operation(:associate_ipam_byoasn, Seahorse::Model::Operation.new.tap do |o|
|
15722
|
+
o.name = "AssociateIpamByoasn"
|
15723
|
+
o.http_method = "POST"
|
15724
|
+
o.http_request_uri = "/"
|
15725
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateIpamByoasnRequest)
|
15726
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateIpamByoasnResult)
|
15727
|
+
end)
|
15728
|
+
|
15504
15729
|
api.add_operation(:associate_ipam_resource_discovery, Seahorse::Model::Operation.new.tap do |o|
|
15505
15730
|
o.name = "AssociateIpamResourceDiscovery"
|
15506
15731
|
o.http_method = "POST"
|
@@ -17021,6 +17246,14 @@ module Aws::EC2
|
|
17021
17246
|
o.output = Shapes::ShapeRef.new(shape: DeprovisionByoipCidrResult)
|
17022
17247
|
end)
|
17023
17248
|
|
17249
|
+
api.add_operation(:deprovision_ipam_byoasn, Seahorse::Model::Operation.new.tap do |o|
|
17250
|
+
o.name = "DeprovisionIpamByoasn"
|
17251
|
+
o.http_method = "POST"
|
17252
|
+
o.http_request_uri = "/"
|
17253
|
+
o.input = Shapes::ShapeRef.new(shape: DeprovisionIpamByoasnRequest)
|
17254
|
+
o.output = Shapes::ShapeRef.new(shape: DeprovisionIpamByoasnResult)
|
17255
|
+
end)
|
17256
|
+
|
17024
17257
|
api.add_operation(:deprovision_ipam_pool_cidr, Seahorse::Model::Operation.new.tap do |o|
|
17025
17258
|
o.name = "DeprovisionIpamPoolCidr"
|
17026
17259
|
o.http_method = "POST"
|
@@ -17751,6 +17984,14 @@ module Aws::EC2
|
|
17751
17984
|
)
|
17752
17985
|
end)
|
17753
17986
|
|
17987
|
+
api.add_operation(:describe_ipam_byoasn, Seahorse::Model::Operation.new.tap do |o|
|
17988
|
+
o.name = "DescribeIpamByoasn"
|
17989
|
+
o.http_method = "POST"
|
17990
|
+
o.http_request_uri = "/"
|
17991
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeIpamByoasnRequest)
|
17992
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeIpamByoasnResult)
|
17993
|
+
end)
|
17994
|
+
|
17754
17995
|
api.add_operation(:describe_ipam_pools, Seahorse::Model::Operation.new.tap do |o|
|
17755
17996
|
o.name = "DescribeIpamPools"
|
17756
17997
|
o.http_method = "POST"
|
@@ -19138,6 +19379,14 @@ module Aws::EC2
|
|
19138
19379
|
o.output = Shapes::ShapeRef.new(shape: DisassociateInstanceEventWindowResult)
|
19139
19380
|
end)
|
19140
19381
|
|
19382
|
+
api.add_operation(:disassociate_ipam_byoasn, Seahorse::Model::Operation.new.tap do |o|
|
19383
|
+
o.name = "DisassociateIpamByoasn"
|
19384
|
+
o.http_method = "POST"
|
19385
|
+
o.http_request_uri = "/"
|
19386
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateIpamByoasnRequest)
|
19387
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateIpamByoasnResult)
|
19388
|
+
end)
|
19389
|
+
|
19141
19390
|
api.add_operation(:disassociate_ipam_resource_discovery, Seahorse::Model::Operation.new.tap do |o|
|
19142
19391
|
o.name = "DisassociateIpamResourceDiscovery"
|
19143
19392
|
o.http_method = "POST"
|
@@ -19558,6 +19807,14 @@ module Aws::EC2
|
|
19558
19807
|
)
|
19559
19808
|
end)
|
19560
19809
|
|
19810
|
+
api.add_operation(:get_ipam_discovered_public_addresses, Seahorse::Model::Operation.new.tap do |o|
|
19811
|
+
o.name = "GetIpamDiscoveredPublicAddresses"
|
19812
|
+
o.http_method = "POST"
|
19813
|
+
o.http_request_uri = "/"
|
19814
|
+
o.input = Shapes::ShapeRef.new(shape: GetIpamDiscoveredPublicAddressesRequest)
|
19815
|
+
o.output = Shapes::ShapeRef.new(shape: GetIpamDiscoveredPublicAddressesResult)
|
19816
|
+
end)
|
19817
|
+
|
19561
19818
|
api.add_operation(:get_ipam_discovered_resource_cidrs, Seahorse::Model::Operation.new.tap do |o|
|
19562
19819
|
o.name = "GetIpamDiscoveredResourceCidrs"
|
19563
19820
|
o.http_method = "POST"
|
@@ -20506,6 +20763,14 @@ module Aws::EC2
|
|
20506
20763
|
o.output = Shapes::ShapeRef.new(shape: ProvisionByoipCidrResult)
|
20507
20764
|
end)
|
20508
20765
|
|
20766
|
+
api.add_operation(:provision_ipam_byoasn, Seahorse::Model::Operation.new.tap do |o|
|
20767
|
+
o.name = "ProvisionIpamByoasn"
|
20768
|
+
o.http_method = "POST"
|
20769
|
+
o.http_request_uri = "/"
|
20770
|
+
o.input = Shapes::ShapeRef.new(shape: ProvisionIpamByoasnRequest)
|
20771
|
+
o.output = Shapes::ShapeRef.new(shape: ProvisionIpamByoasnResult)
|
20772
|
+
end)
|
20773
|
+
|
20509
20774
|
api.add_operation(:provision_ipam_pool_cidr, Seahorse::Model::Operation.new.tap do |o|
|
20510
20775
|
o.name = "ProvisionIpamPoolCidr"
|
20511
20776
|
o.http_method = "POST"
|