aws-sdk-kinesisanalytics 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: 7e932f9979eacd097640a883a36704b174973769c0f11a25dfcd68be53036c97
4
- data.tar.gz: 0e1aa92e2f6dca15aae1f3952b463327516e4aa4e4d0dc2fdea74c2028269344
3
+ metadata.gz: aa2b354da87b63ff809b2d80f5699803990cf37ecaaf9c60596291fc6c9b8ca0
4
+ data.tar.gz: 5af583f8bd3da3c6c495128b2da07fc1cec563f741ca4ab5016c84190582315e
5
5
  SHA512:
6
- metadata.gz: f515d1d046455cd9b433fd5e2b3a6e714dd0edb864959aca696b7f8beddcf9da112dc7096428141d9e8c751f0b471f5defc24ef20c6d8c623d7ae677152b0695
7
- data.tar.gz: 0b9d464f21396cda2eb818aef3f78dca8ae984e723f9ce1d628b9253e37eb44cebfafbd2358e86f53674e2a3605a2fdf59feda0d5074e29b3365c0703bd2849b
6
+ metadata.gz: 01e19df4090b8d9512a483895ca1d1ea1d3d3435c960997815cd4d6e53c12638d7b4ed30c4f8063876541de5de98556d86761a0a2bba1e81900a659d8ebc8aff
7
+ data.tar.gz: 4bba0ba3a14a243768edbfa4bea84323ec26045e14031063cd4dbfd0f1cd91eabb05f3b0c3607f1e5016aa487e2dc4cd382f22f3213373c4c90de02e92793633
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
@@ -1991,7 +1991,7 @@ module Aws::KinesisAnalytics
1991
1991
  params: params,
1992
1992
  config: config)
1993
1993
  context[:gem_name] = 'aws-sdk-kinesisanalytics'
1994
- context[:gem_version] = '1.50.0'
1994
+ context[:gem_version] = '1.52.0'
1995
1995
  Seahorse::Client::Request.new(handlers, context)
1996
1996
  end
1997
1997
 
@@ -14,6 +14,7 @@ module Aws::KinesisAnalytics
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::KinesisAnalytics::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::KinesisAnalytics
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-kinesisanalytics/customizations'
52
52
  # @!group service
53
53
  module Aws::KinesisAnalytics
54
54
 
55
- GEM_VERSION = '1.50.0'
55
+ GEM_VERSION = '1.52.0'
56
56
 
57
57
  end