aws-sdk-kinesisanalyticsv2 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: 0f430fc76c285e2130d03c240d538650de64817cd1fa3014c9660496ba7dd49a
4
- data.tar.gz: b8f621c9b954a2a426da7a29a19b6fb933535e98d9c51a5bb260189dc5a0e8f3
3
+ metadata.gz: d6b53a75681ed6e33d90a003d81841d863704b7ae92a3c83935620d4e21d0e61
4
+ data.tar.gz: e1442b809156d94396464205e8e5d891f12db08655e860bfd1f9f0c040a3cc43
5
5
  SHA512:
6
- metadata.gz: 3bcb8cab6755ac2411b5bc08f4c28b466a4f5ea4aec49a93c950970103e6e482586b867e4706ace874106fc6af1cdb3ee666a7dd49061aab3b662e9ba8f82be5
7
- data.tar.gz: ab292175185b806cb74fcfadf051317a8b783f5cc02127b3d7e6bbd238bf6801a89cc3b5f75a65bd3a3a6ba41ba1a685bff64c60717e4b0d5d9b0cdb436218f8
6
+ metadata.gz: de890fae4dfd394b73002c2eb67817b44a39ddfe913952d51ac30ae3de9579fe082160fa0aa5484fd04e95b092abd3711e6d0b3b09cb4ef6c22b81457b840b30
7
+ data.tar.gz: 85d1bd56e4be41bdb9a6b50e548771081f6d7f0e495e12d021b3bf57b991b28cfef96c7742a86408a301992fcaa8e54d19546e54bb089046c3e40be82848e445
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
@@ -3047,7 +3047,7 @@ module Aws::KinesisAnalyticsV2
3047
3047
  params: params,
3048
3048
  config: config)
3049
3049
  context[:gem_name] = 'aws-sdk-kinesisanalyticsv2'
3050
- context[:gem_version] = '1.50.0'
3050
+ context[:gem_version] = '1.52.0'
3051
3051
  Seahorse::Client::Request.new(handlers, context)
3052
3052
  end
3053
3053
 
@@ -14,6 +14,7 @@ module Aws::KinesisAnalyticsV2
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::KinesisAnalyticsV2::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::KinesisAnalyticsV2
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-kinesisanalyticsv2/customizations'
52
52
  # @!group service
53
53
  module Aws::KinesisAnalyticsV2
54
54
 
55
- GEM_VERSION = '1.50.0'
55
+ GEM_VERSION = '1.52.0'
56
56
 
57
57
  end