aws-sdk-workmail 1.61.0 → 1.63.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: da110566260b72895226ec265b18861dfdec9bd4b12156101a7602a8dd812dbe
4
- data.tar.gz: 21485ae5b9bc8ee497c4fc43b656e753df79ee05c55182c6a04ca887a531aee1
3
+ metadata.gz: 2a934806b8c6b42b814abf36751ab6d56c1ed1ad119b5784450639b6c08a4963
4
+ data.tar.gz: 2e41f3c6cff367d469834432cd68c5b6b920ed94dfffcd5be74a3786b259afe7
5
5
  SHA512:
6
- metadata.gz: 67019d1f5e24869bc197dd5841096f98098a019758bdd8ba50cf1f885426a98be270ad5f49217e4c094ed4b4714599925a17683e31c1a447fa59a1e0430abcc8
7
- data.tar.gz: d53a1fc9ac0ee44a2c426f9c037764c8e11918e2349d1b43ec4f04e991cc5be064cd0103092ff914d4bf2aa06d7a4f479d0b442160ca906ddf27447445f04d1e
6
+ metadata.gz: 2ae1b9facbd8cd00e66c90650ab8b6a6124236b38f9ac342cc10d48c7cfbc56a01ef52dac24b22c93539609177ad26eaff2b6c6ffd509e8e37c56fb64ca3bf34
7
+ data.tar.gz: e64a0c860d92663b126d196536587ca9279b661253cdbd34e69ee20b05b97e4d7aa60b58872ab906718d7ec7a7812173734a86302ee61eec4d7ec3228ab85a3e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.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.62.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.61.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.63.0
@@ -4488,7 +4488,7 @@ module Aws::WorkMail
4488
4488
  params: params,
4489
4489
  config: config)
4490
4490
  context[:gem_name] = 'aws-sdk-workmail'
4491
- context[:gem_version] = '1.61.0'
4491
+ context[:gem_version] = '1.63.0'
4492
4492
  Seahorse::Client::Request.new(handlers, context)
4493
4493
  end
4494
4494
 
@@ -14,6 +14,7 @@ module Aws::WorkMail
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::WorkMail::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::WorkMail
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-workmail/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkMail
54
54
 
55
- GEM_VERSION = '1.61.0'
55
+ GEM_VERSION = '1.63.0'
56
56
 
57
57
  end