aws-sdk-kafka 1.66.0 → 1.68.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: f2f6a22997275af63ef8d6f7bb1fc9eb9644125c89259a282e5debac06f8381b
4
- data.tar.gz: 609d7c1642d8cda27a98c9eeb32fb1bebbeba86c0d8c47c03019b6253153a1d0
3
+ metadata.gz: 5a8d52f3f64249ea7e0ae45ee970323098fbc025717775140ccfdfc9a166835a
4
+ data.tar.gz: 5c4cbe79c5f1fe2a67aafda7e851246ff69de22af51cadc2755959ba7a86197d
5
5
  SHA512:
6
- metadata.gz: 1998adbe3580e0c9e1538923da3d211af4409be2111e37124e2badb5a5ff5afbad3ee9a4f60b278d113e62b40971dbbcb8f6f289b7a5fad9158d8a68dc6e2fe9
7
- data.tar.gz: dee0430d57f7e6f0168912970f740559ce65b13336db9d6e60023b3bbed4c49123400a569816d301a5ce6db7b91dbfe4fbfc846e35e2071691c0d334136ded67
6
+ metadata.gz: 0abbaa559aef0df6112ff98a13797933ad6a2900c051c8c312453d71d4607fdc1d6f92dcb54431bb4764e24af3b1a31026cfe6dd3dfce59a70c62b6e43e79e75
7
+ data.tar.gz: 0043e23b1a65dbe36ef8aeefc12affdfef28755b4dc8475b77a7716c849d29cc50da8303b6062fc210edc6ba9deefe0c914beed15af44c06f3a7107ec8fbe92e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.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.67.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.66.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -3296,7 +3296,7 @@ module Aws::Kafka
3296
3296
  params: params,
3297
3297
  config: config)
3298
3298
  context[:gem_name] = 'aws-sdk-kafka'
3299
- context[:gem_version] = '1.66.0'
3299
+ context[:gem_version] = '1.68.0'
3300
3300
  Seahorse::Client::Request.new(handlers, context)
3301
3301
  end
3302
3302
 
@@ -14,6 +14,7 @@ module Aws::Kafka
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Kafka::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::Kafka
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
 
data/lib/aws-sdk-kafka.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-kafka/customizations'
52
52
  # @!group service
53
53
  module Aws::Kafka
54
54
 
55
- GEM_VERSION = '1.66.0'
55
+ GEM_VERSION = '1.68.0'
56
56
 
57
57
  end