aws-sdk-iottwinmaker 1.19.0 → 1.21.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: 0afdc5e374c6c38046d419c111c9a9124d8e2b26715faf54c8e08a1c7d6249b7
4
- data.tar.gz: 5016622f916a1f520bcbf3c41ce76c39a4265f08eaa4171e965febe7f62ac90e
3
+ metadata.gz: 957b68a6b08e465747db401c509e25e209b935ddb71f9a339dd62543321e7929
4
+ data.tar.gz: 9645ca450985ec3537740448cdd020deaab149423161d41f6da35e2d77203400
5
5
  SHA512:
6
- metadata.gz: 3c5f5ab467fed431fa61cd4a159584585d310201b7cee57858ecd5570a7a22aee8be054b58f401d1076149c8622cc9a9c5b787370c1e775172399a499abd0c4c
7
- data.tar.gz: 811709f52bb4b0649ad6b8b840dd9535b00fb05471f8510486be26150bad18b4521b00f03723e713ba91ef40b4501b3b08b4c397a13da09fa69bc0c15787b997
6
+ metadata.gz: bb4f4c7d8734a07513dfec104272baff5e8b6ae9c636f9583580acc6b6b55c132b9cbad0687cb68971fc2e3cc91f7ebd7af02159e72f9bc7e5756901fc759a15
7
+ data.tar.gz: 3e8adcc21c34faed3c35869f66415b5d9e9717e2bf7b283a6d00922105e6cca0851338f0825167809d0da1b2d6c68acf7d211f353fb0bab2ff4e736a1876002b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.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.20.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.19.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.21.0
@@ -3456,7 +3456,7 @@ module Aws::IoTTwinMaker
3456
3456
  params: params,
3457
3457
  config: config)
3458
3458
  context[:gem_name] = 'aws-sdk-iottwinmaker'
3459
- context[:gem_version] = '1.19.0'
3459
+ context[:gem_version] = '1.21.0'
3460
3460
  Seahorse::Client::Request.new(handlers, context)
3461
3461
  end
3462
3462
 
@@ -14,6 +14,7 @@ module Aws::IoTTwinMaker
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::IoTTwinMaker::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::IoTTwinMaker
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
 
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-iottwinmaker/customizations'
53
53
  # @!group service
54
54
  module Aws::IoTTwinMaker
55
55
 
56
- GEM_VERSION = '1.19.0'
56
+ GEM_VERSION = '1.21.0'
57
57
 
58
58
  end