aws-sdk-alexaforbusiness 1.66.0 → 1.68.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: c3f3d4dc21fb843f91d4422b303e1148d4b598b36c58d771c8c7803a1ade5f3a
4
- data.tar.gz: ff208c4eeae5a5950679231c99f305aed2eaa2f3076201dc03f14316d8a2cf38
3
+ metadata.gz: c0edd39f0b0dd712f03f7a74399fcf9475b80c1a7a18df8baac5863f664d1147
4
+ data.tar.gz: 05f5c73772ed37108947b5f5944fe84cc0008da995c85e92f1c47a551419f4fc
5
5
  SHA512:
6
- metadata.gz: e52be0fa0f4de194f537a1ba666822c3a63ef7cfbcd7d6b79d7d7f579e117f4959449e8982cc0079611017c0f53887c65ee444fd0063e37c82c07fbe67615c85
7
- data.tar.gz: f26b5aa4013625ea3b63f028faabc3ee80738a70f18ba557083669e4bcf2e50c3202a463d170b007e9bb87f52b605185881b8261b12be8bfa778a4ac48e1bf74
6
+ metadata.gz: ebb8b5b97d7618827a1c2fe3c7db02c8c9c12f52d9d708e4c34d2fca4e6cfae1e1a2f9e2ab5d6090e875df5ffa4ce894175138824c0c4b9829f8e8a079e0cfb2
7
+ data.tar.gz: 18533430808df18cb44c1a18a0f44c008f4f53d924420e89f7f48581b6e52b18fa8609dab2ca57b140cfe8d2a1b11f2b27408774588b5d81d78bc906349315b8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.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.67.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.66.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -4305,7 +4305,7 @@ module Aws::AlexaForBusiness
4305
4305
  params: params,
4306
4306
  config: config)
4307
4307
  context[:gem_name] = 'aws-sdk-alexaforbusiness'
4308
- context[:gem_version] = '1.66.0'
4308
+ context[:gem_version] = '1.68.0'
4309
4309
  Seahorse::Client::Request.new(handlers, context)
4310
4310
  end
4311
4311
 
@@ -14,6 +14,7 @@ module Aws::AlexaForBusiness
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::AlexaForBusiness::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::AlexaForBusiness
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-alexaforbusiness/customizations'
52
52
  # @!group service
53
53
  module Aws::AlexaForBusiness
54
54
 
55
- GEM_VERSION = '1.66.0'
55
+ GEM_VERSION = '1.68.0'
56
56
 
57
57
  end