aws-sdk-swf 1.48.0 → 1.50.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: 1b074b3455277b511691a4dc088993cc5b9f6f2d2a4a8959650772a90c783879
4
- data.tar.gz: c2fe90b80c553697f11d213b4a3fda24ba67c77a72647336673af8d9a440d415
3
+ metadata.gz: c95b7097ef5198133753a19155ff70314a994c57a1f12b7205ecaf0a8283ae80
4
+ data.tar.gz: 45f202136a14a7aefbee8895c3fc253d9f13ace156cf10bf8f9e08b033689c97
5
5
  SHA512:
6
- metadata.gz: '08e8bd5354f16ee6663c34ab3435308ed882bb2f150fc60c850833e6c79598e267b7b75056a20f6b5f997b8caaf0030caf581b17010ef222415a5686d957fac0'
7
- data.tar.gz: 2cb3e069b0bc41363ca7cbb3e43853d5c49bcfc6315e266be68792bac0f3c72b6a59ff79722824430d54590bd71a1eb8b50a16ec54e171a596939267f062dd34
6
+ metadata.gz: 2a50f4a1a40109064313861e83ebd6dc472d8f3c7ab3e1f11d7c0c18bc24767ad6a9eca16cf3eb94f06c52cae8e5270ba6752cbc2574fc9dadd4c193f477bf7e
7
+ data.tar.gz: 0d470f2f3c529693c9e67dafb9319f6ab57293fc8226371dfc42f7048daaae31d5e291d0fefc060fbc6a5b088f7cea84b22d217260dc20b7f7d288e6e129e45a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.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.49.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.48.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.50.0
@@ -4382,7 +4382,7 @@ module Aws::SWF
4382
4382
  params: params,
4383
4383
  config: config)
4384
4384
  context[:gem_name] = 'aws-sdk-swf'
4385
- context[:gem_version] = '1.48.0'
4385
+ context[:gem_version] = '1.50.0'
4386
4386
  Seahorse::Client::Request.new(handlers, context)
4387
4387
  end
4388
4388
 
@@ -14,6 +14,7 @@ module Aws::SWF
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SWF::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::SWF
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-swf.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-swf/customizations'
52
52
  # @!group service
53
53
  module Aws::SWF
54
54
 
55
- GEM_VERSION = '1.48.0'
55
+ GEM_VERSION = '1.50.0'
56
56
 
57
57
  end