aws-sdk-ec2 1.361.0 → 1.363.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 +359 -17
- data/lib/aws-sdk-ec2/client_api.rb +117 -13
- data/lib/aws-sdk-ec2/endpoints.rb +56 -0
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-ec2/resource.rb +29 -1
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +289 -8
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
@@ -113,6 +113,8 @@ module Aws::EC2
|
|
113
113
|
AssignIpv6AddressesResult = Shapes::StructureShape.new(name: 'AssignIpv6AddressesResult')
|
114
114
|
AssignPrivateIpAddressesRequest = Shapes::StructureShape.new(name: 'AssignPrivateIpAddressesRequest')
|
115
115
|
AssignPrivateIpAddressesResult = Shapes::StructureShape.new(name: 'AssignPrivateIpAddressesResult')
|
116
|
+
AssignPrivateNatGatewayAddressRequest = Shapes::StructureShape.new(name: 'AssignPrivateNatGatewayAddressRequest')
|
117
|
+
AssignPrivateNatGatewayAddressResult = Shapes::StructureShape.new(name: 'AssignPrivateNatGatewayAddressResult')
|
116
118
|
AssignedPrivateIpAddress = Shapes::StructureShape.new(name: 'AssignedPrivateIpAddress')
|
117
119
|
AssignedPrivateIpAddressList = Shapes::ListShape.new(name: 'AssignedPrivateIpAddressList')
|
118
120
|
AssociateAddressRequest = Shapes::StructureShape.new(name: 'AssociateAddressRequest')
|
@@ -128,6 +130,8 @@ module Aws::EC2
|
|
128
130
|
AssociateInstanceEventWindowResult = Shapes::StructureShape.new(name: 'AssociateInstanceEventWindowResult')
|
129
131
|
AssociateIpamResourceDiscoveryRequest = Shapes::StructureShape.new(name: 'AssociateIpamResourceDiscoveryRequest')
|
130
132
|
AssociateIpamResourceDiscoveryResult = Shapes::StructureShape.new(name: 'AssociateIpamResourceDiscoveryResult')
|
133
|
+
AssociateNatGatewayAddressRequest = Shapes::StructureShape.new(name: 'AssociateNatGatewayAddressRequest')
|
134
|
+
AssociateNatGatewayAddressResult = Shapes::StructureShape.new(name: 'AssociateNatGatewayAddressResult')
|
131
135
|
AssociateRouteTableRequest = Shapes::StructureShape.new(name: 'AssociateRouteTableRequest')
|
132
136
|
AssociateRouteTableResult = Shapes::StructureShape.new(name: 'AssociateRouteTableResult')
|
133
137
|
AssociateSubnetCidrBlockRequest = Shapes::StructureShape.new(name: 'AssociateSubnetCidrBlockRequest')
|
@@ -285,6 +289,7 @@ module Aws::EC2
|
|
285
289
|
CertificateArn = Shapes::StringShape.new(name: 'CertificateArn')
|
286
290
|
CertificateAuthentication = Shapes::StructureShape.new(name: 'CertificateAuthentication')
|
287
291
|
CertificateAuthenticationRequest = Shapes::StructureShape.new(name: 'CertificateAuthenticationRequest')
|
292
|
+
CertificateId = Shapes::StringShape.new(name: 'CertificateId')
|
288
293
|
CidrAuthorizationContext = Shapes::StructureShape.new(name: 'CidrAuthorizationContext')
|
289
294
|
CidrBlock = Shapes::StructureShape.new(name: 'CidrBlock')
|
290
295
|
CidrBlockSet = Shapes::ListShape.new(name: 'CidrBlockSet')
|
@@ -360,6 +365,7 @@ module Aws::EC2
|
|
360
365
|
CopyImageRequest = Shapes::StructureShape.new(name: 'CopyImageRequest')
|
361
366
|
CopyImageResult = Shapes::StructureShape.new(name: 'CopyImageResult')
|
362
367
|
CopySnapshotRequest = Shapes::StructureShape.new(name: 'CopySnapshotRequest')
|
368
|
+
CopySnapshotRequestPSU = Shapes::StringShape.new(name: 'CopySnapshotRequestPSU')
|
363
369
|
CopySnapshotResult = Shapes::StructureShape.new(name: 'CopySnapshotResult')
|
364
370
|
CopyTagsFromSource = Shapes::StringShape.new(name: 'CopyTagsFromSource')
|
365
371
|
CoreCount = Shapes::IntegerShape.new(name: 'CoreCount')
|
@@ -1128,6 +1134,8 @@ module Aws::EC2
|
|
1128
1134
|
DisassociateInstanceEventWindowResult = Shapes::StructureShape.new(name: 'DisassociateInstanceEventWindowResult')
|
1129
1135
|
DisassociateIpamResourceDiscoveryRequest = Shapes::StructureShape.new(name: 'DisassociateIpamResourceDiscoveryRequest')
|
1130
1136
|
DisassociateIpamResourceDiscoveryResult = Shapes::StructureShape.new(name: 'DisassociateIpamResourceDiscoveryResult')
|
1137
|
+
DisassociateNatGatewayAddressRequest = Shapes::StructureShape.new(name: 'DisassociateNatGatewayAddressRequest')
|
1138
|
+
DisassociateNatGatewayAddressResult = Shapes::StructureShape.new(name: 'DisassociateNatGatewayAddressResult')
|
1131
1139
|
DisassociateRouteTableRequest = Shapes::StructureShape.new(name: 'DisassociateRouteTableRequest')
|
1132
1140
|
DisassociateSubnetCidrBlockRequest = Shapes::StructureShape.new(name: 'DisassociateSubnetCidrBlockRequest')
|
1133
1141
|
DisassociateSubnetCidrBlockResult = Shapes::StructureShape.new(name: 'DisassociateSubnetCidrBlockResult')
|
@@ -1163,6 +1171,7 @@ module Aws::EC2
|
|
1163
1171
|
DomainType = Shapes::StringShape.new(name: 'DomainType')
|
1164
1172
|
Double = Shapes::FloatShape.new(name: 'Double')
|
1165
1173
|
DoubleWithConstraints = Shapes::FloatShape.new(name: 'DoubleWithConstraints')
|
1174
|
+
DrainSeconds = Shapes::IntegerShape.new(name: 'DrainSeconds')
|
1166
1175
|
DynamicRoutingValue = Shapes::StringShape.new(name: 'DynamicRoutingValue')
|
1167
1176
|
EbsBlockDevice = Shapes::StructureShape.new(name: 'EbsBlockDevice')
|
1168
1177
|
EbsEncryptionSupport = Shapes::StringShape.new(name: 'EbsEncryptionSupport')
|
@@ -1178,6 +1187,7 @@ module Aws::EC2
|
|
1178
1187
|
EgressOnlyInternetGatewayId = Shapes::StringShape.new(name: 'EgressOnlyInternetGatewayId')
|
1179
1188
|
EgressOnlyInternetGatewayIdList = Shapes::ListShape.new(name: 'EgressOnlyInternetGatewayIdList')
|
1180
1189
|
EgressOnlyInternetGatewayList = Shapes::ListShape.new(name: 'EgressOnlyInternetGatewayList')
|
1190
|
+
EipAssociationIdList = Shapes::ListShape.new(name: 'EipAssociationIdList')
|
1181
1191
|
ElasticGpuAssociation = Shapes::StructureShape.new(name: 'ElasticGpuAssociation')
|
1182
1192
|
ElasticGpuAssociationList = Shapes::ListShape.new(name: 'ElasticGpuAssociationList')
|
1183
1193
|
ElasticGpuHealth = Shapes::StructureShape.new(name: 'ElasticGpuHealth')
|
@@ -1580,6 +1590,7 @@ module Aws::EC2
|
|
1580
1590
|
InstanceIdList = Shapes::ListShape.new(name: 'InstanceIdList')
|
1581
1591
|
InstanceIdSet = Shapes::ListShape.new(name: 'InstanceIdSet')
|
1582
1592
|
InstanceIdStringList = Shapes::ListShape.new(name: 'InstanceIdStringList')
|
1593
|
+
InstanceIdWithVolumeResolver = Shapes::StringShape.new(name: 'InstanceIdWithVolumeResolver')
|
1583
1594
|
InstanceIdsSet = Shapes::ListShape.new(name: 'InstanceIdsSet')
|
1584
1595
|
InstanceInterruptionBehavior = Shapes::StringShape.new(name: 'InstanceInterruptionBehavior')
|
1585
1596
|
InstanceIpv4Prefix = Shapes::StructureShape.new(name: 'InstanceIpv4Prefix')
|
@@ -1660,6 +1671,7 @@ module Aws::EC2
|
|
1660
1671
|
IpAddress = Shapes::StringShape.new(name: 'IpAddress')
|
1661
1672
|
IpAddressList = Shapes::ListShape.new(name: 'IpAddressList')
|
1662
1673
|
IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
|
1674
|
+
IpList = Shapes::ListShape.new(name: 'IpList')
|
1663
1675
|
IpPermission = Shapes::StructureShape.new(name: 'IpPermission')
|
1664
1676
|
IpPermissionList = Shapes::ListShape.new(name: 'IpPermissionList')
|
1665
1677
|
IpPrefixList = Shapes::ListShape.new(name: 'IpPrefixList')
|
@@ -2060,6 +2072,7 @@ module Aws::EC2
|
|
2060
2072
|
NatGateway = Shapes::StructureShape.new(name: 'NatGateway')
|
2061
2073
|
NatGatewayAddress = Shapes::StructureShape.new(name: 'NatGatewayAddress')
|
2062
2074
|
NatGatewayAddressList = Shapes::ListShape.new(name: 'NatGatewayAddressList')
|
2075
|
+
NatGatewayAddressStatus = Shapes::StringShape.new(name: 'NatGatewayAddressStatus')
|
2063
2076
|
NatGatewayId = Shapes::StringShape.new(name: 'NatGatewayId')
|
2064
2077
|
NatGatewayIdStringList = Shapes::ListShape.new(name: 'NatGatewayIdStringList')
|
2065
2078
|
NatGatewayList = Shapes::ListShape.new(name: 'NatGatewayList')
|
@@ -2231,6 +2244,7 @@ module Aws::EC2
|
|
2231
2244
|
PrivateDnsNameOptionsRequest = Shapes::StructureShape.new(name: 'PrivateDnsNameOptionsRequest')
|
2232
2245
|
PrivateDnsNameOptionsResponse = Shapes::StructureShape.new(name: 'PrivateDnsNameOptionsResponse')
|
2233
2246
|
PrivateIpAddressConfigSet = Shapes::ListShape.new(name: 'PrivateIpAddressConfigSet')
|
2247
|
+
PrivateIpAddressCount = Shapes::IntegerShape.new(name: 'PrivateIpAddressCount')
|
2234
2248
|
PrivateIpAddressSpecification = Shapes::StructureShape.new(name: 'PrivateIpAddressSpecification')
|
2235
2249
|
PrivateIpAddressSpecificationList = Shapes::ListShape.new(name: 'PrivateIpAddressSpecificationList')
|
2236
2250
|
PrivateIpAddressStringList = Shapes::ListShape.new(name: 'PrivateIpAddressStringList')
|
@@ -2417,6 +2431,7 @@ module Aws::EC2
|
|
2417
2431
|
RevokeSecurityGroupEgressResult = Shapes::StructureShape.new(name: 'RevokeSecurityGroupEgressResult')
|
2418
2432
|
RevokeSecurityGroupIngressRequest = Shapes::StructureShape.new(name: 'RevokeSecurityGroupIngressRequest')
|
2419
2433
|
RevokeSecurityGroupIngressResult = Shapes::StructureShape.new(name: 'RevokeSecurityGroupIngressResult')
|
2434
|
+
RoleId = Shapes::StringShape.new(name: 'RoleId')
|
2420
2435
|
RootDeviceType = Shapes::StringShape.new(name: 'RootDeviceType')
|
2421
2436
|
RootDeviceTypeList = Shapes::ListShape.new(name: 'RootDeviceTypeList')
|
2422
2437
|
Route = Shapes::StructureShape.new(name: 'Route')
|
@@ -2650,7 +2665,7 @@ module Aws::EC2
|
|
2650
2665
|
TrafficMirrorFilterRule = Shapes::StructureShape.new(name: 'TrafficMirrorFilterRule')
|
2651
2666
|
TrafficMirrorFilterRuleField = Shapes::StringShape.new(name: 'TrafficMirrorFilterRuleField')
|
2652
2667
|
TrafficMirrorFilterRuleFieldList = Shapes::ListShape.new(name: 'TrafficMirrorFilterRuleFieldList')
|
2653
|
-
|
2668
|
+
TrafficMirrorFilterRuleIdWithResolver = Shapes::StringShape.new(name: 'TrafficMirrorFilterRuleIdWithResolver')
|
2654
2669
|
TrafficMirrorFilterRuleList = Shapes::ListShape.new(name: 'TrafficMirrorFilterRuleList')
|
2655
2670
|
TrafficMirrorFilterSet = Shapes::ListShape.new(name: 'TrafficMirrorFilterSet')
|
2656
2671
|
TrafficMirrorNetworkService = Shapes::StringShape.new(name: 'TrafficMirrorNetworkService')
|
@@ -2779,6 +2794,8 @@ module Aws::EC2
|
|
2779
2794
|
UnassignIpv6AddressesRequest = Shapes::StructureShape.new(name: 'UnassignIpv6AddressesRequest')
|
2780
2795
|
UnassignIpv6AddressesResult = Shapes::StructureShape.new(name: 'UnassignIpv6AddressesResult')
|
2781
2796
|
UnassignPrivateIpAddressesRequest = Shapes::StructureShape.new(name: 'UnassignPrivateIpAddressesRequest')
|
2797
|
+
UnassignPrivateNatGatewayAddressRequest = Shapes::StructureShape.new(name: 'UnassignPrivateNatGatewayAddressRequest')
|
2798
|
+
UnassignPrivateNatGatewayAddressResult = Shapes::StructureShape.new(name: 'UnassignPrivateNatGatewayAddressResult')
|
2782
2799
|
UnlimitedSupportedInstanceFamily = Shapes::StringShape.new(name: 'UnlimitedSupportedInstanceFamily')
|
2783
2800
|
UnmonitorInstancesRequest = Shapes::StructureShape.new(name: 'UnmonitorInstancesRequest')
|
2784
2801
|
UnmonitorInstancesResult = Shapes::StructureShape.new(name: 'UnmonitorInstancesResult')
|
@@ -3308,6 +3325,16 @@ module Aws::EC2
|
|
3308
3325
|
AssignPrivateIpAddressesResult.add_member(:assigned_ipv_4_prefixes, Shapes::ShapeRef.new(shape: Ipv4PrefixesList, location_name: "assignedIpv4PrefixSet"))
|
3309
3326
|
AssignPrivateIpAddressesResult.struct_class = Types::AssignPrivateIpAddressesResult
|
3310
3327
|
|
3328
|
+
AssignPrivateNatGatewayAddressRequest.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, required: true, location_name: "NatGatewayId"))
|
3329
|
+
AssignPrivateNatGatewayAddressRequest.add_member(:private_ip_addresses, Shapes::ShapeRef.new(shape: IpList, location_name: "PrivateIpAddress"))
|
3330
|
+
AssignPrivateNatGatewayAddressRequest.add_member(:private_ip_address_count, Shapes::ShapeRef.new(shape: PrivateIpAddressCount, location_name: "PrivateIpAddressCount"))
|
3331
|
+
AssignPrivateNatGatewayAddressRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3332
|
+
AssignPrivateNatGatewayAddressRequest.struct_class = Types::AssignPrivateNatGatewayAddressRequest
|
3333
|
+
|
3334
|
+
AssignPrivateNatGatewayAddressResult.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, location_name: "natGatewayId"))
|
3335
|
+
AssignPrivateNatGatewayAddressResult.add_member(:nat_gateway_addresses, Shapes::ShapeRef.new(shape: NatGatewayAddressList, location_name: "natGatewayAddressSet"))
|
3336
|
+
AssignPrivateNatGatewayAddressResult.struct_class = Types::AssignPrivateNatGatewayAddressResult
|
3337
|
+
|
3311
3338
|
AssignedPrivateIpAddress.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "privateIpAddress"))
|
3312
3339
|
AssignedPrivateIpAddress.struct_class = Types::AssignedPrivateIpAddress
|
3313
3340
|
|
@@ -3340,8 +3367,8 @@ module Aws::EC2
|
|
3340
3367
|
AssociateDhcpOptionsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3341
3368
|
AssociateDhcpOptionsRequest.struct_class = Types::AssociateDhcpOptionsRequest
|
3342
3369
|
|
3343
|
-
AssociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape:
|
3344
|
-
AssociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
3370
|
+
AssociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateId, location_name: "CertificateArn"))
|
3371
|
+
AssociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleId, location_name: "RoleArn"))
|
3345
3372
|
AssociateEnclaveCertificateIamRoleRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3346
3373
|
AssociateEnclaveCertificateIamRoleRequest.struct_class = Types::AssociateEnclaveCertificateIamRoleRequest
|
3347
3374
|
|
@@ -3375,6 +3402,16 @@ module Aws::EC2
|
|
3375
3402
|
AssociateIpamResourceDiscoveryResult.add_member(:ipam_resource_discovery_association, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryAssociation, location_name: "ipamResourceDiscoveryAssociation"))
|
3376
3403
|
AssociateIpamResourceDiscoveryResult.struct_class = Types::AssociateIpamResourceDiscoveryResult
|
3377
3404
|
|
3405
|
+
AssociateNatGatewayAddressRequest.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, required: true, location_name: "NatGatewayId"))
|
3406
|
+
AssociateNatGatewayAddressRequest.add_member(:allocation_ids, Shapes::ShapeRef.new(shape: AllocationIdList, required: true, location_name: "AllocationId"))
|
3407
|
+
AssociateNatGatewayAddressRequest.add_member(:private_ip_addresses, Shapes::ShapeRef.new(shape: IpList, location_name: "PrivateIpAddress"))
|
3408
|
+
AssociateNatGatewayAddressRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3409
|
+
AssociateNatGatewayAddressRequest.struct_class = Types::AssociateNatGatewayAddressRequest
|
3410
|
+
|
3411
|
+
AssociateNatGatewayAddressResult.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, location_name: "natGatewayId"))
|
3412
|
+
AssociateNatGatewayAddressResult.add_member(:nat_gateway_addresses, Shapes::ShapeRef.new(shape: NatGatewayAddressList, location_name: "natGatewayAddressSet"))
|
3413
|
+
AssociateNatGatewayAddressResult.struct_class = Types::AssociateNatGatewayAddressResult
|
3414
|
+
|
3378
3415
|
AssociateRouteTableRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3379
3416
|
AssociateRouteTableRequest.add_member(:route_table_id, Shapes::ShapeRef.new(shape: RouteTableId, required: true, location_name: "routeTableId"))
|
3380
3417
|
AssociateRouteTableRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "subnetId"))
|
@@ -4141,7 +4178,7 @@ module Aws::EC2
|
|
4141
4178
|
CopySnapshotRequest.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "destinationRegion"))
|
4142
4179
|
CopySnapshotRequest.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
4143
4180
|
CopySnapshotRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "kmsKeyId"))
|
4144
|
-
CopySnapshotRequest.add_member(:presigned_url, Shapes::ShapeRef.new(shape:
|
4181
|
+
CopySnapshotRequest.add_member(:presigned_url, Shapes::ShapeRef.new(shape: CopySnapshotRequestPSU, location_name: "presignedUrl"))
|
4145
4182
|
CopySnapshotRequest.add_member(:source_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceRegion"))
|
4146
4183
|
CopySnapshotRequest.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceSnapshotId"))
|
4147
4184
|
CopySnapshotRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
@@ -4510,11 +4547,12 @@ module Aws::EC2
|
|
4510
4547
|
CreateLaunchTemplateVersionResult.add_member(:warning, Shapes::ShapeRef.new(shape: ValidationWarning, location_name: "warning"))
|
4511
4548
|
CreateLaunchTemplateVersionResult.struct_class = Types::CreateLaunchTemplateVersionResult
|
4512
4549
|
|
4513
|
-
CreateLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String,
|
4550
|
+
CreateLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "DestinationCidrBlock"))
|
4514
4551
|
CreateLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
|
4515
4552
|
CreateLocalGatewayRouteRequest.add_member(:local_gateway_virtual_interface_group_id, Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterfaceGroupId, location_name: "LocalGatewayVirtualInterfaceGroupId"))
|
4516
4553
|
CreateLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4517
4554
|
CreateLocalGatewayRouteRequest.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "NetworkInterfaceId"))
|
4555
|
+
CreateLocalGatewayRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
|
4518
4556
|
CreateLocalGatewayRouteRequest.struct_class = Types::CreateLocalGatewayRouteRequest
|
4519
4557
|
|
4520
4558
|
CreateLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
|
@@ -4566,6 +4604,9 @@ module Aws::EC2
|
|
4566
4604
|
CreateNatGatewayRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4567
4605
|
CreateNatGatewayRequest.add_member(:connectivity_type, Shapes::ShapeRef.new(shape: ConnectivityType, location_name: "ConnectivityType"))
|
4568
4606
|
CreateNatGatewayRequest.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "PrivateIpAddress"))
|
4607
|
+
CreateNatGatewayRequest.add_member(:secondary_allocation_ids, Shapes::ShapeRef.new(shape: AllocationIdList, location_name: "SecondaryAllocationId"))
|
4608
|
+
CreateNatGatewayRequest.add_member(:secondary_private_ip_addresses, Shapes::ShapeRef.new(shape: IpList, location_name: "SecondaryPrivateIpAddress"))
|
4609
|
+
CreateNatGatewayRequest.add_member(:secondary_private_ip_address_count, Shapes::ShapeRef.new(shape: PrivateIpAddressCount, location_name: "SecondaryPrivateIpAddressCount"))
|
4569
4610
|
CreateNatGatewayRequest.struct_class = Types::CreateNatGatewayRequest
|
4570
4611
|
|
4571
4612
|
CreateNatGatewayResult.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken"))
|
@@ -5401,9 +5442,10 @@ module Aws::EC2
|
|
5401
5442
|
DeleteLaunchTemplateVersionsResult.add_member(:unsuccessfully_deleted_launch_template_versions, Shapes::ShapeRef.new(shape: DeleteLaunchTemplateVersionsResponseErrorSet, location_name: "unsuccessfullyDeletedLaunchTemplateVersionSet"))
|
5402
5443
|
DeleteLaunchTemplateVersionsResult.struct_class = Types::DeleteLaunchTemplateVersionsResult
|
5403
5444
|
|
5404
|
-
DeleteLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String,
|
5445
|
+
DeleteLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "DestinationCidrBlock"))
|
5405
5446
|
DeleteLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
|
5406
5447
|
DeleteLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5448
|
+
DeleteLocalGatewayRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
|
5407
5449
|
DeleteLocalGatewayRouteRequest.struct_class = Types::DeleteLocalGatewayRouteRequest
|
5408
5450
|
|
5409
5451
|
DeleteLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
|
@@ -5565,7 +5607,7 @@ module Aws::EC2
|
|
5565
5607
|
DeleteTrafficMirrorFilterResult.add_member(:traffic_mirror_filter_id, Shapes::ShapeRef.new(shape: String, location_name: "trafficMirrorFilterId"))
|
5566
5608
|
DeleteTrafficMirrorFilterResult.struct_class = Types::DeleteTrafficMirrorFilterResult
|
5567
5609
|
|
5568
|
-
DeleteTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape:
|
5610
|
+
DeleteTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterRuleIdWithResolver, required: true, location_name: "TrafficMirrorFilterRuleId"))
|
5569
5611
|
DeleteTrafficMirrorFilterRuleRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5570
5612
|
DeleteTrafficMirrorFilterRuleRequest.struct_class = Types::DeleteTrafficMirrorFilterRuleRequest
|
5571
5613
|
|
@@ -7604,8 +7646,8 @@ module Aws::EC2
|
|
7604
7646
|
DisassociateClientVpnTargetNetworkResult.add_member(:status, Shapes::ShapeRef.new(shape: AssociationStatus, location_name: "status"))
|
7605
7647
|
DisassociateClientVpnTargetNetworkResult.struct_class = Types::DisassociateClientVpnTargetNetworkResult
|
7606
7648
|
|
7607
|
-
DisassociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape:
|
7608
|
-
DisassociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
7649
|
+
DisassociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateId, location_name: "CertificateArn"))
|
7650
|
+
DisassociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleId, location_name: "RoleArn"))
|
7609
7651
|
DisassociateEnclaveCertificateIamRoleRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
7610
7652
|
DisassociateEnclaveCertificateIamRoleRequest.struct_class = Types::DisassociateEnclaveCertificateIamRoleRequest
|
7611
7653
|
|
@@ -7633,6 +7675,16 @@ module Aws::EC2
|
|
7633
7675
|
DisassociateIpamResourceDiscoveryResult.add_member(:ipam_resource_discovery_association, Shapes::ShapeRef.new(shape: IpamResourceDiscoveryAssociation, location_name: "ipamResourceDiscoveryAssociation"))
|
7634
7676
|
DisassociateIpamResourceDiscoveryResult.struct_class = Types::DisassociateIpamResourceDiscoveryResult
|
7635
7677
|
|
7678
|
+
DisassociateNatGatewayAddressRequest.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, required: true, location_name: "NatGatewayId"))
|
7679
|
+
DisassociateNatGatewayAddressRequest.add_member(:association_ids, Shapes::ShapeRef.new(shape: EipAssociationIdList, required: true, location_name: "AssociationId"))
|
7680
|
+
DisassociateNatGatewayAddressRequest.add_member(:max_drain_duration_seconds, Shapes::ShapeRef.new(shape: DrainSeconds, location_name: "MaxDrainDurationSeconds"))
|
7681
|
+
DisassociateNatGatewayAddressRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
7682
|
+
DisassociateNatGatewayAddressRequest.struct_class = Types::DisassociateNatGatewayAddressRequest
|
7683
|
+
|
7684
|
+
DisassociateNatGatewayAddressResult.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, location_name: "natGatewayId"))
|
7685
|
+
DisassociateNatGatewayAddressResult.add_member(:nat_gateway_addresses, Shapes::ShapeRef.new(shape: NatGatewayAddressList, location_name: "natGatewayAddressSet"))
|
7686
|
+
DisassociateNatGatewayAddressResult.struct_class = Types::DisassociateNatGatewayAddressResult
|
7687
|
+
|
7636
7688
|
DisassociateRouteTableRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: RouteTableAssociationId, required: true, location_name: "associationId"))
|
7637
7689
|
DisassociateRouteTableRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
7638
7690
|
DisassociateRouteTableRequest.struct_class = Types::DisassociateRouteTableRequest
|
@@ -7778,6 +7830,8 @@ module Aws::EC2
|
|
7778
7830
|
|
7779
7831
|
EgressOnlyInternetGatewayList.member = Shapes::ShapeRef.new(shape: EgressOnlyInternetGateway, location_name: "item")
|
7780
7832
|
|
7833
|
+
EipAssociationIdList.member = Shapes::ShapeRef.new(shape: ElasticIpAssociationId, location_name: "item")
|
7834
|
+
|
7781
7835
|
ElasticGpuAssociation.add_member(:elastic_gpu_id, Shapes::ShapeRef.new(shape: ElasticGpuId, location_name: "elasticGpuId"))
|
7782
7836
|
ElasticGpuAssociation.add_member(:elastic_gpu_association_id, Shapes::ShapeRef.new(shape: String, location_name: "elasticGpuAssociationId"))
|
7783
7837
|
ElasticGpuAssociation.add_member(:elastic_gpu_association_state, Shapes::ShapeRef.new(shape: String, location_name: "elasticGpuAssociationState"))
|
@@ -8363,7 +8417,7 @@ module Aws::EC2
|
|
8363
8417
|
FpgaInfo.add_member(:total_fpga_memory_in_mi_b, Shapes::ShapeRef.new(shape: totalFpgaMemory, location_name: "totalFpgaMemoryInMiB"))
|
8364
8418
|
FpgaInfo.struct_class = Types::FpgaInfo
|
8365
8419
|
|
8366
|
-
GetAssociatedEnclaveCertificateIamRolesRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape:
|
8420
|
+
GetAssociatedEnclaveCertificateIamRolesRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateId, location_name: "CertificateArn"))
|
8367
8421
|
GetAssociatedEnclaveCertificateIamRolesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
8368
8422
|
GetAssociatedEnclaveCertificateIamRolesRequest.struct_class = Types::GetAssociatedEnclaveCertificateIamRolesRequest
|
8369
8423
|
|
@@ -9565,7 +9619,7 @@ module Aws::EC2
|
|
9565
9619
|
InstanceRequirementsWithMetadataRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
|
9566
9620
|
InstanceRequirementsWithMetadataRequest.struct_class = Types::InstanceRequirementsWithMetadataRequest
|
9567
9621
|
|
9568
|
-
InstanceSpecification.add_member(:instance_id, Shapes::ShapeRef.new(shape:
|
9622
|
+
InstanceSpecification.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceIdWithVolumeResolver, required: true, location_name: "InstanceId"))
|
9569
9623
|
InstanceSpecification.add_member(:exclude_boot_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExcludeBootVolume"))
|
9570
9624
|
InstanceSpecification.add_member(:exclude_data_volume_ids, Shapes::ShapeRef.new(shape: VolumeIdStringList, location_name: "ExcludeDataVolumeId"))
|
9571
9625
|
InstanceSpecification.struct_class = Types::InstanceSpecification
|
@@ -9698,6 +9752,8 @@ module Aws::EC2
|
|
9698
9752
|
|
9699
9753
|
IpAddressList.member = Shapes::ShapeRef.new(shape: IpAddress, location_name: "item")
|
9700
9754
|
|
9755
|
+
IpList.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
9756
|
+
|
9701
9757
|
IpPermission.add_member(:from_port, Shapes::ShapeRef.new(shape: Integer, location_name: "fromPort"))
|
9702
9758
|
IpPermission.add_member(:ip_protocol, Shapes::ShapeRef.new(shape: String, location_name: "ipProtocol"))
|
9703
9759
|
IpPermission.add_member(:ip_ranges, Shapes::ShapeRef.new(shape: IpRangeList, location_name: "ipRanges"))
|
@@ -10380,6 +10436,7 @@ module Aws::EC2
|
|
10380
10436
|
LocalGatewayRoute.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "subnetId"))
|
10381
10437
|
LocalGatewayRoute.add_member(:coip_pool_id, Shapes::ShapeRef.new(shape: CoipPoolId, location_name: "coipPoolId"))
|
10382
10438
|
LocalGatewayRoute.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
|
10439
|
+
LocalGatewayRoute.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "destinationPrefixListId"))
|
10383
10440
|
LocalGatewayRoute.struct_class = Types::LocalGatewayRoute
|
10384
10441
|
|
10385
10442
|
LocalGatewayRouteList.member = Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "item")
|
@@ -10785,11 +10842,12 @@ module Aws::EC2
|
|
10785
10842
|
ModifyLaunchTemplateResult.add_member(:launch_template, Shapes::ShapeRef.new(shape: LaunchTemplate, location_name: "launchTemplate"))
|
10786
10843
|
ModifyLaunchTemplateResult.struct_class = Types::ModifyLaunchTemplateResult
|
10787
10844
|
|
10788
|
-
ModifyLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String,
|
10845
|
+
ModifyLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "DestinationCidrBlock"))
|
10789
10846
|
ModifyLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
|
10790
10847
|
ModifyLocalGatewayRouteRequest.add_member(:local_gateway_virtual_interface_group_id, Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterfaceGroupId, location_name: "LocalGatewayVirtualInterfaceGroupId"))
|
10791
10848
|
ModifyLocalGatewayRouteRequest.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "NetworkInterfaceId"))
|
10792
10849
|
ModifyLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
10850
|
+
ModifyLocalGatewayRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
|
10793
10851
|
ModifyLocalGatewayRouteRequest.struct_class = Types::ModifyLocalGatewayRouteRequest
|
10794
10852
|
|
10795
10853
|
ModifyLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
|
@@ -10893,7 +10951,7 @@ module Aws::EC2
|
|
10893
10951
|
ModifyTrafficMirrorFilterNetworkServicesResult.add_member(:traffic_mirror_filter, Shapes::ShapeRef.new(shape: TrafficMirrorFilter, location_name: "trafficMirrorFilter"))
|
10894
10952
|
ModifyTrafficMirrorFilterNetworkServicesResult.struct_class = Types::ModifyTrafficMirrorFilterNetworkServicesResult
|
10895
10953
|
|
10896
|
-
ModifyTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape:
|
10954
|
+
ModifyTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterRuleIdWithResolver, required: true, location_name: "TrafficMirrorFilterRuleId"))
|
10897
10955
|
ModifyTrafficMirrorFilterRuleRequest.add_member(:traffic_direction, Shapes::ShapeRef.new(shape: TrafficDirection, location_name: "TrafficDirection"))
|
10898
10956
|
ModifyTrafficMirrorFilterRuleRequest.add_member(:rule_number, Shapes::ShapeRef.new(shape: Integer, location_name: "RuleNumber"))
|
10899
10957
|
ModifyTrafficMirrorFilterRuleRequest.add_member(:rule_action, Shapes::ShapeRef.new(shape: TrafficMirrorRuleAction, location_name: "RuleAction"))
|
@@ -11268,6 +11326,10 @@ module Aws::EC2
|
|
11268
11326
|
NatGatewayAddress.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: String, location_name: "networkInterfaceId"))
|
11269
11327
|
NatGatewayAddress.add_member(:private_ip, Shapes::ShapeRef.new(shape: String, location_name: "privateIp"))
|
11270
11328
|
NatGatewayAddress.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
|
11329
|
+
NatGatewayAddress.add_member(:association_id, Shapes::ShapeRef.new(shape: String, location_name: "associationId"))
|
11330
|
+
NatGatewayAddress.add_member(:is_primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPrimary"))
|
11331
|
+
NatGatewayAddress.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "failureMessage"))
|
11332
|
+
NatGatewayAddress.add_member(:status, Shapes::ShapeRef.new(shape: NatGatewayAddressStatus, location_name: "status"))
|
11271
11333
|
NatGatewayAddress.struct_class = Types::NatGatewayAddress
|
11272
11334
|
|
11273
11335
|
NatGatewayAddressList.member = Shapes::ShapeRef.new(shape: NatGatewayAddress, location_name: "item")
|
@@ -14029,6 +14091,16 @@ module Aws::EC2
|
|
14029
14091
|
UnassignPrivateIpAddressesRequest.add_member(:ipv_4_prefixes, Shapes::ShapeRef.new(shape: IpPrefixList, location_name: "Ipv4Prefix"))
|
14030
14092
|
UnassignPrivateIpAddressesRequest.struct_class = Types::UnassignPrivateIpAddressesRequest
|
14031
14093
|
|
14094
|
+
UnassignPrivateNatGatewayAddressRequest.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, required: true, location_name: "NatGatewayId"))
|
14095
|
+
UnassignPrivateNatGatewayAddressRequest.add_member(:private_ip_addresses, Shapes::ShapeRef.new(shape: IpList, required: true, location_name: "PrivateIpAddress"))
|
14096
|
+
UnassignPrivateNatGatewayAddressRequest.add_member(:max_drain_duration_seconds, Shapes::ShapeRef.new(shape: DrainSeconds, location_name: "MaxDrainDurationSeconds"))
|
14097
|
+
UnassignPrivateNatGatewayAddressRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
14098
|
+
UnassignPrivateNatGatewayAddressRequest.struct_class = Types::UnassignPrivateNatGatewayAddressRequest
|
14099
|
+
|
14100
|
+
UnassignPrivateNatGatewayAddressResult.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, location_name: "natGatewayId"))
|
14101
|
+
UnassignPrivateNatGatewayAddressResult.add_member(:nat_gateway_addresses, Shapes::ShapeRef.new(shape: NatGatewayAddressList, location_name: "natGatewayAddressSet"))
|
14102
|
+
UnassignPrivateNatGatewayAddressResult.struct_class = Types::UnassignPrivateNatGatewayAddressResult
|
14103
|
+
|
14032
14104
|
UnmonitorInstancesRequest.add_member(:instance_ids, Shapes::ShapeRef.new(shape: InstanceIdStringList, required: true, location_name: "InstanceId"))
|
14033
14105
|
UnmonitorInstancesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
14034
14106
|
UnmonitorInstancesRequest.struct_class = Types::UnmonitorInstancesRequest
|
@@ -14767,6 +14839,14 @@ module Aws::EC2
|
|
14767
14839
|
o.output = Shapes::ShapeRef.new(shape: AssignPrivateIpAddressesResult)
|
14768
14840
|
end)
|
14769
14841
|
|
14842
|
+
api.add_operation(:assign_private_nat_gateway_address, Seahorse::Model::Operation.new.tap do |o|
|
14843
|
+
o.name = "AssignPrivateNatGatewayAddress"
|
14844
|
+
o.http_method = "POST"
|
14845
|
+
o.http_request_uri = "/"
|
14846
|
+
o.input = Shapes::ShapeRef.new(shape: AssignPrivateNatGatewayAddressRequest)
|
14847
|
+
o.output = Shapes::ShapeRef.new(shape: AssignPrivateNatGatewayAddressResult)
|
14848
|
+
end)
|
14849
|
+
|
14770
14850
|
api.add_operation(:associate_address, Seahorse::Model::Operation.new.tap do |o|
|
14771
14851
|
o.name = "AssociateAddress"
|
14772
14852
|
o.http_method = "POST"
|
@@ -14823,6 +14903,14 @@ module Aws::EC2
|
|
14823
14903
|
o.output = Shapes::ShapeRef.new(shape: AssociateIpamResourceDiscoveryResult)
|
14824
14904
|
end)
|
14825
14905
|
|
14906
|
+
api.add_operation(:associate_nat_gateway_address, Seahorse::Model::Operation.new.tap do |o|
|
14907
|
+
o.name = "AssociateNatGatewayAddress"
|
14908
|
+
o.http_method = "POST"
|
14909
|
+
o.http_request_uri = "/"
|
14910
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateNatGatewayAddressRequest)
|
14911
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateNatGatewayAddressResult)
|
14912
|
+
end)
|
14913
|
+
|
14826
14914
|
api.add_operation(:associate_route_table, Seahorse::Model::Operation.new.tap do |o|
|
14827
14915
|
o.name = "AssociateRouteTable"
|
14828
14916
|
o.http_method = "POST"
|
@@ -18362,6 +18450,14 @@ module Aws::EC2
|
|
18362
18450
|
o.output = Shapes::ShapeRef.new(shape: DisassociateIpamResourceDiscoveryResult)
|
18363
18451
|
end)
|
18364
18452
|
|
18453
|
+
api.add_operation(:disassociate_nat_gateway_address, Seahorse::Model::Operation.new.tap do |o|
|
18454
|
+
o.name = "DisassociateNatGatewayAddress"
|
18455
|
+
o.http_method = "POST"
|
18456
|
+
o.http_request_uri = "/"
|
18457
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateNatGatewayAddressRequest)
|
18458
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateNatGatewayAddressResult)
|
18459
|
+
end)
|
18460
|
+
|
18365
18461
|
api.add_operation(:disassociate_route_table, Seahorse::Model::Operation.new.tap do |o|
|
18366
18462
|
o.name = "DisassociateRouteTable"
|
18367
18463
|
o.http_method = "POST"
|
@@ -20106,6 +20202,14 @@ module Aws::EC2
|
|
20106
20202
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
20107
20203
|
end)
|
20108
20204
|
|
20205
|
+
api.add_operation(:unassign_private_nat_gateway_address, Seahorse::Model::Operation.new.tap do |o|
|
20206
|
+
o.name = "UnassignPrivateNatGatewayAddress"
|
20207
|
+
o.http_method = "POST"
|
20208
|
+
o.http_request_uri = "/"
|
20209
|
+
o.input = Shapes::ShapeRef.new(shape: UnassignPrivateNatGatewayAddressRequest)
|
20210
|
+
o.output = Shapes::ShapeRef.new(shape: UnassignPrivateNatGatewayAddressResult)
|
20211
|
+
end)
|
20212
|
+
|
20109
20213
|
api.add_operation(:unmonitor_instances, Seahorse::Model::Operation.new.tap do |o|
|
20110
20214
|
o.name = "UnmonitorInstances"
|
20111
20215
|
o.http_method = "POST"
|
@@ -207,6 +207,20 @@ module Aws::EC2
|
|
207
207
|
end
|
208
208
|
end
|
209
209
|
|
210
|
+
class AssignPrivateNatGatewayAddress
|
211
|
+
def self.build(context)
|
212
|
+
unless context.config.regional_endpoint
|
213
|
+
endpoint = context.config.endpoint.to_s
|
214
|
+
end
|
215
|
+
Aws::EC2::EndpointParameters.new(
|
216
|
+
region: context.config.region,
|
217
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
218
|
+
use_fips: context.config.use_fips_endpoint,
|
219
|
+
endpoint: endpoint,
|
220
|
+
)
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
210
224
|
class AssociateAddress
|
211
225
|
def self.build(context)
|
212
226
|
unless context.config.regional_endpoint
|
@@ -305,6 +319,20 @@ module Aws::EC2
|
|
305
319
|
end
|
306
320
|
end
|
307
321
|
|
322
|
+
class AssociateNatGatewayAddress
|
323
|
+
def self.build(context)
|
324
|
+
unless context.config.regional_endpoint
|
325
|
+
endpoint = context.config.endpoint.to_s
|
326
|
+
end
|
327
|
+
Aws::EC2::EndpointParameters.new(
|
328
|
+
region: context.config.region,
|
329
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
330
|
+
use_fips: context.config.use_fips_endpoint,
|
331
|
+
endpoint: endpoint,
|
332
|
+
)
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
308
336
|
class AssociateRouteTable
|
309
337
|
def self.build(context)
|
310
338
|
unless context.config.regional_endpoint
|
@@ -5345,6 +5373,20 @@ module Aws::EC2
|
|
5345
5373
|
end
|
5346
5374
|
end
|
5347
5375
|
|
5376
|
+
class DisassociateNatGatewayAddress
|
5377
|
+
def self.build(context)
|
5378
|
+
unless context.config.regional_endpoint
|
5379
|
+
endpoint = context.config.endpoint.to_s
|
5380
|
+
end
|
5381
|
+
Aws::EC2::EndpointParameters.new(
|
5382
|
+
region: context.config.region,
|
5383
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
5384
|
+
use_fips: context.config.use_fips_endpoint,
|
5385
|
+
endpoint: endpoint,
|
5386
|
+
)
|
5387
|
+
end
|
5388
|
+
end
|
5389
|
+
|
5348
5390
|
class DisassociateRouteTable
|
5349
5391
|
def self.build(context)
|
5350
5392
|
unless context.config.regional_endpoint
|
@@ -8145,6 +8187,20 @@ module Aws::EC2
|
|
8145
8187
|
end
|
8146
8188
|
end
|
8147
8189
|
|
8190
|
+
class UnassignPrivateNatGatewayAddress
|
8191
|
+
def self.build(context)
|
8192
|
+
unless context.config.regional_endpoint
|
8193
|
+
endpoint = context.config.endpoint.to_s
|
8194
|
+
end
|
8195
|
+
Aws::EC2::EndpointParameters.new(
|
8196
|
+
region: context.config.region,
|
8197
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
8198
|
+
use_fips: context.config.use_fips_endpoint,
|
8199
|
+
endpoint: endpoint,
|
8200
|
+
)
|
8201
|
+
end
|
8202
|
+
end
|
8203
|
+
|
8148
8204
|
class UnmonitorInstances
|
8149
8205
|
def self.build(context)
|
8150
8206
|
unless context.config.regional_endpoint
|
@@ -84,6 +84,8 @@ module Aws::EC2
|
|
84
84
|
Aws::EC2::Endpoints::AssignIpv6Addresses.build(context)
|
85
85
|
when :assign_private_ip_addresses
|
86
86
|
Aws::EC2::Endpoints::AssignPrivateIpAddresses.build(context)
|
87
|
+
when :assign_private_nat_gateway_address
|
88
|
+
Aws::EC2::Endpoints::AssignPrivateNatGatewayAddress.build(context)
|
87
89
|
when :associate_address
|
88
90
|
Aws::EC2::Endpoints::AssociateAddress.build(context)
|
89
91
|
when :associate_client_vpn_target_network
|
@@ -98,6 +100,8 @@ module Aws::EC2
|
|
98
100
|
Aws::EC2::Endpoints::AssociateInstanceEventWindow.build(context)
|
99
101
|
when :associate_ipam_resource_discovery
|
100
102
|
Aws::EC2::Endpoints::AssociateIpamResourceDiscovery.build(context)
|
103
|
+
when :associate_nat_gateway_address
|
104
|
+
Aws::EC2::Endpoints::AssociateNatGatewayAddress.build(context)
|
101
105
|
when :associate_route_table
|
102
106
|
Aws::EC2::Endpoints::AssociateRouteTable.build(context)
|
103
107
|
when :associate_subnet_cidr_block
|
@@ -818,6 +822,8 @@ module Aws::EC2
|
|
818
822
|
Aws::EC2::Endpoints::DisassociateInstanceEventWindow.build(context)
|
819
823
|
when :disassociate_ipam_resource_discovery
|
820
824
|
Aws::EC2::Endpoints::DisassociateIpamResourceDiscovery.build(context)
|
825
|
+
when :disassociate_nat_gateway_address
|
826
|
+
Aws::EC2::Endpoints::DisassociateNatGatewayAddress.build(context)
|
821
827
|
when :disassociate_route_table
|
822
828
|
Aws::EC2::Endpoints::DisassociateRouteTable.build(context)
|
823
829
|
when :disassociate_subnet_cidr_block
|
@@ -1218,6 +1224,8 @@ module Aws::EC2
|
|
1218
1224
|
Aws::EC2::Endpoints::UnassignIpv6Addresses.build(context)
|
1219
1225
|
when :unassign_private_ip_addresses
|
1220
1226
|
Aws::EC2::Endpoints::UnassignPrivateIpAddresses.build(context)
|
1227
|
+
when :unassign_private_nat_gateway_address
|
1228
|
+
Aws::EC2::Endpoints::UnassignPrivateNatGatewayAddress.build(context)
|
1221
1229
|
when :unmonitor_instances
|
1222
1230
|
Aws::EC2::Endpoints::UnmonitorInstances.build(context)
|
1223
1231
|
when :update_security_group_rule_descriptions_egress
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -705,6 +705,9 @@ module Aws::EC2
|
|
705
705
|
# ],
|
706
706
|
# connectivity_type: "private", # accepts private, public
|
707
707
|
# private_ip_address: "String",
|
708
|
+
# secondary_allocation_ids: ["AllocationId"],
|
709
|
+
# secondary_private_ip_addresses: ["String"],
|
710
|
+
# secondary_private_ip_address_count: 1,
|
708
711
|
# })
|
709
712
|
# @param [Hash] options ({})
|
710
713
|
# @option options [String] :allocation_id
|
@@ -729,7 +732,7 @@ module Aws::EC2
|
|
729
732
|
# If you have the required permissions, the error response is
|
730
733
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
731
734
|
# @option options [required, String] :subnet_id
|
732
|
-
# The subnet in which to create the NAT gateway.
|
735
|
+
# The ID of the subnet in which to create the NAT gateway.
|
733
736
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
734
737
|
# The tags to assign to the NAT gateway.
|
735
738
|
# @option options [String] :connectivity_type
|
@@ -739,6 +742,31 @@ module Aws::EC2
|
|
739
742
|
# The private IPv4 address to assign to the NAT gateway. If you don't
|
740
743
|
# provide an address, a private IPv4 address will be automatically
|
741
744
|
# assigned.
|
745
|
+
# @option options [Array<String>] :secondary_allocation_ids
|
746
|
+
# Secondary EIP allocation IDs. For more information about secondary
|
747
|
+
# addresses, see [Create a NAT gateway][1] in the *Amazon Virtual
|
748
|
+
# Private Cloud User Guide*.
|
749
|
+
#
|
750
|
+
#
|
751
|
+
#
|
752
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
|
753
|
+
# @option options [Array<String>] :secondary_private_ip_addresses
|
754
|
+
# Secondary private IPv4 addresses. For more information about secondary
|
755
|
+
# addresses, see [Create a NAT gateway][1] in the *Amazon Virtual
|
756
|
+
# Private Cloud User Guide*.
|
757
|
+
#
|
758
|
+
#
|
759
|
+
#
|
760
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
|
761
|
+
# @option options [Integer] :secondary_private_ip_address_count
|
762
|
+
# \[Private NAT gateway only\] The number of secondary private IPv4
|
763
|
+
# addresses you want to assign to the NAT gateway. For more information
|
764
|
+
# about secondary addresses, see [Create a NAT gateway][1] in the
|
765
|
+
# *Amazon Virtual Private Cloud User Guide*.
|
766
|
+
#
|
767
|
+
#
|
768
|
+
#
|
769
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
|
742
770
|
# @return [NatGateway]
|
743
771
|
def create_nat_gateway(options = {})
|
744
772
|
resp = @client.create_nat_gateway(options)
|
data/lib/aws-sdk-ec2/snapshot.rb
CHANGED
@@ -318,7 +318,7 @@ module Aws::EC2
|
|
318
318
|
# destination_region: "String",
|
319
319
|
# encrypted: false,
|
320
320
|
# kms_key_id: "KmsKeyId",
|
321
|
-
# presigned_url: "
|
321
|
+
# presigned_url: "CopySnapshotRequestPSU",
|
322
322
|
# source_region: "String", # required
|
323
323
|
# tag_specifications: [
|
324
324
|
# {
|