aws-sdk-elasticloadbalancingv2 1.83.0 → 1.85.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: 525791642b2e92f0e3dcb7984d99afd71d89af20269a295a961e5caebdb7930e
4
- data.tar.gz: 429261925b3c2b12a32d3e89ba20ceed4339b2040e5614e22f08046779827d8d
3
+ metadata.gz: d56047952eda97223d5eceb2b8f2264ad1a33de41cd9de5284bef0942bd34d9c
4
+ data.tar.gz: 50f3d35c0c684375f2d9ff9a56ef8a6791b51ec2573667ccda89202d4f54f336
5
5
  SHA512:
6
- metadata.gz: e11b9ed767a6c13b405edb400a497a1089934a75cc08b8658d7922159d09d60627bf1db8427a5dd70818e071395124ac058b44ef6e37c539abc4ccb54f89daa3
7
- data.tar.gz: ee92124f8600d957413c7bbd20df9d0a43e685596ba9c270af9b13067ba4c5e94fa91526395dd26ea157de2ea70d25cd7a9bd4d8e2af844fa09a4840a024944a
6
+ metadata.gz: dce4103ea3e3a2a46d409b17c52b42f5bcb9270cdc338addd0383b271045cdb10f50635b8c990f99947df1ceaddf2c28e9339cb3af8e899b83674222e1a89f68
7
+ data.tar.gz: fb2dec0b4a03a60d4f46e4ca6f2d744145d52ebf78218cd133952585dd51fc450f64efc1c8d50a95b862aa39f6f9218ca56d119e9f1a2b7c6d0ddbeb24c62c1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.85.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.84.0 (2023-02-02)
10
+ ------------------
11
+
12
+ * 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
13
+
4
14
  1.83.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.83.0
1
+ 1.85.0
@@ -275,6 +275,11 @@ module Aws::ElasticLoadBalancingV2
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -1430,14 +1435,14 @@ module Aws::ElasticLoadBalancingV2
1430
1435
  # The number of consecutive health check successes required before
1431
1436
  # considering a target healthy. The range is 2-10. If the target group
1432
1437
  # 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
1438
+ # For target groups with a protocol of GENEVE, the default is 5. If the
1434
1439
  # target type is `lambda`, the default is 5.
1435
1440
  #
1436
1441
  # @option params [Integer] :unhealthy_threshold_count
1437
1442
  # The number of consecutive health check failures required before
1438
1443
  # considering a target unhealthy. The range is 2-10. If the target group
1439
1444
  # 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
1445
+ # For target groups with a protocol of GENEVE, the default is 2. If the
1441
1446
  # target type is `lambda`, the default is 5.
1442
1447
  #
1443
1448
  # @option params [Types::Matcher] :matcher
@@ -4326,7 +4331,7 @@ module Aws::ElasticLoadBalancingV2
4326
4331
  params: params,
4327
4332
  config: config)
4328
4333
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4329
- context[:gem_version] = '1.83.0'
4334
+ context[:gem_version] = '1.85.0'
4330
4335
  Seahorse::Client::Request.new(handlers, context)
4331
4336
  end
4332
4337
 
@@ -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.85.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.85.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-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement