aws-sdk-elasticloadbalancingv2 1.129.0 → 1.131.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a3c731a408f20cbdf975128fe8816ec4ebff662ff9799f285774e3be34f88c3
4
- data.tar.gz: 8869c2885bcd1c2d98db4bacc098d7d7925d889668fb07ec4dc59db2f0288ad6
3
+ metadata.gz: 42fbf47914ac133a819412e26a8147b62b1429b83c090e54c65199243b3a2924
4
+ data.tar.gz: 56f8c8e1b0e7cc4c4802596a43c1f061dc446704d01e1881facd37db82f4bff0
5
5
  SHA512:
6
- metadata.gz: 821439949b1f5812216b51ddea0dbc06e41920bcbdf430fc2b7f02e1fd7f97389a34b911452db87f6cad0577d0289b8016827a07039bf32f7478f9817958f0c6
7
- data.tar.gz: 41596b78a5e16dd197badd93893688ae83bc7fefc4dbb0e7f5f69b72a9f0f51405238d156c5422cc90252d402cd47d97a078b4b035b9862358987f4b12edf7aa
6
+ metadata.gz: ffd3d397b2f3b24d4b5d13f68275fe4177fc194a899510508bab177bfd872a065ac9e27a2d5bf4de9ad6a16396a768ef3fe73918c537ae1bff7009d97a001517
7
+ data.tar.gz: ee67b2f05cdcb1efd902b469db190880be3da7a1f5334a6be7226cb26572b0f067ecba22faf1fe3897fe12100d5e729a2763e5bc4299c304e3f8247eb28b7de3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.131.0 (2025-05-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.130.0 (2025-03-07)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for assigning IP addresses to Application Load Balancers from VPC IP Address Manager pools.
13
+
4
14
  1.129.0 (2025-03-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.131.0
@@ -1077,6 +1077,10 @@ module Aws::ElasticLoadBalancingV2
1077
1077
  # an IPv6 prefix from each subnet for source NAT. The IP address type
1078
1078
  # must be `dualstack`. The default value is `off`.
1079
1079
  #
1080
+ # @option params [Types::IpamPools] :ipam_pools
1081
+ # \[Application Load Balancers\] The IPAM pools to use with the load
1082
+ # balancer.
1083
+ #
1080
1084
  # @return [Types::CreateLoadBalancerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1081
1085
  #
1082
1086
  # * {Types::CreateLoadBalancerOutput#load_balancers #load_balancers} => Array<Types::LoadBalancer>
@@ -1199,6 +1203,9 @@ module Aws::ElasticLoadBalancingV2
1199
1203
  # ip_address_type: "ipv4", # accepts ipv4, dualstack, dualstack-without-public-ipv4
1200
1204
  # customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
1201
1205
  # enable_prefix_for_ipv_6_source_nat: "on", # accepts on, off
1206
+ # ipam_pools: {
1207
+ # ipv_4_ipam_pool_id: "IpamPoolId",
1208
+ # },
1202
1209
  # })
1203
1210
  #
1204
1211
  # @example Response structure
@@ -1231,6 +1238,7 @@ module Aws::ElasticLoadBalancingV2
1231
1238
  # resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
1232
1239
  # resp.load_balancers[0].enforce_security_group_inbound_rules_on_private_link_traffic #=> String
1233
1240
  # resp.load_balancers[0].enable_prefix_for_ipv_6_source_nat #=> String, one of "on", "off"
1241
+ # resp.load_balancers[0].ipam_pools.ipv_4_ipam_pool_id #=> String
1234
1242
  #
1235
1243
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancer AWS API Documentation
1236
1244
  #
@@ -2596,6 +2604,7 @@ module Aws::ElasticLoadBalancingV2
2596
2604
  # resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
2597
2605
  # resp.load_balancers[0].enforce_security_group_inbound_rules_on_private_link_traffic #=> String
2598
2606
  # resp.load_balancers[0].enable_prefix_for_ipv_6_source_nat #=> String, one of "on", "off"
2607
+ # resp.load_balancers[0].ipam_pools.ipv_4_ipam_pool_id #=> String
2599
2608
  # resp.next_marker #=> String
2600
2609
  #
2601
2610
  #
@@ -3597,6 +3606,45 @@ module Aws::ElasticLoadBalancingV2
3597
3606
  req.send_request(options)
3598
3607
  end
3599
3608
 
3609
+ # \[Application Load Balancers\] Modify the IP pool associated to a load
3610
+ # balancer.
3611
+ #
3612
+ # @option params [required, String] :load_balancer_arn
3613
+ # The Amazon Resource Name (ARN) of the load balancer.
3614
+ #
3615
+ # @option params [Types::IpamPools] :ipam_pools
3616
+ # The IPAM pools to be modified.
3617
+ #
3618
+ # @option params [Array<String>] :remove_ipam_pools
3619
+ # Remove the IP pools in use by the load balancer.
3620
+ #
3621
+ # @return [Types::ModifyIpPoolsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3622
+ #
3623
+ # * {Types::ModifyIpPoolsOutput#ipam_pools #ipam_pools} => Types::IpamPools
3624
+ #
3625
+ # @example Request syntax with placeholder values
3626
+ #
3627
+ # resp = client.modify_ip_pools({
3628
+ # load_balancer_arn: "LoadBalancerArn", # required
3629
+ # ipam_pools: {
3630
+ # ipv_4_ipam_pool_id: "IpamPoolId",
3631
+ # },
3632
+ # remove_ipam_pools: ["ipv4"], # accepts ipv4
3633
+ # })
3634
+ #
3635
+ # @example Response structure
3636
+ #
3637
+ # resp.ipam_pools.ipv_4_ipam_pool_id #=> String
3638
+ #
3639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyIpPools AWS API Documentation
3640
+ #
3641
+ # @overload modify_ip_pools(params = {})
3642
+ # @param [Hash] params ({})
3643
+ def modify_ip_pools(params = {}, options = {})
3644
+ req = build_request(:modify_ip_pools, params)
3645
+ req.send_request(options)
3646
+ end
3647
+
3600
3648
  # Replaces the specified properties of the specified listener. Any
3601
3649
  # properties that you do not specify remain unchanged.
3602
3650
  #
@@ -5214,7 +5262,7 @@ module Aws::ElasticLoadBalancingV2
5214
5262
  tracer: tracer
5215
5263
  )
5216
5264
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5217
- context[:gem_version] = '1.129.0'
5265
+ context[:gem_version] = '1.131.0'
5218
5266
  Seahorse::Client::Request.new(handlers, context)
5219
5267
  end
5220
5268
 
@@ -14,7 +14,7 @@ module Aws::ElasticLoadBalancingV2
14
14
 
15
15
  include Seahorse::Model
16
16
 
17
- ALPNPolicyNotSupportedException = Shapes::StructureShape.new(name: 'ALPNPolicyNotSupportedException', error: {"code"=>"ALPNPolicyNotFound", "httpStatusCode"=>400, "senderFault"=>true})
17
+ ALPNPolicyNotSupportedException = Shapes::StructureShape.new(name: 'ALPNPolicyNotSupportedException', error: {"code" => "ALPNPolicyNotFound", "httpStatusCode" => 400, "senderFault" => true})
18
18
  Action = Shapes::StructureShape.new(name: 'Action')
19
19
  ActionOrder = Shapes::IntegerShape.new(name: 'ActionOrder')
20
20
  ActionTypeEnum = Shapes::StringShape.new(name: 'ActionTypeEnum')
@@ -28,7 +28,7 @@ module Aws::ElasticLoadBalancingV2
28
28
  AdministrativeOverride = Shapes::StructureShape.new(name: 'AdministrativeOverride')
29
29
  AdvertiseTrustStoreCaNamesEnum = Shapes::StringShape.new(name: 'AdvertiseTrustStoreCaNamesEnum')
30
30
  AllocationId = Shapes::StringShape.new(name: 'AllocationId')
31
- AllocationIdNotFoundException = Shapes::StructureShape.new(name: 'AllocationIdNotFoundException', error: {"code"=>"AllocationIdNotFound", "httpStatusCode"=>400, "senderFault"=>true})
31
+ AllocationIdNotFoundException = Shapes::StructureShape.new(name: 'AllocationIdNotFoundException', error: {"code" => "AllocationIdNotFound", "httpStatusCode" => 400, "senderFault" => true})
32
32
  AlpnPolicyName = Shapes::ListShape.new(name: 'AlpnPolicyName')
33
33
  AlpnPolicyValue = Shapes::StringShape.new(name: 'AlpnPolicyValue')
34
34
  AnomalyDetection = Shapes::StructureShape.new(name: 'AnomalyDetection')
@@ -60,21 +60,21 @@ module Aws::ElasticLoadBalancingV2
60
60
  AuthenticateOidcActionUseExistingClientSecret = Shapes::BooleanShape.new(name: 'AuthenticateOidcActionUseExistingClientSecret')
61
61
  AuthenticateOidcActionUserInfoEndpoint = Shapes::StringShape.new(name: 'AuthenticateOidcActionUserInfoEndpoint')
62
62
  AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
63
- AvailabilityZoneNotSupportedException = Shapes::StructureShape.new(name: 'AvailabilityZoneNotSupportedException', error: {"code"=>"AvailabilityZoneNotSupported", "httpStatusCode"=>400, "senderFault"=>true})
63
+ AvailabilityZoneNotSupportedException = Shapes::StructureShape.new(name: 'AvailabilityZoneNotSupportedException', error: {"code" => "AvailabilityZoneNotSupported", "httpStatusCode" => 400, "senderFault" => true})
64
64
  AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
65
- CaCertificatesBundleNotFoundException = Shapes::StructureShape.new(name: 'CaCertificatesBundleNotFoundException', error: {"code"=>"CaCertificatesBundleNotFound", "httpStatusCode"=>400, "senderFault"=>true})
65
+ CaCertificatesBundleNotFoundException = Shapes::StructureShape.new(name: 'CaCertificatesBundleNotFoundException', error: {"code" => "CaCertificatesBundleNotFound", "httpStatusCode" => 400, "senderFault" => true})
66
66
  CanonicalHostedZoneId = Shapes::StringShape.new(name: 'CanonicalHostedZoneId')
67
- CapacityDecreaseRequestsLimitExceededException = Shapes::StructureShape.new(name: 'CapacityDecreaseRequestsLimitExceededException', error: {"code"=>"CapacityDecreaseRequestLimitExceeded", "httpStatusCode"=>400, "senderFault"=>true})
68
- CapacityReservationPendingException = Shapes::StructureShape.new(name: 'CapacityReservationPendingException', error: {"code"=>"CapacityReservationPending", "httpStatusCode"=>400, "senderFault"=>true})
67
+ CapacityDecreaseRequestsLimitExceededException = Shapes::StructureShape.new(name: 'CapacityDecreaseRequestsLimitExceededException', error: {"code" => "CapacityDecreaseRequestLimitExceeded", "httpStatusCode" => 400, "senderFault" => true})
68
+ CapacityReservationPendingException = Shapes::StructureShape.new(name: 'CapacityReservationPendingException', error: {"code" => "CapacityReservationPending", "httpStatusCode" => 400, "senderFault" => true})
69
69
  CapacityReservationStateEnum = Shapes::StringShape.new(name: 'CapacityReservationStateEnum')
70
70
  CapacityReservationStatus = Shapes::StructureShape.new(name: 'CapacityReservationStatus')
71
71
  CapacityUnits = Shapes::IntegerShape.new(name: 'CapacityUnits')
72
72
  CapacityUnitsDouble = Shapes::FloatShape.new(name: 'CapacityUnitsDouble')
73
- CapacityUnitsLimitExceededException = Shapes::StructureShape.new(name: 'CapacityUnitsLimitExceededException', error: {"code"=>"CapacityUnitsLimitExceeded", "httpStatusCode"=>400, "senderFault"=>true})
73
+ CapacityUnitsLimitExceededException = Shapes::StructureShape.new(name: 'CapacityUnitsLimitExceededException', error: {"code" => "CapacityUnitsLimitExceeded", "httpStatusCode" => 400, "senderFault" => true})
74
74
  Certificate = Shapes::StructureShape.new(name: 'Certificate')
75
75
  CertificateArn = Shapes::StringShape.new(name: 'CertificateArn')
76
76
  CertificateList = Shapes::ListShape.new(name: 'CertificateList')
77
- CertificateNotFoundException = Shapes::StructureShape.new(name: 'CertificateNotFoundException', error: {"code"=>"CertificateNotFound", "httpStatusCode"=>400, "senderFault"=>true})
77
+ CertificateNotFoundException = Shapes::StructureShape.new(name: 'CertificateNotFoundException', error: {"code" => "CertificateNotFound", "httpStatusCode" => 400, "senderFault" => true})
78
78
  Cipher = Shapes::StructureShape.new(name: 'Cipher')
79
79
  CipherName = Shapes::StringShape.new(name: 'CipherName')
80
80
  CipherPriority = Shapes::IntegerShape.new(name: 'CipherPriority')
@@ -95,7 +95,7 @@ module Aws::ElasticLoadBalancingV2
95
95
  DNSName = Shapes::StringShape.new(name: 'DNSName')
96
96
  DecreaseRequestsRemaining = Shapes::IntegerShape.new(name: 'DecreaseRequestsRemaining')
97
97
  Default = Shapes::BooleanShape.new(name: 'Default')
98
- DeleteAssociationSameAccountException = Shapes::StructureShape.new(name: 'DeleteAssociationSameAccountException', error: {"code"=>"DeleteAssociationSameAccount", "httpStatusCode"=>400, "senderFault"=>true})
98
+ DeleteAssociationSameAccountException = Shapes::StructureShape.new(name: 'DeleteAssociationSameAccountException', error: {"code" => "DeleteAssociationSameAccount", "httpStatusCode" => 400, "senderFault" => true})
99
99
  DeleteListenerInput = Shapes::StructureShape.new(name: 'DeleteListenerInput')
100
100
  DeleteListenerOutput = Shapes::StructureShape.new(name: 'DeleteListenerOutput')
101
101
  DeleteLoadBalancerInput = Shapes::StructureShape.new(name: 'DeleteLoadBalancerInput')
@@ -146,11 +146,11 @@ module Aws::ElasticLoadBalancingV2
146
146
  DescribeTrustStoresInput = Shapes::StructureShape.new(name: 'DescribeTrustStoresInput')
147
147
  DescribeTrustStoresOutput = Shapes::StructureShape.new(name: 'DescribeTrustStoresOutput')
148
148
  Description = Shapes::StringShape.new(name: 'Description')
149
- DuplicateListenerException = Shapes::StructureShape.new(name: 'DuplicateListenerException', error: {"code"=>"DuplicateListener", "httpStatusCode"=>400, "senderFault"=>true})
150
- DuplicateLoadBalancerNameException = Shapes::StructureShape.new(name: 'DuplicateLoadBalancerNameException', error: {"code"=>"DuplicateLoadBalancerName", "httpStatusCode"=>400, "senderFault"=>true})
151
- DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException', error: {"code"=>"DuplicateTagKeys", "httpStatusCode"=>400, "senderFault"=>true})
152
- DuplicateTargetGroupNameException = Shapes::StructureShape.new(name: 'DuplicateTargetGroupNameException', error: {"code"=>"DuplicateTargetGroupName", "httpStatusCode"=>400, "senderFault"=>true})
153
- DuplicateTrustStoreNameException = Shapes::StructureShape.new(name: 'DuplicateTrustStoreNameException', error: {"code"=>"DuplicateTrustStoreName", "httpStatusCode"=>400, "senderFault"=>true})
149
+ DuplicateListenerException = Shapes::StructureShape.new(name: 'DuplicateListenerException', error: {"code" => "DuplicateListener", "httpStatusCode" => 400, "senderFault" => true})
150
+ DuplicateLoadBalancerNameException = Shapes::StructureShape.new(name: 'DuplicateLoadBalancerNameException', error: {"code" => "DuplicateLoadBalancerName", "httpStatusCode" => 400, "senderFault" => true})
151
+ DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException', error: {"code" => "DuplicateTagKeys", "httpStatusCode" => 400, "senderFault" => true})
152
+ DuplicateTargetGroupNameException = Shapes::StructureShape.new(name: 'DuplicateTargetGroupNameException', error: {"code" => "DuplicateTargetGroupName", "httpStatusCode" => 400, "senderFault" => true})
153
+ DuplicateTrustStoreNameException = Shapes::StructureShape.new(name: 'DuplicateTrustStoreNameException', error: {"code" => "DuplicateTrustStoreName", "httpStatusCode" => 400, "senderFault" => true})
154
154
  EnablePrefixForIpv6SourceNatEnum = Shapes::StringShape.new(name: 'EnablePrefixForIpv6SourceNatEnum')
155
155
  EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic = Shapes::StringShape.new(name: 'EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic')
156
156
  EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum = Shapes::StringShape.new(name: 'EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum')
@@ -171,7 +171,7 @@ module Aws::ElasticLoadBalancingV2
171
171
  HealthCheckPort = Shapes::StringShape.new(name: 'HealthCheckPort')
172
172
  HealthCheckThresholdCount = Shapes::IntegerShape.new(name: 'HealthCheckThresholdCount')
173
173
  HealthCheckTimeoutSeconds = Shapes::IntegerShape.new(name: 'HealthCheckTimeoutSeconds')
174
- HealthUnavailableException = Shapes::StructureShape.new(name: 'HealthUnavailableException', error: {"code"=>"HealthUnavailable", "httpStatusCode"=>500})
174
+ HealthUnavailableException = Shapes::StructureShape.new(name: 'HealthUnavailableException', error: {"code" => "HealthUnavailable", "httpStatusCode" => 500})
175
175
  HostHeaderConditionConfig = Shapes::StructureShape.new(name: 'HostHeaderConditionConfig')
176
176
  HttpCode = Shapes::StringShape.new(name: 'HttpCode')
177
177
  HttpHeaderConditionConfig = Shapes::StructureShape.new(name: 'HttpHeaderConditionConfig')
@@ -179,18 +179,20 @@ module Aws::ElasticLoadBalancingV2
179
179
  HttpRequestMethodConditionConfig = Shapes::StructureShape.new(name: 'HttpRequestMethodConditionConfig')
180
180
  IPv6Address = Shapes::StringShape.new(name: 'IPv6Address')
181
181
  IgnoreClientCertificateExpiry = Shapes::BooleanShape.new(name: 'IgnoreClientCertificateExpiry')
182
- IncompatibleProtocolsException = Shapes::StructureShape.new(name: 'IncompatibleProtocolsException', error: {"code"=>"IncompatibleProtocols", "httpStatusCode"=>400, "senderFault"=>true})
183
- InsufficientCapacityException = Shapes::StructureShape.new(name: 'InsufficientCapacityException', error: {"code"=>"InsufficientCapacity", "httpStatusCode"=>500})
184
- InvalidCaCertificatesBundleException = Shapes::StructureShape.new(name: 'InvalidCaCertificatesBundleException', error: {"code"=>"InvalidCaCertificatesBundle", "httpStatusCode"=>400, "senderFault"=>true})
185
- InvalidConfigurationRequestException = Shapes::StructureShape.new(name: 'InvalidConfigurationRequestException', error: {"code"=>"InvalidConfigurationRequest", "httpStatusCode"=>400, "senderFault"=>true})
186
- InvalidLoadBalancerActionException = Shapes::StructureShape.new(name: 'InvalidLoadBalancerActionException', error: {"code"=>"InvalidLoadBalancerAction", "httpStatusCode"=>400, "senderFault"=>true})
187
- InvalidRevocationContentException = Shapes::StructureShape.new(name: 'InvalidRevocationContentException', error: {"code"=>"InvalidRevocationContent", "httpStatusCode"=>400, "senderFault"=>true})
188
- InvalidSchemeException = Shapes::StructureShape.new(name: 'InvalidSchemeException', error: {"code"=>"InvalidScheme", "httpStatusCode"=>400, "senderFault"=>true})
189
- InvalidSecurityGroupException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupException', error: {"code"=>"InvalidSecurityGroup", "httpStatusCode"=>400, "senderFault"=>true})
190
- InvalidSubnetException = Shapes::StructureShape.new(name: 'InvalidSubnetException', error: {"code"=>"InvalidSubnet", "httpStatusCode"=>400, "senderFault"=>true})
191
- InvalidTargetException = Shapes::StructureShape.new(name: 'InvalidTargetException', error: {"code"=>"InvalidTarget", "httpStatusCode"=>400, "senderFault"=>true})
182
+ IncompatibleProtocolsException = Shapes::StructureShape.new(name: 'IncompatibleProtocolsException', error: {"code" => "IncompatibleProtocols", "httpStatusCode" => 400, "senderFault" => true})
183
+ InsufficientCapacityException = Shapes::StructureShape.new(name: 'InsufficientCapacityException', error: {"code" => "InsufficientCapacity", "httpStatusCode" => 500})
184
+ InvalidCaCertificatesBundleException = Shapes::StructureShape.new(name: 'InvalidCaCertificatesBundleException', error: {"code" => "InvalidCaCertificatesBundle", "httpStatusCode" => 400, "senderFault" => true})
185
+ InvalidConfigurationRequestException = Shapes::StructureShape.new(name: 'InvalidConfigurationRequestException', error: {"code" => "InvalidConfigurationRequest", "httpStatusCode" => 400, "senderFault" => true})
186
+ InvalidLoadBalancerActionException = Shapes::StructureShape.new(name: 'InvalidLoadBalancerActionException', error: {"code" => "InvalidLoadBalancerAction", "httpStatusCode" => 400, "senderFault" => true})
187
+ InvalidRevocationContentException = Shapes::StructureShape.new(name: 'InvalidRevocationContentException', error: {"code" => "InvalidRevocationContent", "httpStatusCode" => 400, "senderFault" => true})
188
+ InvalidSchemeException = Shapes::StructureShape.new(name: 'InvalidSchemeException', error: {"code" => "InvalidScheme", "httpStatusCode" => 400, "senderFault" => true})
189
+ InvalidSecurityGroupException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupException', error: {"code" => "InvalidSecurityGroup", "httpStatusCode" => 400, "senderFault" => true})
190
+ InvalidSubnetException = Shapes::StructureShape.new(name: 'InvalidSubnetException', error: {"code" => "InvalidSubnet", "httpStatusCode" => 400, "senderFault" => true})
191
+ InvalidTargetException = Shapes::StructureShape.new(name: 'InvalidTargetException', error: {"code" => "InvalidTarget", "httpStatusCode" => 400, "senderFault" => true})
192
192
  IpAddress = Shapes::StringShape.new(name: 'IpAddress')
193
193
  IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
194
+ IpamPoolId = Shapes::StringShape.new(name: 'IpamPoolId')
195
+ IpamPools = Shapes::StructureShape.new(name: 'IpamPools')
194
196
  IsDefault = Shapes::BooleanShape.new(name: 'IsDefault')
195
197
  LastModifiedTime = Shapes::TimestampShape.new(name: 'LastModifiedTime')
196
198
  Limit = Shapes::StructureShape.new(name: 'Limit')
@@ -204,7 +206,7 @@ module Aws::ElasticLoadBalancingV2
204
206
  ListenerAttributeKey = Shapes::StringShape.new(name: 'ListenerAttributeKey')
205
207
  ListenerAttributeValue = Shapes::StringShape.new(name: 'ListenerAttributeValue')
206
208
  ListenerAttributes = Shapes::ListShape.new(name: 'ListenerAttributes')
207
- ListenerNotFoundException = Shapes::StructureShape.new(name: 'ListenerNotFoundException', error: {"code"=>"ListenerNotFound", "httpStatusCode"=>400, "senderFault"=>true})
209
+ ListenerNotFoundException = Shapes::StructureShape.new(name: 'ListenerNotFoundException', error: {"code" => "ListenerNotFound", "httpStatusCode" => 400, "senderFault" => true})
208
210
  Listeners = Shapes::ListShape.new(name: 'Listeners')
209
211
  LoadBalancer = Shapes::StructureShape.new(name: 'LoadBalancer')
210
212
  LoadBalancerAddress = Shapes::StructureShape.new(name: 'LoadBalancerAddress')
@@ -217,7 +219,7 @@ module Aws::ElasticLoadBalancingV2
217
219
  LoadBalancerAttributes = Shapes::ListShape.new(name: 'LoadBalancerAttributes')
218
220
  LoadBalancerName = Shapes::StringShape.new(name: 'LoadBalancerName')
219
221
  LoadBalancerNames = Shapes::ListShape.new(name: 'LoadBalancerNames')
220
- LoadBalancerNotFoundException = Shapes::StructureShape.new(name: 'LoadBalancerNotFoundException', error: {"code"=>"LoadBalancerNotFound", "httpStatusCode"=>400, "senderFault"=>true})
222
+ LoadBalancerNotFoundException = Shapes::StructureShape.new(name: 'LoadBalancerNotFoundException', error: {"code" => "LoadBalancerNotFound", "httpStatusCode" => 400, "senderFault" => true})
221
223
  LoadBalancerSchemeEnum = Shapes::StringShape.new(name: 'LoadBalancerSchemeEnum')
222
224
  LoadBalancerState = Shapes::StructureShape.new(name: 'LoadBalancerState')
223
225
  LoadBalancerStateEnum = Shapes::StringShape.new(name: 'LoadBalancerStateEnum')
@@ -232,6 +234,8 @@ module Aws::ElasticLoadBalancingV2
232
234
  Mode = Shapes::StringShape.new(name: 'Mode')
233
235
  ModifyCapacityReservationInput = Shapes::StructureShape.new(name: 'ModifyCapacityReservationInput')
234
236
  ModifyCapacityReservationOutput = Shapes::StructureShape.new(name: 'ModifyCapacityReservationOutput')
237
+ ModifyIpPoolsInput = Shapes::StructureShape.new(name: 'ModifyIpPoolsInput')
238
+ ModifyIpPoolsOutput = Shapes::StructureShape.new(name: 'ModifyIpPoolsOutput')
235
239
  ModifyListenerAttributesInput = Shapes::StructureShape.new(name: 'ModifyListenerAttributesInput')
236
240
  ModifyListenerAttributesOutput = Shapes::StructureShape.new(name: 'ModifyListenerAttributesOutput')
237
241
  ModifyListenerInput = Shapes::StructureShape.new(name: 'ModifyListenerInput')
@@ -250,15 +254,15 @@ module Aws::ElasticLoadBalancingV2
250
254
  Name = Shapes::StringShape.new(name: 'Name')
251
255
  NumberOfCaCertificates = Shapes::IntegerShape.new(name: 'NumberOfCaCertificates')
252
256
  NumberOfRevokedEntries = Shapes::IntegerShape.new(name: 'NumberOfRevokedEntries')
253
- OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException', error: {"code"=>"OperationNotPermitted", "httpStatusCode"=>400, "senderFault"=>true})
257
+ OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException', error: {"code" => "OperationNotPermitted", "httpStatusCode" => 400, "senderFault" => true})
254
258
  OutpostId = Shapes::StringShape.new(name: 'OutpostId')
255
259
  PageSize = Shapes::IntegerShape.new(name: 'PageSize')
256
260
  Path = Shapes::StringShape.new(name: 'Path')
257
261
  PathPatternConditionConfig = Shapes::StructureShape.new(name: 'PathPatternConditionConfig')
258
262
  Policy = Shapes::StringShape.new(name: 'Policy')
259
263
  Port = Shapes::IntegerShape.new(name: 'Port')
260
- PriorRequestNotCompleteException = Shapes::StructureShape.new(name: 'PriorRequestNotCompleteException', error: {"code"=>"PriorRequestNotComplete", "httpStatusCode"=>429, "senderFault"=>true})
261
- PriorityInUseException = Shapes::StructureShape.new(name: 'PriorityInUseException', error: {"code"=>"PriorityInUse", "httpStatusCode"=>400, "senderFault"=>true})
264
+ PriorRequestNotCompleteException = Shapes::StructureShape.new(name: 'PriorRequestNotCompleteException', error: {"code" => "PriorRequestNotComplete", "httpStatusCode" => 429, "senderFault" => true})
265
+ PriorityInUseException = Shapes::StructureShape.new(name: 'PriorityInUseException', error: {"code" => "PriorityInUse", "httpStatusCode" => 400, "senderFault" => true})
262
266
  PrivateIPv4Address = Shapes::StringShape.new(name: 'PrivateIPv4Address')
263
267
  ProtocolEnum = Shapes::StringShape.new(name: 'ProtocolEnum')
264
268
  ProtocolVersion = Shapes::StringShape.new(name: 'ProtocolVersion')
@@ -274,6 +278,8 @@ module Aws::ElasticLoadBalancingV2
274
278
  RedirectActionStatusCodeEnum = Shapes::StringShape.new(name: 'RedirectActionStatusCodeEnum')
275
279
  RegisterTargetsInput = Shapes::StructureShape.new(name: 'RegisterTargetsInput')
276
280
  RegisterTargetsOutput = Shapes::StructureShape.new(name: 'RegisterTargetsOutput')
281
+ RemoveIpamPoolEnum = Shapes::StringShape.new(name: 'RemoveIpamPoolEnum')
282
+ RemoveIpamPools = Shapes::ListShape.new(name: 'RemoveIpamPools')
277
283
  RemoveListenerCertificatesInput = Shapes::StructureShape.new(name: 'RemoveListenerCertificatesInput')
278
284
  RemoveListenerCertificatesOutput = Shapes::StructureShape.new(name: 'RemoveListenerCertificatesOutput')
279
285
  RemoveTagsInput = Shapes::StructureShape.new(name: 'RemoveTagsInput')
@@ -283,13 +289,13 @@ module Aws::ElasticLoadBalancingV2
283
289
  ResetCapacityReservation = Shapes::BooleanShape.new(name: 'ResetCapacityReservation')
284
290
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
285
291
  ResourceArns = Shapes::ListShape.new(name: 'ResourceArns')
286
- ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException', error: {"code"=>"ResourceInUse", "httpStatusCode"=>400, "senderFault"=>true})
287
- ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException', error: {"code"=>"ResourceNotFound", "httpStatusCode"=>400, "senderFault"=>true})
292
+ ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException', error: {"code" => "ResourceInUse", "httpStatusCode" => 400, "senderFault" => true})
293
+ ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException', error: {"code" => "ResourceNotFound", "httpStatusCode" => 400, "senderFault" => true})
288
294
  RevocationContent = Shapes::StructureShape.new(name: 'RevocationContent')
289
- RevocationContentNotFoundException = Shapes::StructureShape.new(name: 'RevocationContentNotFoundException', error: {"code"=>"RevocationContentNotFound", "httpStatusCode"=>400, "senderFault"=>true})
295
+ RevocationContentNotFoundException = Shapes::StructureShape.new(name: 'RevocationContentNotFoundException', error: {"code" => "RevocationContentNotFound", "httpStatusCode" => 400, "senderFault" => true})
290
296
  RevocationContents = Shapes::ListShape.new(name: 'RevocationContents')
291
297
  RevocationId = Shapes::IntegerShape.new(name: 'RevocationId')
292
- RevocationIdNotFoundException = Shapes::StructureShape.new(name: 'RevocationIdNotFoundException', error: {"code"=>"RevocationIdNotFound", "httpStatusCode"=>400, "senderFault"=>true})
298
+ RevocationIdNotFoundException = Shapes::StructureShape.new(name: 'RevocationIdNotFoundException', error: {"code" => "RevocationIdNotFound", "httpStatusCode" => 400, "senderFault" => true})
293
299
  RevocationIds = Shapes::ListShape.new(name: 'RevocationIds')
294
300
  RevocationType = Shapes::StringShape.new(name: 'RevocationType')
295
301
  Rule = Shapes::StructureShape.new(name: 'Rule')
@@ -297,7 +303,7 @@ module Aws::ElasticLoadBalancingV2
297
303
  RuleArns = Shapes::ListShape.new(name: 'RuleArns')
298
304
  RuleCondition = Shapes::StructureShape.new(name: 'RuleCondition')
299
305
  RuleConditionList = Shapes::ListShape.new(name: 'RuleConditionList')
300
- RuleNotFoundException = Shapes::StructureShape.new(name: 'RuleNotFoundException', error: {"code"=>"RuleNotFound", "httpStatusCode"=>400, "senderFault"=>true})
306
+ RuleNotFoundException = Shapes::StructureShape.new(name: 'RuleNotFoundException', error: {"code" => "RuleNotFound", "httpStatusCode" => 400, "senderFault" => true})
301
307
  RulePriority = Shapes::IntegerShape.new(name: 'RulePriority')
302
308
  RulePriorityList = Shapes::ListShape.new(name: 'RulePriorityList')
303
309
  RulePriorityPair = Shapes::StructureShape.new(name: 'RulePriorityPair')
@@ -305,7 +311,7 @@ module Aws::ElasticLoadBalancingV2
305
311
  S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
306
312
  S3Key = Shapes::StringShape.new(name: 'S3Key')
307
313
  S3ObjectVersion = Shapes::StringShape.new(name: 'S3ObjectVersion')
308
- SSLPolicyNotFoundException = Shapes::StructureShape.new(name: 'SSLPolicyNotFoundException', error: {"code"=>"SSLPolicyNotFound", "httpStatusCode"=>400, "senderFault"=>true})
314
+ SSLPolicyNotFoundException = Shapes::StructureShape.new(name: 'SSLPolicyNotFoundException', error: {"code" => "SSLPolicyNotFound", "httpStatusCode" => 400, "senderFault" => true})
309
315
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
310
316
  SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
311
317
  SetIpAddressTypeInput = Shapes::StructureShape.new(name: 'SetIpAddressTypeInput')
@@ -331,7 +337,7 @@ module Aws::ElasticLoadBalancingV2
331
337
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
332
338
  SubnetMapping = Shapes::StructureShape.new(name: 'SubnetMapping')
333
339
  SubnetMappings = Shapes::ListShape.new(name: 'SubnetMappings')
334
- SubnetNotFoundException = Shapes::StructureShape.new(name: 'SubnetNotFoundException', error: {"code"=>"SubnetNotFound", "httpStatusCode"=>400, "senderFault"=>true})
340
+ SubnetNotFoundException = Shapes::StructureShape.new(name: 'SubnetNotFoundException', error: {"code" => "SubnetNotFound", "httpStatusCode" => 400, "senderFault" => true})
335
341
  Subnets = Shapes::ListShape.new(name: 'Subnets')
336
342
  Tag = Shapes::StructureShape.new(name: 'Tag')
337
343
  TagDescription = Shapes::StructureShape.new(name: 'TagDescription')
@@ -347,7 +353,7 @@ module Aws::ElasticLoadBalancingV2
347
353
  TargetGroup = Shapes::StructureShape.new(name: 'TargetGroup')
348
354
  TargetGroupArn = Shapes::StringShape.new(name: 'TargetGroupArn')
349
355
  TargetGroupArns = Shapes::ListShape.new(name: 'TargetGroupArns')
350
- TargetGroupAssociationLimitException = Shapes::StructureShape.new(name: 'TargetGroupAssociationLimitException', error: {"code"=>"TargetGroupAssociationLimit", "httpStatusCode"=>400, "senderFault"=>true})
356
+ TargetGroupAssociationLimitException = Shapes::StructureShape.new(name: 'TargetGroupAssociationLimitException', error: {"code" => "TargetGroupAssociationLimit", "httpStatusCode" => 400, "senderFault" => true})
351
357
  TargetGroupAttribute = Shapes::StructureShape.new(name: 'TargetGroupAttribute')
352
358
  TargetGroupAttributeKey = Shapes::StringShape.new(name: 'TargetGroupAttributeKey')
353
359
  TargetGroupAttributeValue = Shapes::StringShape.new(name: 'TargetGroupAttributeValue')
@@ -356,7 +362,7 @@ module Aws::ElasticLoadBalancingV2
356
362
  TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
357
363
  TargetGroupName = Shapes::StringShape.new(name: 'TargetGroupName')
358
364
  TargetGroupNames = Shapes::ListShape.new(name: 'TargetGroupNames')
359
- TargetGroupNotFoundException = Shapes::StructureShape.new(name: 'TargetGroupNotFoundException', error: {"code"=>"TargetGroupNotFound", "httpStatusCode"=>400, "senderFault"=>true})
365
+ TargetGroupNotFoundException = Shapes::StructureShape.new(name: 'TargetGroupNotFoundException', error: {"code" => "TargetGroupNotFound", "httpStatusCode" => 400, "senderFault" => true})
360
366
  TargetGroupStickinessConfig = Shapes::StructureShape.new(name: 'TargetGroupStickinessConfig')
361
367
  TargetGroupStickinessDurationSeconds = Shapes::IntegerShape.new(name: 'TargetGroupStickinessDurationSeconds')
362
368
  TargetGroupStickinessEnabled = Shapes::BooleanShape.new(name: 'TargetGroupStickinessEnabled')
@@ -370,37 +376,37 @@ module Aws::ElasticLoadBalancingV2
370
376
  TargetHealthStateEnum = Shapes::StringShape.new(name: 'TargetHealthStateEnum')
371
377
  TargetId = Shapes::StringShape.new(name: 'TargetId')
372
378
  TargetTypeEnum = Shapes::StringShape.new(name: 'TargetTypeEnum')
373
- TooManyActionsException = Shapes::StructureShape.new(name: 'TooManyActionsException', error: {"code"=>"TooManyActions", "httpStatusCode"=>400, "senderFault"=>true})
374
- TooManyCertificatesException = Shapes::StructureShape.new(name: 'TooManyCertificatesException', error: {"code"=>"TooManyCertificates", "httpStatusCode"=>400, "senderFault"=>true})
375
- TooManyListenersException = Shapes::StructureShape.new(name: 'TooManyListenersException', error: {"code"=>"TooManyListeners", "httpStatusCode"=>400, "senderFault"=>true})
376
- TooManyLoadBalancersException = Shapes::StructureShape.new(name: 'TooManyLoadBalancersException', error: {"code"=>"TooManyLoadBalancers", "httpStatusCode"=>400, "senderFault"=>true})
377
- TooManyRegistrationsForTargetIdException = Shapes::StructureShape.new(name: 'TooManyRegistrationsForTargetIdException', error: {"code"=>"TooManyRegistrationsForTargetId", "httpStatusCode"=>400, "senderFault"=>true})
378
- TooManyRulesException = Shapes::StructureShape.new(name: 'TooManyRulesException', error: {"code"=>"TooManyRules", "httpStatusCode"=>400, "senderFault"=>true})
379
- TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException', error: {"code"=>"TooManyTags", "httpStatusCode"=>400, "senderFault"=>true})
380
- TooManyTargetGroupsException = Shapes::StructureShape.new(name: 'TooManyTargetGroupsException', error: {"code"=>"TooManyTargetGroups", "httpStatusCode"=>400, "senderFault"=>true})
381
- TooManyTargetsException = Shapes::StructureShape.new(name: 'TooManyTargetsException', error: {"code"=>"TooManyTargets", "httpStatusCode"=>400, "senderFault"=>true})
382
- TooManyTrustStoreRevocationEntriesException = Shapes::StructureShape.new(name: 'TooManyTrustStoreRevocationEntriesException', error: {"code"=>"TooManyTrustStoreRevocationEntries", "httpStatusCode"=>400, "senderFault"=>true})
383
- TooManyTrustStoresException = Shapes::StructureShape.new(name: 'TooManyTrustStoresException', error: {"code"=>"TooManyTrustStores", "httpStatusCode"=>400, "senderFault"=>true})
384
- TooManyUniqueTargetGroupsPerLoadBalancerException = Shapes::StructureShape.new(name: 'TooManyUniqueTargetGroupsPerLoadBalancerException', error: {"code"=>"TooManyUniqueTargetGroupsPerLoadBalancer", "httpStatusCode"=>400, "senderFault"=>true})
379
+ TooManyActionsException = Shapes::StructureShape.new(name: 'TooManyActionsException', error: {"code" => "TooManyActions", "httpStatusCode" => 400, "senderFault" => true})
380
+ TooManyCertificatesException = Shapes::StructureShape.new(name: 'TooManyCertificatesException', error: {"code" => "TooManyCertificates", "httpStatusCode" => 400, "senderFault" => true})
381
+ TooManyListenersException = Shapes::StructureShape.new(name: 'TooManyListenersException', error: {"code" => "TooManyListeners", "httpStatusCode" => 400, "senderFault" => true})
382
+ TooManyLoadBalancersException = Shapes::StructureShape.new(name: 'TooManyLoadBalancersException', error: {"code" => "TooManyLoadBalancers", "httpStatusCode" => 400, "senderFault" => true})
383
+ TooManyRegistrationsForTargetIdException = Shapes::StructureShape.new(name: 'TooManyRegistrationsForTargetIdException', error: {"code" => "TooManyRegistrationsForTargetId", "httpStatusCode" => 400, "senderFault" => true})
384
+ TooManyRulesException = Shapes::StructureShape.new(name: 'TooManyRulesException', error: {"code" => "TooManyRules", "httpStatusCode" => 400, "senderFault" => true})
385
+ TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException', error: {"code" => "TooManyTags", "httpStatusCode" => 400, "senderFault" => true})
386
+ TooManyTargetGroupsException = Shapes::StructureShape.new(name: 'TooManyTargetGroupsException', error: {"code" => "TooManyTargetGroups", "httpStatusCode" => 400, "senderFault" => true})
387
+ TooManyTargetsException = Shapes::StructureShape.new(name: 'TooManyTargetsException', error: {"code" => "TooManyTargets", "httpStatusCode" => 400, "senderFault" => true})
388
+ TooManyTrustStoreRevocationEntriesException = Shapes::StructureShape.new(name: 'TooManyTrustStoreRevocationEntriesException', error: {"code" => "TooManyTrustStoreRevocationEntries", "httpStatusCode" => 400, "senderFault" => true})
389
+ TooManyTrustStoresException = Shapes::StructureShape.new(name: 'TooManyTrustStoresException', error: {"code" => "TooManyTrustStores", "httpStatusCode" => 400, "senderFault" => true})
390
+ TooManyUniqueTargetGroupsPerLoadBalancerException = Shapes::StructureShape.new(name: 'TooManyUniqueTargetGroupsPerLoadBalancerException', error: {"code" => "TooManyUniqueTargetGroupsPerLoadBalancer", "httpStatusCode" => 400, "senderFault" => true})
385
391
  TotalRevokedEntries = Shapes::IntegerShape.new(name: 'TotalRevokedEntries')
386
392
  TrustStore = Shapes::StructureShape.new(name: 'TrustStore')
387
393
  TrustStoreArn = Shapes::StringShape.new(name: 'TrustStoreArn')
388
394
  TrustStoreArns = Shapes::ListShape.new(name: 'TrustStoreArns')
389
395
  TrustStoreAssociation = Shapes::StructureShape.new(name: 'TrustStoreAssociation')
390
- TrustStoreAssociationNotFoundException = Shapes::StructureShape.new(name: 'TrustStoreAssociationNotFoundException', error: {"code"=>"AssociationNotFound", "httpStatusCode"=>400, "senderFault"=>true})
396
+ TrustStoreAssociationNotFoundException = Shapes::StructureShape.new(name: 'TrustStoreAssociationNotFoundException', error: {"code" => "AssociationNotFound", "httpStatusCode" => 400, "senderFault" => true})
391
397
  TrustStoreAssociationResourceArn = Shapes::StringShape.new(name: 'TrustStoreAssociationResourceArn')
392
398
  TrustStoreAssociationStatusEnum = Shapes::StringShape.new(name: 'TrustStoreAssociationStatusEnum')
393
399
  TrustStoreAssociations = Shapes::ListShape.new(name: 'TrustStoreAssociations')
394
- TrustStoreInUseException = Shapes::StructureShape.new(name: 'TrustStoreInUseException', error: {"code"=>"TrustStoreInUse", "httpStatusCode"=>400, "senderFault"=>true})
400
+ TrustStoreInUseException = Shapes::StructureShape.new(name: 'TrustStoreInUseException', error: {"code" => "TrustStoreInUse", "httpStatusCode" => 400, "senderFault" => true})
395
401
  TrustStoreName = Shapes::StringShape.new(name: 'TrustStoreName')
396
402
  TrustStoreNames = Shapes::ListShape.new(name: 'TrustStoreNames')
397
- TrustStoreNotFoundException = Shapes::StructureShape.new(name: 'TrustStoreNotFoundException', error: {"code"=>"TrustStoreNotFound", "httpStatusCode"=>400, "senderFault"=>true})
398
- TrustStoreNotReadyException = Shapes::StructureShape.new(name: 'TrustStoreNotReadyException', error: {"code"=>"TrustStoreNotReady", "httpStatusCode"=>400, "senderFault"=>true})
403
+ TrustStoreNotFoundException = Shapes::StructureShape.new(name: 'TrustStoreNotFoundException', error: {"code" => "TrustStoreNotFound", "httpStatusCode" => 400, "senderFault" => true})
404
+ TrustStoreNotReadyException = Shapes::StructureShape.new(name: 'TrustStoreNotReadyException', error: {"code" => "TrustStoreNotReady", "httpStatusCode" => 400, "senderFault" => true})
399
405
  TrustStoreRevocation = Shapes::StructureShape.new(name: 'TrustStoreRevocation')
400
406
  TrustStoreRevocations = Shapes::ListShape.new(name: 'TrustStoreRevocations')
401
407
  TrustStoreStatus = Shapes::StringShape.new(name: 'TrustStoreStatus')
402
408
  TrustStores = Shapes::ListShape.new(name: 'TrustStores')
403
- UnsupportedProtocolException = Shapes::StructureShape.new(name: 'UnsupportedProtocolException', error: {"code"=>"UnsupportedProtocol", "httpStatusCode"=>400, "senderFault"=>true})
409
+ UnsupportedProtocolException = Shapes::StructureShape.new(name: 'UnsupportedProtocolException', error: {"code" => "UnsupportedProtocol", "httpStatusCode" => 400, "senderFault" => true})
404
410
  VpcId = Shapes::StringShape.new(name: 'VpcId')
405
411
  ZonalCapacityReservationState = Shapes::StructureShape.new(name: 'ZonalCapacityReservationState')
406
412
  ZonalCapacityReservationStates = Shapes::ListShape.new(name: 'ZonalCapacityReservationStates')
@@ -544,6 +550,7 @@ module Aws::ElasticLoadBalancingV2
544
550
  CreateLoadBalancerInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
545
551
  CreateLoadBalancerInput.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
546
552
  CreateLoadBalancerInput.add_member(:enable_prefix_for_ipv_6_source_nat, Shapes::ShapeRef.new(shape: EnablePrefixForIpv6SourceNatEnum, location_name: "EnablePrefixForIpv6SourceNat"))
553
+ CreateLoadBalancerInput.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
547
554
  CreateLoadBalancerInput.struct_class = Types::CreateLoadBalancerInput
548
555
 
549
556
  CreateLoadBalancerOutput.add_member(:load_balancers, Shapes::ShapeRef.new(shape: LoadBalancers, location_name: "LoadBalancers"))
@@ -846,6 +853,9 @@ module Aws::ElasticLoadBalancingV2
846
853
 
847
854
  InvalidTargetException.struct_class = Types::InvalidTargetException
848
855
 
856
+ IpamPools.add_member(:ipv_4_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "Ipv4IpamPoolId"))
857
+ IpamPools.struct_class = Types::IpamPools
858
+
849
859
  Limit.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
850
860
  Limit.add_member(:max, Shapes::ShapeRef.new(shape: Max, location_name: "Max"))
851
861
  Limit.struct_class = Types::Limit
@@ -894,6 +904,7 @@ module Aws::ElasticLoadBalancingV2
894
904
  LoadBalancer.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
895
905
  LoadBalancer.add_member(:enforce_security_group_inbound_rules_on_private_link_traffic, Shapes::ShapeRef.new(shape: EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic, location_name: "EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic"))
896
906
  LoadBalancer.add_member(:enable_prefix_for_ipv_6_source_nat, Shapes::ShapeRef.new(shape: EnablePrefixForIpv6SourceNatEnum, location_name: "EnablePrefixForIpv6SourceNat"))
907
+ LoadBalancer.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
897
908
  LoadBalancer.struct_class = Types::LoadBalancer
898
909
 
899
910
  LoadBalancerAddress.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "IpAddress"))
@@ -940,6 +951,14 @@ module Aws::ElasticLoadBalancingV2
940
951
  ModifyCapacityReservationOutput.add_member(:capacity_reservation_state, Shapes::ShapeRef.new(shape: ZonalCapacityReservationStates, location_name: "CapacityReservationState"))
941
952
  ModifyCapacityReservationOutput.struct_class = Types::ModifyCapacityReservationOutput
942
953
 
954
+ ModifyIpPoolsInput.add_member(:load_balancer_arn, Shapes::ShapeRef.new(shape: LoadBalancerArn, required: true, location_name: "LoadBalancerArn"))
955
+ ModifyIpPoolsInput.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
956
+ ModifyIpPoolsInput.add_member(:remove_ipam_pools, Shapes::ShapeRef.new(shape: RemoveIpamPools, location_name: "RemoveIpamPools"))
957
+ ModifyIpPoolsInput.struct_class = Types::ModifyIpPoolsInput
958
+
959
+ ModifyIpPoolsOutput.add_member(:ipam_pools, Shapes::ShapeRef.new(shape: IpamPools, location_name: "IpamPools"))
960
+ ModifyIpPoolsOutput.struct_class = Types::ModifyIpPoolsOutput
961
+
943
962
  ModifyListenerAttributesInput.add_member(:listener_arn, Shapes::ShapeRef.new(shape: ListenerArn, required: true, location_name: "ListenerArn"))
944
963
  ModifyListenerAttributesInput.add_member(:attributes, Shapes::ShapeRef.new(shape: ListenerAttributes, required: true, location_name: "Attributes"))
945
964
  ModifyListenerAttributesInput.struct_class = Types::ModifyListenerAttributesInput
@@ -1045,6 +1064,8 @@ module Aws::ElasticLoadBalancingV2
1045
1064
 
1046
1065
  RegisterTargetsOutput.struct_class = Types::RegisterTargetsOutput
1047
1066
 
1067
+ RemoveIpamPools.member = Shapes::ShapeRef.new(shape: RemoveIpamPoolEnum)
1068
+
1048
1069
  RemoveListenerCertificatesInput.add_member(:listener_arn, Shapes::ShapeRef.new(shape: ListenerArn, required: true, location_name: "ListenerArn"))
1049
1070
  RemoveListenerCertificatesInput.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateList, required: true, location_name: "Certificates"))
1050
1071
  RemoveListenerCertificatesInput.struct_class = Types::RemoveListenerCertificatesInput
@@ -1799,6 +1820,15 @@ module Aws::ElasticLoadBalancingV2
1799
1820
  o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
1800
1821
  end)
1801
1822
 
1823
+ api.add_operation(:modify_ip_pools, Seahorse::Model::Operation.new.tap do |o|
1824
+ o.name = "ModifyIpPools"
1825
+ o.http_method = "POST"
1826
+ o.http_request_uri = "/"
1827
+ o.input = Shapes::ShapeRef.new(shape: ModifyIpPoolsInput)
1828
+ o.output = Shapes::ShapeRef.new(shape: ModifyIpPoolsOutput)
1829
+ o.errors << Shapes::ShapeRef.new(shape: LoadBalancerNotFoundException)
1830
+ end)
1831
+
1802
1832
  api.add_operation(:modify_listener, Seahorse::Model::Operation.new.tap do |o|
1803
1833
  o.name = "ModifyListener"
1804
1834
  o.http_method = "POST"
@@ -727,6 +727,11 @@ module Aws::ElasticLoadBalancingV2
727
727
  # type must be `dualstack`. The default value is `off`.
728
728
  # @return [String]
729
729
  #
730
+ # @!attribute [rw] ipam_pools
731
+ # \[Application Load Balancers\] The IPAM pools to use with the load
732
+ # balancer.
733
+ # @return [Types::IpamPools]
734
+ #
730
735
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancerInput AWS API Documentation
731
736
  #
732
737
  class CreateLoadBalancerInput < Struct.new(
@@ -739,7 +744,8 @@ module Aws::ElasticLoadBalancingV2
739
744
  :type,
740
745
  :ip_address_type,
741
746
  :customer_owned_ipv_4_pool,
742
- :enable_prefix_for_ipv_6_source_nat)
747
+ :enable_prefix_for_ipv_6_source_nat,
748
+ :ipam_pools)
743
749
  SENSITIVE = []
744
750
  include Aws::Structure
745
751
  end
@@ -2117,6 +2123,22 @@ module Aws::ElasticLoadBalancingV2
2117
2123
  #
2118
2124
  class InvalidTargetException < Aws::EmptyStructure; end
2119
2125
 
2126
+ # An IPAM pool is a collection of IP address CIDRs. IPAM pools enable
2127
+ # you to organize your IP addresses according to your routing and
2128
+ # security needs.
2129
+ #
2130
+ # @!attribute [rw] ipv_4_ipam_pool_id
2131
+ # The ID of the IPv4 IPAM pool.
2132
+ # @return [String]
2133
+ #
2134
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/IpamPools AWS API Documentation
2135
+ #
2136
+ class IpamPools < Struct.new(
2137
+ :ipv_4_ipam_pool_id)
2138
+ SENSITIVE = []
2139
+ include Aws::Structure
2140
+ end
2141
+
2120
2142
  # Information about an Elastic Load Balancing resource limit for your
2121
2143
  # Amazon Web Services account.
2122
2144
  #
@@ -2442,6 +2464,11 @@ module Aws::ElasticLoadBalancingV2
2442
2464
  # type must be `dualstack`. The default value is `off`.
2443
2465
  # @return [String]
2444
2466
  #
2467
+ # @!attribute [rw] ipam_pools
2468
+ # \[Application Load Balancers\] The IPAM pool in use by the load
2469
+ # balancer, if configured.
2470
+ # @return [Types::IpamPools]
2471
+ #
2445
2472
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/LoadBalancer AWS API Documentation
2446
2473
  #
2447
2474
  class LoadBalancer < Struct.new(
@@ -2459,7 +2486,8 @@ module Aws::ElasticLoadBalancingV2
2459
2486
  :ip_address_type,
2460
2487
  :customer_owned_ipv_4_pool,
2461
2488
  :enforce_security_group_inbound_rules_on_private_link_traffic,
2462
- :enable_prefix_for_ipv_6_source_nat)
2489
+ :enable_prefix_for_ipv_6_source_nat,
2490
+ :ipam_pools)
2463
2491
  SENSITIVE = []
2464
2492
  include Aws::Structure
2465
2493
  end
@@ -2774,6 +2802,40 @@ module Aws::ElasticLoadBalancingV2
2774
2802
  include Aws::Structure
2775
2803
  end
2776
2804
 
2805
+ # @!attribute [rw] load_balancer_arn
2806
+ # The Amazon Resource Name (ARN) of the load balancer.
2807
+ # @return [String]
2808
+ #
2809
+ # @!attribute [rw] ipam_pools
2810
+ # The IPAM pools to be modified.
2811
+ # @return [Types::IpamPools]
2812
+ #
2813
+ # @!attribute [rw] remove_ipam_pools
2814
+ # Remove the IP pools in use by the load balancer.
2815
+ # @return [Array<String>]
2816
+ #
2817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyIpPoolsInput AWS API Documentation
2818
+ #
2819
+ class ModifyIpPoolsInput < Struct.new(
2820
+ :load_balancer_arn,
2821
+ :ipam_pools,
2822
+ :remove_ipam_pools)
2823
+ SENSITIVE = []
2824
+ include Aws::Structure
2825
+ end
2826
+
2827
+ # @!attribute [rw] ipam_pools
2828
+ # The IPAM pool ID.
2829
+ # @return [Types::IpamPools]
2830
+ #
2831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyIpPoolsOutput AWS API Documentation
2832
+ #
2833
+ class ModifyIpPoolsOutput < Struct.new(
2834
+ :ipam_pools)
2835
+ SENSITIVE = []
2836
+ include Aws::Structure
2837
+ end
2838
+
2777
2839
  # @!attribute [rw] listener_arn
2778
2840
  # The Amazon Resource Name (ARN) of the listener.
2779
2841
  # @return [String]
@@ -4305,7 +4367,8 @@ module Aws::ElasticLoadBalancingV2
4305
4367
  # * `target_health_state.unhealthy.connection_termination.enabled` -
4306
4368
  # Indicates whether the load balancer terminates connections to
4307
4369
  # unhealthy targets. The value is `true` or `false`. The default is
4308
- # `true`.
4370
+ # `true`. This attribute can't be enabled for UDP and TCP\_UDP
4371
+ # target groups.
4309
4372
  #
4310
4373
  # * `target_health_state.unhealthy.draining_interval_seconds` - The
4311
4374
  # amount of time for Elastic Load Balancing to wait before changing
@@ -55,7 +55,7 @@ module Aws::ElasticLoadBalancingV2
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticloadbalancingv2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticloadbalancingv2/endpoints'
57
57
 
58
- GEM_VERSION = '1.129.0'
58
+ GEM_VERSION = '1.131.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -243,7 +243,10 @@ module Aws
243
243
  ?type: ("application" | "network" | "gateway"),
244
244
  ?ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4"),
245
245
  ?customer_owned_ipv_4_pool: ::String,
246
- ?enable_prefix_for_ipv_6_source_nat: ("on" | "off")
246
+ ?enable_prefix_for_ipv_6_source_nat: ("on" | "off"),
247
+ ?ipam_pools: {
248
+ ipv_4_ipam_pool_id: ::String?
249
+ }
247
250
  ) -> _CreateLoadBalancerResponseSuccess
248
251
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoadBalancerResponseSuccess
249
252
 
@@ -730,6 +733,20 @@ module Aws
730
733
  ) -> _ModifyCapacityReservationResponseSuccess
731
734
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyCapacityReservationResponseSuccess
732
735
 
736
+ interface _ModifyIpPoolsResponseSuccess
737
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyIpPoolsOutput]
738
+ def ipam_pools: () -> Types::IpamPools
739
+ end
740
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#modify_ip_pools-instance_method
741
+ def modify_ip_pools: (
742
+ load_balancer_arn: ::String,
743
+ ?ipam_pools: {
744
+ ipv_4_ipam_pool_id: ::String?
745
+ },
746
+ ?remove_ipam_pools: Array[("ipv4")]
747
+ ) -> _ModifyIpPoolsResponseSuccess
748
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpPoolsResponseSuccess
749
+
733
750
  interface _ModifyListenerResponseSuccess
734
751
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyListenerOutput]
735
752
  def listeners: () -> ::Array[Types::Listener]
data/sig/types.rbs CHANGED
@@ -172,6 +172,7 @@ module Aws::ElasticLoadBalancingV2
172
172
  attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
173
173
  attr_accessor customer_owned_ipv_4_pool: ::String
174
174
  attr_accessor enable_prefix_for_ipv_6_source_nat: ("on" | "off")
175
+ attr_accessor ipam_pools: Types::IpamPools
175
176
  SENSITIVE: []
176
177
  end
177
178
 
@@ -613,6 +614,11 @@ module Aws::ElasticLoadBalancingV2
613
614
  class InvalidTargetException < Aws::EmptyStructure
614
615
  end
615
616
 
617
+ class IpamPools
618
+ attr_accessor ipv_4_ipam_pool_id: ::String
619
+ SENSITIVE: []
620
+ end
621
+
616
622
  class Limit
617
623
  attr_accessor name: ::String
618
624
  attr_accessor max: ::String
@@ -657,6 +663,7 @@ module Aws::ElasticLoadBalancingV2
657
663
  attr_accessor customer_owned_ipv_4_pool: ::String
658
664
  attr_accessor enforce_security_group_inbound_rules_on_private_link_traffic: ::String
659
665
  attr_accessor enable_prefix_for_ipv_6_source_nat: ("on" | "off")
666
+ attr_accessor ipam_pools: Types::IpamPools
660
667
  SENSITIVE: []
661
668
  end
662
669
 
@@ -709,6 +716,18 @@ module Aws::ElasticLoadBalancingV2
709
716
  SENSITIVE: []
710
717
  end
711
718
 
719
+ class ModifyIpPoolsInput
720
+ attr_accessor load_balancer_arn: ::String
721
+ attr_accessor ipam_pools: Types::IpamPools
722
+ attr_accessor remove_ipam_pools: ::Array[("ipv4")]
723
+ SENSITIVE: []
724
+ end
725
+
726
+ class ModifyIpPoolsOutput
727
+ attr_accessor ipam_pools: Types::IpamPools
728
+ SENSITIVE: []
729
+ end
730
+
712
731
  class ModifyListenerAttributesInput
713
732
  attr_accessor listener_arn: ::String
714
733
  attr_accessor attributes: ::Array[Types::ListenerAttribute]
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticloadbalancingv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.129.0
4
+ version: 1.131.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-03-04 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -78,7 +77,6 @@ licenses:
78
77
  metadata:
79
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticloadbalancingv2
80
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticloadbalancingv2/CHANGELOG.md
81
- post_install_message:
82
80
  rdoc_options: []
83
81
  require_paths:
84
82
  - lib
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
91
  - !ruby/object:Gem::Version
94
92
  version: '0'
95
93
  requirements: []
96
- rubygems_version: 3.4.10
97
- signing_key:
94
+ rubygems_version: 3.6.7
98
95
  specification_version: 4
99
96
  summary: AWS SDK for Ruby - Elastic Load Balancing v2
100
97
  test_files: []