aws-sdk-elasticloadbalancingv2 1.91.0 → 1.93.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7c8ee60da4bf180df20d3c0c3c025430ead6be78c9c9fba03dd431525767783
4
- data.tar.gz: b6ad648f5ac8289d6126906ccfcf8d1757db3810bbb4cacfc54f5faa92d603e7
3
+ metadata.gz: b9b84a22f5ad197e2df6e5f75c1bc66c25a82093c20b246eec360d9cff22f74c
4
+ data.tar.gz: 13e6cb850df4a9078bde7bb6aca1ece2cc5f812224889e7ddfc9af0cfd6d3366
5
5
  SHA512:
6
- metadata.gz: d611108183be46cfb9430d35aa57fd5b4787dd722f1303271bba5fcda2559d9cf4a0b5e51a19b4050df5d4f85600cb79b5ac69f8f51952b3b87e37ebce34ffe5
7
- data.tar.gz: c6b7b7f622bebfabbad6c27adf3e85dc96084d9f5bba77ee082efdd767f85925a89cfe7d4e495a44f4b049588e282265eed757c22c64644c10af5fccedcd3c9e
6
+ metadata.gz: 55f8fe38999eb94a05cfcb4b8c41114e536e1058ef1748d0437706504283f1ea43ddf62b0feae4a7b13bc58898e283e97137ef250d633303d03fde8ec747c3ec
7
+ data.tar.gz: '066438704868030d3279429bb3f3dae7981193d3f3d0ff1ea0be690ac5aed5b3236d9e3bf3e37d76820e67e34710cfb5c4abe992d0e0539e30361c5ada062986'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2023-10-12)
5
+ ------------------
6
+
7
+ * Feature - This release enables routing policies with Availability Zone affinity for Network Load Balancers.
8
+
9
+ 1.92.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.91.0 (2023-09-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -4247,12 +4247,13 @@ module Aws::ElasticLoadBalancingV2
4247
4247
  end
4248
4248
 
4249
4249
  # Enables the Availability Zones for the specified public subnets for
4250
- # the specified Application Load Balancer or Network Load Balancer. The
4251
- # specified subnets replace the previously enabled subnets.
4250
+ # the specified Application Load Balancer, Network Load Balancer or
4251
+ # Gateway Load Balancer. The specified subnets replace the previously
4252
+ # enabled subnets.
4252
4253
  #
4253
- # When you specify subnets for a Network Load Balancer, you must include
4254
- # all subnets that were enabled previously, with their existing
4255
- # configurations, plus any additional subnets.
4254
+ # When you specify subnets for a Network Load Balancer, or Gateway Load
4255
+ # Balancer you must include all subnets that were enabled previously,
4256
+ # with their existing configurations, plus any additional subnets.
4256
4257
  #
4257
4258
  # @option params [required, String] :load_balancer_arn
4258
4259
  # The Amazon Resource Name (ARN) of the load balancer.
@@ -4273,6 +4274,9 @@ module Aws::ElasticLoadBalancingV2
4273
4274
  # \[Network Load Balancers\] You can specify subnets from one or more
4274
4275
  # Availability Zones.
4275
4276
  #
4277
+ # \[Gateway Load Balancers\] You can specify subnets from one or more
4278
+ # Availability Zones.
4279
+ #
4276
4280
  # @option params [Array<Types::SubnetMapping>] :subnet_mappings
4277
4281
  # The IDs of the public subnets. You can specify only one subnet per
4278
4282
  # Availability Zone. You must specify either subnets or subnet mappings.
@@ -4295,6 +4299,9 @@ module Aws::ElasticLoadBalancingV2
4295
4299
  # internet-facing load balancer, you can specify one IPv6 address per
4296
4300
  # subnet.
4297
4301
  #
4302
+ # \[Gateway Load Balancers\] You can specify subnets from one or more
4303
+ # Availability Zones.
4304
+ #
4298
4305
  # @option params [String] :ip_address_type
4299
4306
  # \[Network Load Balancers\] The type of IP addresses used by the
4300
4307
  # subnets for your load balancer. The possible values are `ipv4` (for
@@ -4302,6 +4309,10 @@ module Aws::ElasticLoadBalancingV2
4302
4309
  # can’t specify `dualstack` for a load balancer with a UDP or TCP\_UDP
4303
4310
  # listener.
4304
4311
  #
4312
+ # \[Gateway Load Balancers\] The type of IP addresses used by the
4313
+ # subnets for your load balancer. The possible values are `ipv4` (for
4314
+ # IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses).
4315
+ #
4305
4316
  # @return [Types::SetSubnetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4306
4317
  #
4307
4318
  # * {Types::SetSubnetsOutput#availability_zones #availability_zones} => Array&lt;Types::AvailabilityZone&gt;
@@ -4385,7 +4396,7 @@ module Aws::ElasticLoadBalancingV2
4385
4396
  params: params,
4386
4397
  config: config)
4387
4398
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4388
- context[:gem_version] = '1.91.0'
4399
+ context[:gem_version] = '1.93.0'
4389
4400
  Seahorse::Client::Request.new(handlers, context)
4390
4401
  end
4391
4402
 
@@ -1910,6 +1910,18 @@ module Aws::ElasticLoadBalancingV2
1910
1910
  # load balancer to route requests to targets if it is unable to
1911
1911
  # forward the request to Amazon Web Services WAF. The possible
1912
1912
  # values are `true` and `false`. The default is `false`.
1913
+ #
1914
+ # The following attributes are supported by only Network Load
1915
+ # Balancers:
1916
+ #
1917
+ # * `dns_record.client_routing_policy` - Indicates how traffic is
1918
+ # distributed among the load balancer Availability Zones. The
1919
+ # possible values are `availability_zone_affinity` with 100 percent
1920
+ # zonal affinity, `partial_availability_zone_affinity` with 85
1921
+ # percent zonal affinity, and `any_availability_zone` with 0 percent
1922
+ # zonal affinity.
1923
+ #
1924
+ # ^
1913
1925
  # @return [String]
1914
1926
  #
1915
1927
  # @!attribute [rw] value
@@ -2792,6 +2804,9 @@ module Aws::ElasticLoadBalancingV2
2792
2804
  #
2793
2805
  # \[Network Load Balancers\] You can specify subnets from one or more
2794
2806
  # Availability Zones.
2807
+ #
2808
+ # \[Gateway Load Balancers\] You can specify subnets from one or more
2809
+ # Availability Zones.
2795
2810
  # @return [Array<String>]
2796
2811
  #
2797
2812
  # @!attribute [rw] subnet_mappings
@@ -2816,6 +2831,9 @@ module Aws::ElasticLoadBalancingV2
2816
2831
  # IP address per subnet from the IPv4 range of the subnet. For
2817
2832
  # internet-facing load balancer, you can specify one IPv6 address per
2818
2833
  # subnet.
2834
+ #
2835
+ # \[Gateway Load Balancers\] You can specify subnets from one or more
2836
+ # Availability Zones.
2819
2837
  # @return [Array<Types::SubnetMapping>]
2820
2838
  #
2821
2839
  # @!attribute [rw] ip_address_type
@@ -2824,6 +2842,10 @@ module Aws::ElasticLoadBalancingV2
2824
2842
  # IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses). You
2825
2843
  # can’t specify `dualstack` for a load balancer with a UDP or TCP\_UDP
2826
2844
  # listener.
2845
+ #
2846
+ # \[Gateway Load Balancers\] The type of IP addresses used by the
2847
+ # subnets for your load balancer. The possible values are `ipv4` (for
2848
+ # IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses).
2827
2849
  # @return [String]
2828
2850
  #
2829
2851
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnetsInput AWS API Documentation
@@ -2843,6 +2865,8 @@ module Aws::ElasticLoadBalancingV2
2843
2865
  #
2844
2866
  # @!attribute [rw] ip_address_type
2845
2867
  # \[Network Load Balancers\] The IP address type.
2868
+ #
2869
+ # \[Gateway Load Balancers\] The IP address type.
2846
2870
  # @return [String]
2847
2871
  #
2848
2872
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnetsOutput AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
53
53
  # @!group service
54
54
  module Aws::ElasticLoadBalancingV2
55
55
 
56
- GEM_VERSION = '1.91.0'
56
+ GEM_VERSION = '1.93.0'
57
57
 
58
58
  end
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.91.0
4
+ version: 1.93.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: 2023-09-06 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement