aws-sdk-states 1.62.0 → 1.64.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: cbbd43f4b15ab975195243bcf474670186fb6c6e813b58436cefe03dc45d0cf9
4
- data.tar.gz: a9479935c9fecba65a2247ed26e05eb61f0bbb593bbc94b3db0f2d44fe671afa
3
+ metadata.gz: 1a3b07da1011df643da50985280f253892cd6eee3c29211e60e61504d8281a1a
4
+ data.tar.gz: 3fdc10c928d3c91344d80b98af0a4e281edcda6d8940596bb521563b87daf4b0
5
5
  SHA512:
6
- metadata.gz: f3e26ca5050d5bbc104d9cf196fed6fbb06caeb2d279b35ac399dd1acfe125d434ad31cd28d46c22eb4d2f80ea033819c45934ed11a97455825faf0785ba0ac4
7
- data.tar.gz: 8505b94996b2ae3353f0cef164f5ef9cd25c7397e3cb857f302f094e8afcaedb3398250238c6d207e9345ece650f6f2c073007ffdee33a0fb17175c2ffb28c7b
6
+ metadata.gz: aa5deccffbe0aed89702d087ae41f6578678ea90f9147c330044bd6ac729f2f8ba97f9f29e9fa3a1e2b85cf4eaa1f311f0f20380c28e61e623572c58adf8ae8f
7
+ data.tar.gz: 4a832661178fed1bc814309724d2aa91e3790b5f9c8de2d26078a57e7e03974e09c810a981a45054399f6d349edfd4e917ab13a31d8fd44655c7b48e5bb729d3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.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.63.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.62.0 (2023-11-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.64.0
@@ -3179,7 +3179,7 @@ module Aws::States
3179
3179
  params: params,
3180
3180
  config: config)
3181
3181
  context[:gem_name] = 'aws-sdk-states'
3182
- context[:gem_version] = '1.62.0'
3182
+ context[:gem_version] = '1.64.0'
3183
3183
  Seahorse::Client::Request.new(handlers, context)
3184
3184
  end
3185
3185
 
@@ -14,6 +14,7 @@ module Aws::States
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::States::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::States
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-states/customizations'
52
52
  # @!group service
53
53
  module Aws::States
54
54
 
55
- GEM_VERSION = '1.62.0'
55
+ GEM_VERSION = '1.64.0'
56
56
 
57
57
  end