aws-sdk-elasticloadbalancingv2 1.83.0 → 1.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +3 -3
- data/lib/aws-sdk-elasticloadbalancingv2/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-elasticloadbalancingv2/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +2 -2
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d1b900339c5b6878b4829eb997459cc169609990f49a6f992d1122aa9f6baca
|
4
|
+
data.tar.gz: ad454cb018305ae5598d4d367334144b2f5b5191bf01d54b5e55da3eb67c8ad3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77e5b9584ec0e3468b9399f6f9d89388a95dc1f1c5bda3119e78dd81fb60679bb6eba66225cd9b7bcd4ac82d1292ec92c21386e4753e416ec2e3a4165c3dbd4d
|
7
|
+
data.tar.gz: 1eeb35ce8d8c2fae58002664eebfa0a3bece58a48449620dcdb508299f5d5969cd6360b5022ff18185aaf444428982a49e12ff8155a4b7dbfebc77b0460b8d09
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.84.0 (2023-02-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The GWLB Flex Health Check project updates the default values of healthy-threshold-count from 3 to 5 and unhealthy-threshold-count from 3 to 2
|
8
|
+
|
4
9
|
1.83.0 (2023-01-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.84.0
|
@@ -1430,14 +1430,14 @@ module Aws::ElasticLoadBalancingV2
|
|
1430
1430
|
# The number of consecutive health check successes required before
|
1431
1431
|
# considering a target healthy. The range is 2-10. If the target group
|
1432
1432
|
# protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is 5.
|
1433
|
-
# For target groups with a protocol of GENEVE, the default is
|
1433
|
+
# For target groups with a protocol of GENEVE, the default is 5. If the
|
1434
1434
|
# target type is `lambda`, the default is 5.
|
1435
1435
|
#
|
1436
1436
|
# @option params [Integer] :unhealthy_threshold_count
|
1437
1437
|
# The number of consecutive health check failures required before
|
1438
1438
|
# considering a target unhealthy. The range is 2-10. If the target group
|
1439
1439
|
# protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is 2.
|
1440
|
-
# For target groups with a protocol of GENEVE, the default is
|
1440
|
+
# For target groups with a protocol of GENEVE, the default is 2. If the
|
1441
1441
|
# target type is `lambda`, the default is 5.
|
1442
1442
|
#
|
1443
1443
|
# @option params [Types::Matcher] :matcher
|
@@ -4326,7 +4326,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4326
4326
|
params: params,
|
4327
4327
|
config: config)
|
4328
4328
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4329
|
-
context[:gem_version] = '1.
|
4329
|
+
context[:gem_version] = '1.84.0'
|
4330
4330
|
Seahorse::Client::Request.new(handlers, context)
|
4331
4331
|
end
|
4332
4332
|
|
@@ -50,6 +50,9 @@ module Aws::ElasticLoadBalancingV2
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
58
|
if self[:use_dual_stack].nil?
|
@@ -15,7 +15,7 @@ module Aws::ElasticLoadBalancingV2
|
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
17
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
19
19
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
20
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
21
|
end
|
@@ -33,7 +33,7 @@ module Aws::ElasticLoadBalancingV2
|
|
33
33
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
35
|
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
36
|
-
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}.amazonaws.com", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
39
39
|
end
|
@@ -756,7 +756,7 @@ module Aws::ElasticLoadBalancingV2
|
|
756
756
|
# The number of consecutive health check successes required before
|
757
757
|
# considering a target healthy. The range is 2-10. If the target group
|
758
758
|
# protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is
|
759
|
-
# 5. For target groups with a protocol of GENEVE, the default is
|
759
|
+
# 5. For target groups with a protocol of GENEVE, the default is 5. If
|
760
760
|
# the target type is `lambda`, the default is 5.
|
761
761
|
# @return [Integer]
|
762
762
|
#
|
@@ -765,7 +765,7 @@ module Aws::ElasticLoadBalancingV2
|
|
765
765
|
# considering a target unhealthy. The range is 2-10. If the target
|
766
766
|
# group protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the
|
767
767
|
# default is 2. For target groups with a protocol of GENEVE, the
|
768
|
-
# default is
|
768
|
+
# default is 2. If the target type is `lambda`, the default is 5.
|
769
769
|
# @return [Integer]
|
770
770
|
#
|
771
771
|
# @!attribute [rw] matcher
|
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.
|
4
|
+
version: 1.84.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-
|
11
|
+
date: 2023-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|