aws-sdk-elasticloadbalancingv2 1.129.0 → 1.130.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: e7cdb989409d2d0fb8667c4ad64be968e5b0b11fffbc44c3ff702e3ee8508a89
4
+ data.tar.gz: 63d46c9b89199efa48b48d192a06893d374ca0cdce263df3e31aa490d4a62df3
5
5
  SHA512:
6
- metadata.gz: 821439949b1f5812216b51ddea0dbc06e41920bcbdf430fc2b7f02e1fd7f97389a34b911452db87f6cad0577d0289b8016827a07039bf32f7478f9817958f0c6
7
- data.tar.gz: 41596b78a5e16dd197badd93893688ae83bc7fefc4dbb0e7f5f69b72a9f0f51405238d156c5422cc90252d402cd47d97a078b4b035b9862358987f4b12edf7aa
6
+ metadata.gz: 416e722d570f459f84876e77cc580eb2fbde25ebebe080f8c29053faa8ab99e2fdb959818f96f28006472cbf46bdd6692c6011ca488a9a178dfcdffd4bad21ba
7
+ data.tar.gz: 5518adb4eae19be85e3560551a68812e545c122d5d68d9d6697aa64f134c8b1ac7168468a363368f0cc8f6b5bb5657a7d3933d365e524e2c6bd8de7d52cc3b25
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.130.0 (2025-03-07)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for assigning IP addresses to Application Load Balancers from VPC IP Address Manager pools.
8
+
4
9
  1.129.0 (2025-03-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.130.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.130.0'
5218
5266
  Seahorse::Client::Request.new(handlers, context)
5219
5267
  end
5220
5268
 
@@ -191,6 +191,8 @@ module Aws::ElasticLoadBalancingV2
191
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')
@@ -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')
@@ -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')
@@ -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.130.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,14 @@
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.130.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-04 00:00:00.000000000 Z
11
+ date: 2025-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core