aws-sdk-workspacesweb 1.16.0 → 1.18.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: 74234a6bf60fa864f72c05275b1bcbd2aedd9a889b2151b0965c940b723cb33e
4
- data.tar.gz: 2bbd8500c8477289a327ad4fdcd77b8f269b2830ecd7b2f5fa16266a722f41d6
3
+ metadata.gz: bbedd5b81c81f18eb63f8265ae3361bb39f7453fd632fa7e1f008d8b70a4a176
4
+ data.tar.gz: 569021087734cff5526e2fc3bed0e7231d953e538c79331ed4064e0ee73fd747
5
5
  SHA512:
6
- metadata.gz: e7a73db018eef05ecd2318f9cc80d98fd1f1d3ce07633cc6e294a5d0c41dcb7f15c93331c1e6d7b88d570e5d3a4381584e376226cb449ef7be7120291ee84035
7
- data.tar.gz: 7c590f93d80d231e0dbfaea73f25e3f25918e2ffac2b443ba0bde54cafcd387ca51e435aa7ad54cdde29bf2bf8e2721f84a6207f67c2552d8864552ad3d1be84
6
+ metadata.gz: d7a329313fb5e00f0b863f9e88bc0999730931d74e3847e34a8df451d1b2ed84872c6bf44611408eba0c80efd559fe48d4a748e4b0299d0c49ddb9a1a474ffb3
7
+ data.tar.gz: c9df4d6a6107d3c101d1aea3e5335f7fb127811b35048199e2a27083b425bfe3d421573d7c774abc480eb91cc4de16c9c580801d31d9b2ff943603d1f864e66b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.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.17.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.16.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -2973,7 +2973,7 @@ module Aws::WorkSpacesWeb
2973
2973
  params: params,
2974
2974
  config: config)
2975
2975
  context[:gem_name] = 'aws-sdk-workspacesweb'
2976
- context[:gem_version] = '1.16.0'
2976
+ context[:gem_version] = '1.18.0'
2977
2977
  Seahorse::Client::Request.new(handlers, context)
2978
2978
  end
2979
2979
 
@@ -14,6 +14,7 @@ module Aws::WorkSpacesWeb
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::WorkSpacesWeb::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::WorkSpacesWeb
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-workspacesweb/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpacesWeb
54
54
 
55
- GEM_VERSION = '1.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end