aws-sdk-ses 1.57.0 → 1.59.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: 9aad4c0f54eda3acafc4882724903bb6e5bd1a5c54fc5a5153db96b17a95e492
4
- data.tar.gz: f0f0ce500a60340b5d6f3d3b9819ca3725fc5d6ad5eb84eca4f3fbdb59fe1ac3
3
+ metadata.gz: fbf80834e500f16f0b8d19bfe35e85e5aea6969e244ccb284c0a6c92c3bc916d
4
+ data.tar.gz: cdcd6eb5da6279a596e60f6851614429738dc5499e95348e3eec06f99f71d0b1
5
5
  SHA512:
6
- metadata.gz: 7eae5f7dedf098e7928159bdb0e77f73392f1da1e1583b6c1563acef3a07e8b99f071ec223d39efce1d4c68d73e120562a6bbb55dd94a08d74b539af9df1df74
7
- data.tar.gz: 36bf3d774835897ef7883570d1508b11ab40d6525b470732956edfdde4bd4712cbbc70fce76c5b7e1bf14a537e1a7c426ce068ab4b245045bca32ebd6a0d3bff
6
+ metadata.gz: c940ca41df90e1bea3dc8adbf25c9a011cf58c9abdb42a58817a194b95b9b8855c3ac438ffd007ac3365c55b4c3c9b03382d8909a59408e2c1a452dff7876ae0
7
+ data.tar.gz: 8d008cdc42fb13d9af3bc74eff45d38a095bc0452f2a0d665c9b812df5dfd7f9cd42058ca1a19f594e6da07fecbd9815e2ad9aa09c0eb020868d76176a492503
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.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.58.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.57.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.59.0
@@ -5114,7 +5114,7 @@ module Aws::SES
5114
5114
  params: params,
5115
5115
  config: config)
5116
5116
  context[:gem_name] = 'aws-sdk-ses'
5117
- context[:gem_version] = '1.57.0'
5117
+ context[:gem_version] = '1.59.0'
5118
5118
  Seahorse::Client::Request.new(handlers, context)
5119
5119
  end
5120
5120
 
@@ -14,6 +14,7 @@ module Aws::SES
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SES::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::SES
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-ses.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ses/customizations'
53
53
  # @!group service
54
54
  module Aws::SES
55
55
 
56
- GEM_VERSION = '1.57.0'
56
+ GEM_VERSION = '1.59.0'
57
57
 
58
58
  end