aws-sdk-elasticache 1.94.0 → 1.96.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: cfd15578490295b945144bcbcc76f72a302e22e6de27de00d181ca9d5b01ae84
4
- data.tar.gz: 4ab1729796290a4effc8e4ef9d2f3fc8dc4b44da38e4fbc3fe3bee4a95e8b329
3
+ metadata.gz: 378cdd9df39c04fe20a0c77ca9613422e73b756feab7a0fc57220305e9abcd71
4
+ data.tar.gz: 1e112a5ba8ef5960d346d9ab7e6a3c70620f64b3530e1f32a5ee96c62db840b4
5
5
  SHA512:
6
- metadata.gz: c116134acf19eef0b1721a8bd9a3cb0772e037e6f9d8388333e42ebdb066dc0fbc65bf10fe864cc176588ff4951280cfc413f47a8942fc698d381564b73c0b49
7
- data.tar.gz: 0c66745064172ccc0e990226c0fa1e0f45b5a4a02ffadfff49a7861e17dad59f2fc9daee2ef198dd310ef28775a785c6ad65224a2509fea9f1abd8b287e52716
6
+ metadata.gz: 78bdfd332455ed291105d2670780e5f9e97a09cc9aaaca445114a89f630f9f975fae324d069198c13428f8c4cc3332064fed4a3af1b868f6aa82b402da121ff5
7
+ data.tar.gz: 9f3c909c4f518ce6ee93a426b5fa90173d6a260d8ade8eec1a291781506bb0b46c991a65d3c39fe57e4619b51ccd2f9e11bc60c58ad0e78924fde0679d762ef4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.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.95.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.94.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.94.0
1
+ 1.96.0
@@ -11300,7 +11300,7 @@ module Aws::ElastiCache
11300
11300
  params: params,
11301
11301
  config: config)
11302
11302
  context[:gem_name] = 'aws-sdk-elasticache'
11303
- context[:gem_version] = '1.94.0'
11303
+ context[:gem_version] = '1.96.0'
11304
11304
  Seahorse::Client::Request.new(handlers, context)
11305
11305
  end
11306
11306
 
@@ -14,6 +14,7 @@ module Aws::ElastiCache
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ElastiCache::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::ElastiCache
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-elasticache/customizations'
53
53
  # @!group service
54
54
  module Aws::ElastiCache
55
55
 
56
- GEM_VERSION = '1.94.0'
56
+ GEM_VERSION = '1.96.0'
57
57
 
58
58
  end