aws-sdk-elasticloadbalancingv2 1.83.0 → 1.84.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: 525791642b2e92f0e3dcb7984d99afd71d89af20269a295a961e5caebdb7930e
4
- data.tar.gz: 429261925b3c2b12a32d3e89ba20ceed4339b2040e5614e22f08046779827d8d
3
+ metadata.gz: 1d1b900339c5b6878b4829eb997459cc169609990f49a6f992d1122aa9f6baca
4
+ data.tar.gz: ad454cb018305ae5598d4d367334144b2f5b5191bf01d54b5e55da3eb67c8ad3
5
5
  SHA512:
6
- metadata.gz: e11b9ed767a6c13b405edb400a497a1089934a75cc08b8658d7922159d09d60627bf1db8427a5dd70818e071395124ac058b44ef6e37c539abc4ccb54f89daa3
7
- data.tar.gz: ee92124f8600d957413c7bbd20df9d0a43e685596ba9c270af9b13067ba4c5e94fa91526395dd26ea157de2ea70d25cd7a9bd4d8e2af844fa09a4840a024944a
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.83.0
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 3. If the
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 3. If the
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.83.0'
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) && (url = Aws::Endpoints::Matchers.parse_url(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}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
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 3. If
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 3. If the target type is `lambda`, the default is 5.
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
@@ -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.83.0'
56
+ GEM_VERSION = '1.84.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.83.0
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-01-18 00:00:00.000000000 Z
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