aws-sdk-memorydb 1.20.0 → 1.22.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: b02a1b07fbc3d2e2e9628da976e95cde5a1baf44c13c02f20f3929e1a3722d35
4
- data.tar.gz: f7e7af79d68c7eb1869b8103ec70d699901d71b4e2029442d71f3bbf739f046c
3
+ metadata.gz: d001d323c7cd1b8faf3ef0d1e8e316a9f711dcc4d7e8f8e1fbae3f7df4e9d102
4
+ data.tar.gz: 0aebdfae0e3173256b7321160ea8444711108d4f67d18269e48f4e0da5aa78ad
5
5
  SHA512:
6
- metadata.gz: 1c82bca4efdfc6e271e945f0da6eb4aef76d11c8941af786cda4a55ac0f50919851dfdefa9780c7a10e9e433fd3f13777a3ebb827301f32bcd2ae080763962bc
7
- data.tar.gz: c491af7203b2661509007ad16a259503146cf7ea0e0268c64773bdee4afa5f376cf4b7d285b40e333d9cb74a92dc09b9d341dfec9c2134798677f4df1fdf315b
6
+ metadata.gz: 92db91dcb1892031cb3d7898e2929ab4f0330e0da9c4afb6ebbaad61795dabe8a035d200ae1443deb1b9ea08c44d2d67c04b73217283cdee774bd7b1de4f0b35
7
+ data.tar.gz: ae5f36540fa5c54194c9978e6def33ed9d4d225f9c1ceff73ef0576481d079858dcc2b3f49c0208f5f791da38c1befb16afb95a2057654d878d9d01faabc727a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.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.21.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.20.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.22.0
@@ -2920,7 +2920,7 @@ module Aws::MemoryDB
2920
2920
  params: params,
2921
2921
  config: config)
2922
2922
  context[:gem_name] = 'aws-sdk-memorydb'
2923
- context[:gem_version] = '1.20.0'
2923
+ context[:gem_version] = '1.22.0'
2924
2924
  Seahorse::Client::Request.new(handlers, context)
2925
2925
  end
2926
2926
 
@@ -14,6 +14,7 @@ module Aws::MemoryDB
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MemoryDB::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::MemoryDB
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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-memorydb/customizations'
52
52
  # @!group service
53
53
  module Aws::MemoryDB
54
54
 
55
- GEM_VERSION = '1.20.0'
55
+ GEM_VERSION = '1.22.0'
56
56
 
57
57
  end