aws-sdk-sesv2 1.42.0 → 1.44.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: 3b4cee099452f7fadba42a2c517a72bd40991f71d04ca42f8f104464fb1048cb
4
- data.tar.gz: c968f76cd063f9df36275cd67d101fcd19d9852763224cf9f92060d4427c0e2f
3
+ metadata.gz: 3cf76a1ca9ec361914298a76798156bf6252f5109554784ffee6d67e2735177f
4
+ data.tar.gz: 9ba26dcfd0eb01d805b022b5a850ee1c3401dcedb13bc39b5a03803606fa2627
5
5
  SHA512:
6
- metadata.gz: f2f800792ca1752979889ac54d1ce3d6d8552e83f93735003819c90b9f49618317bba9bc602451afa1be2c5d8ca69fc860f4deb6a63db2a0f04108df173a770a
7
- data.tar.gz: a16ba5408f3de11bc0fa14f38f9888fd1df8472d61e08aecfe05c61124b1d090483bceb19d8e212fcd24426530c2b1adfd00812e8687277e998596bf4c5ddeed
6
+ metadata.gz: 7805d7e80b2f2faa496b7b9b8dd1dd62873e8c40eb8cc75ede8e8ab0cb42335845bda5e305c6e2c0169786a042b6d423c98e3f694d31a89f3de3fe6caefe2e30
7
+ data.tar.gz: 3835d473b1358c00eaa213346748d569e43770fe907866d12a28f19eac6ca975533b5677088b48d40eb23e1c8e7c37a565839ead8957671a99d5563da574b2ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.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.43.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.42.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.44.0
@@ -5061,7 +5061,7 @@ module Aws::SESV2
5061
5061
  params: params,
5062
5062
  config: config)
5063
5063
  context[:gem_name] = 'aws-sdk-sesv2'
5064
- context[:gem_version] = '1.42.0'
5064
+ context[:gem_version] = '1.44.0'
5065
5065
  Seahorse::Client::Request.new(handlers, context)
5066
5066
  end
5067
5067
 
@@ -14,6 +14,7 @@ module Aws::SESV2
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SESV2::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::SESV2
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
 
data/lib/aws-sdk-sesv2.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-sesv2/customizations'
52
52
  # @!group service
53
53
  module Aws::SESV2
54
54
 
55
- GEM_VERSION = '1.42.0'
55
+ GEM_VERSION = '1.44.0'
56
56
 
57
57
  end