aws-sdk-workdocs 1.52.0 → 1.54.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: 623ed97641f63b98b631d16e100acfa9a4248fa2caa549f09cf380facbb46fe4
4
- data.tar.gz: 29f72405bcab0b4f37da2d832341232378e723d7e8209416d98156e90cdc1a03
3
+ metadata.gz: a23f5bd8df3bcb01c6f224c88b74a24e0af8fe8714ead3ee6f84a88d3e46675e
4
+ data.tar.gz: 34b7f18dd1632f8eaf688159125cf0f358ac62f203e78b9a139f51cb0dc53c25
5
5
  SHA512:
6
- metadata.gz: d1ff49c969dc75cb5153ab0f41ed1c5dd08d8c7a62a07ec14e96da36a7e5281d41b9672b0c3b7c52b56153e48c116f530bd0a26c5c80b8410668f255f6df8d8c
7
- data.tar.gz: e5e9071732e7b9060f2f3cef0742683f5df2f2d0fbb20660babed8c68a07aaa702658d93516e3aa430208c9457656d6be3b44d9e9421857c411c1afebd6dcada
6
+ metadata.gz: dab28094cc578c9ca64e4e4afe1cde6338f3f7c6dfb7d706e7a6338ed515352c562ed89eb3a3e2855b66c7001f52de601294767a27ccdaee6956f61779e23066
7
+ data.tar.gz: f2c65aaeb75526f9be5af18c2eef8152406487ce952a0d614e6853d677ad6bd85db564bcee5f7d2f4f0cbc6088759f6dd1491cbc1a7992e6c3f7dab29ffff879
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.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.53.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.52.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -2913,7 +2913,7 @@ module Aws::WorkDocs
2913
2913
  params: params,
2914
2914
  config: config)
2915
2915
  context[:gem_name] = 'aws-sdk-workdocs'
2916
- context[:gem_version] = '1.52.0'
2916
+ context[:gem_version] = '1.54.0'
2917
2917
  Seahorse::Client::Request.new(handlers, context)
2918
2918
  end
2919
2919
 
@@ -14,6 +14,7 @@ module Aws::WorkDocs
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::WorkDocs::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::WorkDocs
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-workdocs/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkDocs
54
54
 
55
- GEM_VERSION = '1.52.0'
55
+ GEM_VERSION = '1.54.0'
56
56
 
57
57
  end