aws-sdk-chimesdkmessaging 1.26.0 → 1.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25e1d072b33553a8b3888b5f813fd2f358054c316a15bcad0eb0972337ade9c2
4
- data.tar.gz: d8b218469799926348ae8ddc1c43bb8527eb3fde0854031046999b5e14b34a47
3
+ metadata.gz: 15a0341dea3f9f4527e063f7862a136939fbea3e21a1cd958acbd64bc001ea52
4
+ data.tar.gz: feab8f585ec42880c8ac77488d62336f89bd9fdcd9a767478926cc48b75b6129
5
5
  SHA512:
6
- metadata.gz: 41c7ebd6b4b428cbde2810c924801e9241acff67e304fbe409b8bb035a0441001304b07fcff3c96d139f437c6aa7906004320c42b0bbac4f9993b25ad85610d5
7
- data.tar.gz: f7b9ab74c327c1c926ec0d6f02c9b1c9446c05a0e5d68d5ed5844e5d140fa39c1c1723a84e4ade2b3e0efe7bf0f6218307be62aa06797af57a45442b24964f16
6
+ metadata.gz: 9bad7dd0ec476608136036508710fcbabb21af9f57cfadb7cb7b28ab23abc62de199b5a3516264eeedebc566a52ffdf74c510e4ef59cdcba6cdb8b31aaf56243
7
+ data.tar.gz: 30fdca9f28afc28bcb6c4a1617eaf1bb8633b90a1251588d0996120dccda0e069005ad5ef98033a03afdc24767b435118ed8f419903907728810790583cb36e3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.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.27.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.26.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.28.0
@@ -3219,7 +3219,7 @@ module Aws::ChimeSDKMessaging
3219
3219
  params: params,
3220
3220
  config: config)
3221
3221
  context[:gem_name] = 'aws-sdk-chimesdkmessaging'
3222
- context[:gem_version] = '1.26.0'
3222
+ context[:gem_version] = '1.28.0'
3223
3223
  Seahorse::Client::Request.new(handlers, context)
3224
3224
  end
3225
3225
 
@@ -14,6 +14,7 @@ module Aws::ChimeSDKMessaging
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ChimeSDKMessaging::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::ChimeSDKMessaging
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-chimesdkmessaging/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMessaging
54
54
 
55
- GEM_VERSION = '1.26.0'
55
+ GEM_VERSION = '1.28.0'
56
56
 
57
57
  end