aws-sdk-ses 1.72.0 → 1.75.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ses/client.rb +11 -7
- data/lib/aws-sdk-ses/client_api.rb +1 -0
- data/lib/aws-sdk-ses/plugins/endpoints.rb +8 -5
- data/lib/aws-sdk-ses/types.rb +1 -0
- data/lib/aws-sdk-ses.rb +16 -12
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45ff2ecfd32e179a2934230aa36c2f4ac94035a1fde23480ec038fb802ec2fdc
|
4
|
+
data.tar.gz: d22dcb8299a4df3ef027c5724c43cb0d0f9cc9c9d544a4bac7d96695414b4e4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c770db344efe13e34b2a1f1a23102b9a75fe77c621e06d7958fa2b5adb1fa707ab96a2a371465b22b776f27addca614c21485ee1fdcd52d56c084b98854b8439
|
7
|
+
data.tar.gz: d9d6ca506cdac957796c6ff58782cfd2ca7dda803a6f670513be482c4f1a1ec5a5480f35a03d7d76b1058afaab4c661bb03f464848c492530fd9db8c4f26b8b0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.75.0 (2024-09-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.74.0 (2024-09-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.73.0 (2024-09-20)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.72.0 (2024-09-11)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.75.0
|
data/lib/aws-sdk-ses/client.rb
CHANGED
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:ses)
|
40
|
-
|
41
39
|
module Aws::SES
|
42
40
|
# An API client for SES. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -130,13 +128,15 @@ module Aws::SES
|
|
130
128
|
# locations will be searched for credentials:
|
131
129
|
#
|
132
130
|
# * `Aws.config[:credentials]`
|
133
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
134
|
-
#
|
131
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
|
+
# `:account_id` options.
|
133
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
134
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
135
135
|
# * `~/.aws/credentials`
|
136
136
|
# * `~/.aws/config`
|
137
137
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
138
|
# are very aggressive. Construct and pass an instance of
|
139
|
-
# `Aws::
|
139
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
140
|
# enable retries and extended timeouts. Instance profile credential
|
141
141
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
142
|
# to true.
|
@@ -155,6 +155,8 @@ module Aws::SES
|
|
155
155
|
#
|
156
156
|
# @option options [String] :access_key_id
|
157
157
|
#
|
158
|
+
# @option options [String] :account_id
|
159
|
+
#
|
158
160
|
# @option options [Boolean] :active_endpoint_cache (false)
|
159
161
|
# When set to `true`, a thread polling for endpoints will be running in
|
160
162
|
# the background every 60 secs (default). Defaults to `false`.
|
@@ -369,7 +371,9 @@ module Aws::SES
|
|
369
371
|
# sending the request.
|
370
372
|
#
|
371
373
|
# @option options [Aws::SES::EndpointProvider] :endpoint_provider
|
372
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
374
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
375
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
376
|
+
# `Aws::SES::EndpointParameters`.
|
373
377
|
#
|
374
378
|
# @option options [Float] :http_continue_timeout (1)
|
375
379
|
# The number of seconds to wait for a 100-continue response before sending the
|
@@ -5179,7 +5183,7 @@ module Aws::SES
|
|
5179
5183
|
tracer: tracer
|
5180
5184
|
)
|
5181
5185
|
context[:gem_name] = 'aws-sdk-ses'
|
5182
|
-
context[:gem_version] = '1.
|
5186
|
+
context[:gem_version] = '1.75.0'
|
5183
5187
|
Seahorse::Client::Request.new(handlers, context)
|
5184
5188
|
end
|
5185
5189
|
|
@@ -15,11 +15,11 @@ module Aws::SES
|
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::SES::EndpointProvider',
|
17
17
|
rbs_type: 'untyped',
|
18
|
-
docstring:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
21
|
+
`Aws::SES::EndpointParameters`.
|
22
|
+
DOCS
|
23
23
|
Aws::SES::EndpointProvider.new
|
24
24
|
end
|
25
25
|
|
@@ -51,6 +51,9 @@ module Aws::SES
|
|
51
51
|
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
52
|
metrics << 'SIGV4A_SIGNING'
|
53
53
|
end
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
56
|
+
end
|
54
57
|
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
55
58
|
end
|
56
59
|
|
data/lib/aws-sdk-ses/types.rb
CHANGED
data/lib/aws-sdk-ses.rb
CHANGED
@@ -11,17 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-ses/client_api'
|
16
|
-
require_relative 'aws-sdk-ses/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-ses/client'
|
18
|
-
require_relative 'aws-sdk-ses/errors'
|
19
|
-
require_relative 'aws-sdk-ses/waiters'
|
20
|
-
require_relative 'aws-sdk-ses/resource'
|
21
|
-
require_relative 'aws-sdk-ses/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-ses/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-ses/endpoints'
|
24
|
-
require_relative 'aws-sdk-ses/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:ses)
|
25
15
|
|
26
16
|
# This module provides support for Amazon Simple Email Service. This module is available in the
|
27
17
|
# `aws-sdk-ses` gem.
|
@@ -52,7 +42,21 @@ require_relative 'aws-sdk-ses/customizations'
|
|
52
42
|
#
|
53
43
|
# @!group service
|
54
44
|
module Aws::SES
|
45
|
+
autoload :Types, 'aws-sdk-ses/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-ses/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-ses/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-ses/client'
|
51
|
+
autoload :Errors, 'aws-sdk-ses/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-ses/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-ses/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-ses/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-ses/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-ses/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.75.0'
|
57
59
|
|
58
60
|
end
|
61
|
+
|
62
|
+
require_relative 'aws-sdk-ses/customizations'
|
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.75.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.207.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|