aws-sdk-elasticloadbalancingv2 1.95.0 → 1.97.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: 3daf4aaa54a16ea73d4dc3f38c4275049c8ee255f44aa2a03a86a0d60046fc2d
4
- data.tar.gz: a95d7fd19fa730d1534abb005d578d4d1e795dfb2edd8d9dbe35bea38fb2d48d
3
+ metadata.gz: 3f728e803b27f2d6496fb0d6cf87243c3519708e857f0ddeb564095d72ca63d6
4
+ data.tar.gz: 3c0cb4a79cc4f9d12f1fea50277bf05b7a02766b2727884b9203e16ba54f9b57
5
5
  SHA512:
6
- metadata.gz: d3d37e589de431351aa3215772ac15d780c26c381b0c716f28896424424191ffde7f772d1ddc5a9255e64891794b5435d43e0ffb5d655aef98717b4631f66004
7
- data.tar.gz: 4c46b2e3a7eb7da3dfe66810b42e75f56cfa6bad8e4ad75681162df0bfea9d3962d35e1825d3fb1a997196a9b416f1ccdd0a3bf6a3ae5b44a03db733343097e8
6
+ metadata.gz: a448912f88700e025cc912120ab9f13bac469f69bbf11480c1ee2e515d1d53d1e3b109c40fe079411edf2e35b5bcdbf74dcf70e97f9769f0b573d299c619b9bd
7
+ data.tar.gz: 8b2028ee153abaff0011162a39ce91582316f76ba148d29dbd7f002389ecc33987b4149ca72d6d13ea8b8beec350ee15785e0b3fe8bea95524bcad0f68849097
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.96.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.95.0 (2023-11-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.97.0
@@ -4831,7 +4831,7 @@ module Aws::ElasticLoadBalancingV2
4831
4831
  params: params,
4832
4832
  config: config)
4833
4833
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4834
- context[:gem_version] = '1.95.0'
4834
+ context[:gem_version] = '1.97.0'
4835
4835
  Seahorse::Client::Request.new(handlers, context)
4836
4836
  end
4837
4837
 
@@ -14,6 +14,7 @@ module Aws::ElasticLoadBalancingV2
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ElasticLoadBalancingV2::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::ElasticLoadBalancingV2
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
@@ -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.95.0'
56
+ GEM_VERSION = '1.97.0'
57
57
 
58
58
  end