aws-sdk-elasticloadbalancingv2 1.78.0 → 1.80.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: 2c268c3d3abc90398548fc4f10535926b3e247a0c16ac3a766419f096a8a77a1
4
- data.tar.gz: 0d90844622e4c9cbccf7b387246725e02de30aa090e06058ebf96ea298dd855e
3
+ metadata.gz: 9f00f6639c66b0d191e31bffcd6976dc90fb621cb26561a47e658dca1e2e06b2
4
+ data.tar.gz: 145ab9d24da6556a977d261edc53fc261b6c4b56f7db35ad2e2e93060182fbc7
5
5
  SHA512:
6
- metadata.gz: 6793c1566a9ac786e71960785d8d26fff651c5cea9e0dc255751f5c4dfa87ee3b6a937de659a42d3c51b8d767a2575211fbec74ec7c4fb8be26296c2c0fb947f
7
- data.tar.gz: cacf818a78ecaafc2547fdc4969c067482dbb91c25e787d5a80ba9f979ef8d6113c0f8e09bc4d436e1883ed4e54110a6ad34ef263c18eb6cd79b9d8d7a04413d
6
+ metadata.gz: 9b506e363c3986191883a5e93fb4eb0ec623554a658505a28595e49458d16fbf426b97d7213428648daea6569caf88d3c48ee339fcdae898f664f93f47186cc5
7
+ data.tar.gz: b47975cd6781bfe4f5d0bec27e7b1d34b38845f51c97b913f6feae38740cd7e2fec696d1eedc6c2363ef234848afd2d36188d2f77e43a372040563ef1e5ced8d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2022-10-07)
5
+ ------------------
6
+
7
+ * Feature - Gateway Load Balancer adds a new feature (target_failover) for customers to rebalance existing flows to a healthy target after marked unhealthy or deregistered. This allows graceful patching/upgrades of target appliances during maintenance windows, and helps reduce unhealthy target failover time.
8
+
9
+ 1.79.0 (2022-08-25)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for ELBv2. Gateway Load Balancer now supports Configurable Flow Stickiness, enabling you to configure the hashing used to maintain stickiness of flows to a specific target appliance.
13
+
4
14
  1.78.0 (2022-06-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.80.0
@@ -3945,7 +3945,7 @@ module Aws::ElasticLoadBalancingV2
3945
3945
  end
3946
3946
 
3947
3947
  # Sets the type of IP addresses used by the subnets of the specified
3948
- # Application Load Balancer or Network Load Balancer.
3948
+ # load balancer.
3949
3949
  #
3950
3950
  # @option params [required, String] :load_balancer_arn
3951
3951
  # The Amazon Resource Name (ARN) of the load balancer.
@@ -4313,7 +4313,7 @@ module Aws::ElasticLoadBalancingV2
4313
4313
  params: params,
4314
4314
  config: config)
4315
4315
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4316
- context[:gem_version] = '1.78.0'
4316
+ context[:gem_version] = '1.80.0'
4317
4317
  Seahorse::Client::Request.new(handlers, context)
4318
4318
  end
4319
4319
 
@@ -4131,15 +4131,21 @@ module Aws::ElasticLoadBalancingV2
4131
4131
  #
4132
4132
  # ^
4133
4133
  #
4134
- # The following attributes are supported by both Application Load
4135
- # Balancers and Network Load Balancers:
4134
+ # The following attributes are supported by Application Load
4135
+ # Balancers, Network Load Balancers, and Gateway Load Balancers:
4136
4136
  #
4137
- # * `stickiness.enabled` - Indicates whether sticky sessions are
4137
+ # * `stickiness.enabled` - Indicates whether target stickiness is
4138
4138
  # enabled. The value is `true` or `false`. The default is `false`.
4139
4139
  #
4140
- # * `stickiness.type` - The type of sticky sessions. The possible
4141
- # values are `lb_cookie` and `app_cookie` for Application Load
4142
- # Balancers or `source_ip` for Network Load Balancers.
4140
+ # * `stickiness.type` - Indicates the type of stickiness. The possible
4141
+ # values are:
4142
+ #
4143
+ # * `lb_cookie` and `app_cookie` for Application Load Balancers.
4144
+ #
4145
+ # * `source_ip` for Network Load Balancers.
4146
+ #
4147
+ # * `source_ip_dest_ip` and `source_ip_dest_ip_proto` for Gateway
4148
+ # Load Balancers.
4143
4149
  #
4144
4150
  # The following attributes are supported only if the load balancer is
4145
4151
  # an Application Load Balancer and the target is an instance or an IP
@@ -4206,6 +4212,25 @@ module Aws::ElasticLoadBalancingV2
4206
4212
  # * `proxy_protocol_v2.enabled` - Indicates whether Proxy Protocol
4207
4213
  # version 2 is enabled. The value is `true` or `false`. The default
4208
4214
  # is `false`.
4215
+ #
4216
+ # The following attributes are supported only by Gateway Load
4217
+ # Balancers:
4218
+ #
4219
+ # * `target_failover.on_deregistration` - Indicates how the Gateway
4220
+ # Load Balancer handles existing flows when a target is
4221
+ # deregistered. The possible values are `rebalance` and
4222
+ # `no_rebalance`. The default is `no_rebalance`. The two attributes
4223
+ # (`target_failover.on_deregistration` and
4224
+ # `target_failover.on_unhealthy`) can't be set independently. The
4225
+ # value you set for both attributes must be the same.
4226
+ #
4227
+ # * `target_failover.on_unhealthy` - Indicates how the Gateway Load
4228
+ # Balancer handles existing flows when a target is unhealthy. The
4229
+ # possible values are `rebalance` and `no_rebalance`. The default is
4230
+ # `no_rebalance`. The two attributes
4231
+ # (`target_failover.on_deregistration` and
4232
+ # `target_failover.on_unhealthy`) cannot be set independently. The
4233
+ # value you set for both attributes must be the same.
4209
4234
  # @return [String]
4210
4235
  #
4211
4236
  # @!attribute [rw] value
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
49
49
  # @!group service
50
50
  module Aws::ElasticLoadBalancingV2
51
51
 
52
- GEM_VERSION = '1.78.0'
52
+ GEM_VERSION = '1.80.0'
53
53
 
54
54
  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.78.0
4
+ version: 1.80.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: 2022-06-29 00:00:00.000000000 Z
11
+ date: 2022-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core