aws-sdk-ses 1.8.0 → 1.9.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/lib/aws-sdk-ses.rb +1 -1
- data/lib/aws-sdk-ses/client.rb +21 -1
- data/lib/aws-sdk-ses/client_api.rb +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c16db644f900074311d9d08881f98a76000f87e7
|
4
|
+
data.tar.gz: 02b8a8e52bff5d161a377d3e531795202c72e401
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d0dfdb11f80f95e50b71e81fbd6397432b6be01f8730d2ce33fdb780f2972647955806440eeca3634c53c72fe1ff3b6dc408eac63a17852b2736cf1733523f7
|
7
|
+
data.tar.gz: 9811a6f82d116a00b3b60ea24d0b9781acd2db342a00a89219c004017df1cfdada1f5f594c8281592e128156f842d2b9ddd6f770acdda9b66481fbbec829ed66
|
data/lib/aws-sdk-ses.rb
CHANGED
data/lib/aws-sdk-ses/client.rb
CHANGED
@@ -19,6 +19,8 @@ require 'aws-sdk-core/plugins/response_paging.rb'
|
|
19
19
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
20
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
21
21
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
22
|
+
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
23
|
+
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
22
24
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
23
25
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
24
26
|
|
@@ -47,6 +49,8 @@ module Aws::SES
|
|
47
49
|
add_plugin(Aws::Plugins::StubResponses)
|
48
50
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
49
51
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
52
|
+
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
53
|
+
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
50
54
|
add_plugin(Aws::Plugins::SignatureV4)
|
51
55
|
add_plugin(Aws::Plugins::Protocols::Query)
|
52
56
|
|
@@ -92,6 +96,22 @@ module Aws::SES
|
|
92
96
|
#
|
93
97
|
# @option options [String] :access_key_id
|
94
98
|
#
|
99
|
+
# @option options [] :client_side_monitoring (false)
|
100
|
+
# When `true`, client-side metrics will be collected for all API requests from
|
101
|
+
# this client.
|
102
|
+
#
|
103
|
+
# @option options [] :client_side_monitoring_client_id ("")
|
104
|
+
# Allows you to provide an identifier for this client which will be attached to
|
105
|
+
# all generated client side metrics. Defaults to an empty string.
|
106
|
+
#
|
107
|
+
# @option options [] :client_side_monitoring_port (31000)
|
108
|
+
# Required for publishing client metrics. The port that the client side monitoring
|
109
|
+
# agent is running on, where client metrics will be published via UDP.
|
110
|
+
#
|
111
|
+
# @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
|
112
|
+
# Allows you to provide a custom client-side monitoring publisher class. By default,
|
113
|
+
# will use the Client Side Monitoring Agent Publisher.
|
114
|
+
#
|
95
115
|
# @option options [Boolean] :convert_params (true)
|
96
116
|
# When `true`, an attempt is made to coerce request parameters into
|
97
117
|
# the required types.
|
@@ -4789,7 +4809,7 @@ module Aws::SES
|
|
4789
4809
|
params: params,
|
4790
4810
|
config: config)
|
4791
4811
|
context[:gem_name] = 'aws-sdk-ses'
|
4792
|
-
context[:gem_version] = '1.
|
4812
|
+
context[:gem_version] = '1.9.0'
|
4793
4813
|
Seahorse::Client::Request.new(handlers, context)
|
4794
4814
|
end
|
4795
4815
|
|
@@ -1046,11 +1046,15 @@ module Aws::SES
|
|
1046
1046
|
api.version = "2010-12-01"
|
1047
1047
|
|
1048
1048
|
api.metadata = {
|
1049
|
+
"apiVersion" => "2010-12-01",
|
1049
1050
|
"endpointPrefix" => "email",
|
1050
1051
|
"protocol" => "query",
|
1052
|
+
"serviceAbbreviation" => "Amazon SES",
|
1051
1053
|
"serviceFullName" => "Amazon Simple Email Service",
|
1054
|
+
"serviceId" => "SES",
|
1052
1055
|
"signatureVersion" => "v4",
|
1053
1056
|
"signingName" => "ses",
|
1057
|
+
"uid" => "email-2010-12-01",
|
1054
1058
|
"xmlNamespace" => "http://ses.amazonaws.com/doc/2010-12-01/",
|
1055
1059
|
}
|
1056
1060
|
|
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.9.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: 2018-
|
11
|
+
date: 2018-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|