aws-sdk-lambda 1.112.0 → 1.114.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: 6496bd84ca475888ff2e6c09b5d2dd1e828cbdfd1c56bb8232b3619bc8b2d631
4
- data.tar.gz: 9ee584ae4a3da00918ee7e71f78b6b2b8b6c644dd1d99ae582d237e3444860f1
3
+ metadata.gz: 75609a4d034de1add9a9316964a34020226efc1f58453eedcde0f3aa10659397
4
+ data.tar.gz: e041cd5d0518b2410f9616116e668995247ce1346f090c136bddf4df29f64b1f
5
5
  SHA512:
6
- metadata.gz: 307af9d8bab0598f8784cefeba454dd123cd5bf513aa85a7e832ecdbcdfd71ce17ecb673cf850960b956cd8e87c738ebfe56f2eece9b6207ba718638b1c185c9
7
- data.tar.gz: 3f11767245731efee67f35a3146d2aa521a2e6927121604b19bfb035c4fa0ee19f76422147b237bdf2af0bd75b84c79fc2bd2a7c5c5925331481e1433f42f46d
6
+ metadata.gz: 1ecd3ffababdcea988d78b98ba5995659c8e01988a1398d3e7fe617d2a173c89445b06aeebbf0a994f967388931786ff762507c15e589d0980ac6990a3af673c
7
+ data.tar.gz: dec687a282dad98637f602f7a5cb8c0b4c0460c282bf15859ac9f99f48c721d53ea0cd4ea0926962dac7e2c61e8876b56a164f4df05b63802da73139badc14a0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.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.113.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.112.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.112.0
1
+ 1.114.0
@@ -6477,7 +6477,7 @@ module Aws::Lambda
6477
6477
  params: params,
6478
6478
  config: config)
6479
6479
  context[:gem_name] = 'aws-sdk-lambda'
6480
- context[:gem_version] = '1.112.0'
6480
+ context[:gem_version] = '1.114.0'
6481
6481
  Seahorse::Client::Request.new(handlers, context)
6482
6482
  end
6483
6483
 
@@ -14,6 +14,7 @@ module Aws::Lambda
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Lambda::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::Lambda
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
 
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-lambda/event_streams'
54
54
  # @!group service
55
55
  module Aws::Lambda
56
56
 
57
- GEM_VERSION = '1.112.0'
57
+ GEM_VERSION = '1.114.0'
58
58
 
59
59
  end