aws-sdk-mturk 1.50.0 → 1.52.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: 43cba708e5826b3b742adbebf6fec441d90c4a574f380c27a9a69561b11f6862
4
- data.tar.gz: 556b7800c39510f6ab84fcb7498ab189f3d5be31c5d5ae8449b88847af1af511
3
+ metadata.gz: dd9e24f89d9567ded622579f6d59ac5631af0d9d99b7b0012ca6c0d66a9ab7f8
4
+ data.tar.gz: 820f56c2ddfebd78409693fc519fb857a793a88d41e523bae0fb8f53a9f1fcbc
5
5
  SHA512:
6
- metadata.gz: 696e1ecdc232cda2098495d1d8d0d580108705314cc978a8d173887691a320ac553078634c97c161920097ed17fe18e8d1adf89ce8983bcccfeadd3e0b3631a9
7
- data.tar.gz: 14d1ca860fb03898b55f1fca8bea1d100ed3cef0c9bb8f82cc00ae25e808d6932d4d1317728650e791081ea364360a49f711020c03cda296d4bafc0caf08099a
6
+ metadata.gz: 5bec403661a9620dba8806dc52b572c1f55e66f1962e63d18cc9e48017d5eeb37a224a370f211511d2344b4ab14794a8f2fd5af9c14470a0e27910bf45b04f9b
7
+ data.tar.gz: 4957f9ad6567ea40c6161872fb37c31cd43c1ca3c90453ff7fd585a2697eebb9b30ae1911db919a4621503ec039f9653ccd297cf2cd7eba39ffac6e489a5e73a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.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.51.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.50.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.52.0
@@ -2925,7 +2925,7 @@ module Aws::MTurk
2925
2925
  params: params,
2926
2926
  config: config)
2927
2927
  context[:gem_name] = 'aws-sdk-mturk'
2928
- context[:gem_version] = '1.50.0'
2928
+ context[:gem_version] = '1.52.0'
2929
2929
  Seahorse::Client::Request.new(handlers, context)
2930
2930
  end
2931
2931
 
@@ -14,6 +14,7 @@ module Aws::MTurk
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MTurk::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::MTurk
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-mturk.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mturk/customizations'
52
52
  # @!group service
53
53
  module Aws::MTurk
54
54
 
55
- GEM_VERSION = '1.50.0'
55
+ GEM_VERSION = '1.52.0'
56
56
 
57
57
  end