aws-sdk-kendra 1.75.0 → 1.77.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: acc98fe24ba1b5f9fe645c95767f72f6b69eb48f69d30eff191575cdd20d7f41
4
- data.tar.gz: e8334f99c7fb8b5b490692a7cb5122b39523db0dd1ff72093040c16b4648407e
3
+ metadata.gz: 0a2b91c1fb4ff425aa163833db0f8e56751f7600b95c39f8a47abae66039ad33
4
+ data.tar.gz: c2551d513a55a5929e60be4bac5f574b1bef6327e224cbf24a6b2d76a5f8816d
5
5
  SHA512:
6
- metadata.gz: 72e0733f5d3c647d68fc82ec18a3456b982ef59801d1d52c64f2e4b68befe3860faf64b0ab270b87bb746008f2cff026b7744178d4753f1f7ea9db2c489952d4
7
- data.tar.gz: 2a65452e02cdaaa214ded804b5dfae348265a4d4330b69a3148e08e51f8cd67fd17596d89dadd29f22892a8839b49a74f27f9e3b3fcbb5fca0276102dfc80d55
6
+ metadata.gz: f127dfbdfc31fbc0d6c281c175a55af445345a94a6be6d5a3fbaac48906c57701b921d458f699e2cf74b36be022b258ae069b1039873dfcf644980a115ee6125
7
+ data.tar.gz: b21070e8e3af900d379331dcf07d8915a12cd1b4f36cc50b80bbf5c5258bbb938762ab0294d24ab2a4a6b654e599b5fb8b0ae5a2fe0c471ddb2c12d253397c71
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.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.76.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.75.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.75.0
1
+ 1.77.0
@@ -7291,7 +7291,7 @@ module Aws::Kendra
7291
7291
  params: params,
7292
7292
  config: config)
7293
7293
  context[:gem_name] = 'aws-sdk-kendra'
7294
- context[:gem_version] = '1.75.0'
7294
+ context[:gem_version] = '1.77.0'
7295
7295
  Seahorse::Client::Request.new(handlers, context)
7296
7296
  end
7297
7297
 
@@ -14,6 +14,7 @@ module Aws::Kendra
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Kendra::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::Kendra
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-kendra/customizations'
52
52
  # @!group service
53
53
  module Aws::Kendra
54
54
 
55
- GEM_VERSION = '1.75.0'
55
+ GEM_VERSION = '1.77.0'
56
56
 
57
57
  end