aws-sdk-entityresolution 1.4.0 → 1.6.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: 76252f9a74f26736e4696782ebef55b3e6e0ad9952877500b4225fb5f930d3fb
4
- data.tar.gz: '091ce27fb44a7934f3fdea442151baa15bb429bd023c1293337b23a1d3787caa'
3
+ metadata.gz: 1dba34c6f3d0464db2903619ed4dd57af28d55d8f75e023734a3a082fad3ec7e
4
+ data.tar.gz: a2f71b24575415d69987e992362bb6be4361fd1f64643e131cd890f674af7c96
5
5
  SHA512:
6
- metadata.gz: b90bc747a24c5916f258bbb0fa82f405b122a4caa268d507e4353ef2e8da92daf1c2822d6e6ad5fd91a70a21c8c479775ff990ff9ae707f81e61507ef7620894
7
- data.tar.gz: 998ab1d0f2fe3591a15384672203e6320c3df50aa1a01782e77c84a1357949ed02ad9943e85e212fd79314ffe64400b8b7184c302457005f8ffe84f0452c0a25
6
+ metadata.gz: 11437ad592cebaf655403493ebe7cd5d6a831b5d6c16d57a24e086d7836bc131e7758945abe5434a4f505c190cd3be84feda90c3a2a3999c102ddbbcd4f356b8
7
+ data.tar.gz: 1074626f7eb5d8d1ed6551cff0a6511ea3fa6367dacefd87f99f4c8cc566cba00731f5a111c1f378790a1a4b3d5d2dab1c72605b9e918b2f9361e06f446ebe07
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.6.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.5.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.4.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.6.0
@@ -1842,7 +1842,7 @@ module Aws::EntityResolution
1842
1842
  params: params,
1843
1843
  config: config)
1844
1844
  context[:gem_name] = 'aws-sdk-entityresolution'
1845
- context[:gem_version] = '1.4.0'
1845
+ context[:gem_version] = '1.6.0'
1846
1846
  Seahorse::Client::Request.new(handlers, context)
1847
1847
  end
1848
1848
 
@@ -14,6 +14,7 @@ module Aws::EntityResolution
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::EntityResolution::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::EntityResolution
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-entityresolution/customizations'
52
52
  # @!group service
53
53
  module Aws::EntityResolution
54
54
 
55
- GEM_VERSION = '1.4.0'
55
+ GEM_VERSION = '1.6.0'
56
56
 
57
57
  end