aws-sdk-sqs 1.4.0 → 1.5.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-sqs.rb +1 -1
- data/lib/aws-sdk-sqs/client.rb +21 -1
- data/lib/aws-sdk-sqs/client_api.rb +3 -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: a1d5f880afb8084a2f582c7475a28ca8153c7d06
|
4
|
+
data.tar.gz: 63a356f2d542e7c5cbfed370975d8e9e87179abd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d91e20f973b40f6243e4c93d7b31a85cb88ec79b30df69110e4ba5f626ccd04b0c60e6c30caa66c931930fe49d212865d21948c3ccdea40f3198fc1bc4f23fde
|
7
|
+
data.tar.gz: d768b7ebc060f33172aeacd4a1e75930d943a941e6b52c04dc05435731edb4bb64d0747e4543ad466ce96a95d30f4b6a60adb43328c19fbe9bc251b6656c040d
|
data/lib/aws-sdk-sqs.rb
CHANGED
data/lib/aws-sdk-sqs/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
|
require 'aws-sdk-sqs/plugins/queue_urls.rb'
|
@@ -49,6 +51,8 @@ module Aws::SQS
|
|
49
51
|
add_plugin(Aws::Plugins::StubResponses)
|
50
52
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
51
53
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
54
|
+
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
55
|
+
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
52
56
|
add_plugin(Aws::Plugins::SignatureV4)
|
53
57
|
add_plugin(Aws::Plugins::Protocols::Query)
|
54
58
|
add_plugin(Aws::SQS::Plugins::QueueUrls)
|
@@ -96,6 +100,22 @@ module Aws::SQS
|
|
96
100
|
#
|
97
101
|
# @option options [String] :access_key_id
|
98
102
|
#
|
103
|
+
# @option options [] :client_side_monitoring (false)
|
104
|
+
# When `true`, client-side metrics will be collected for all API requests from
|
105
|
+
# this client.
|
106
|
+
#
|
107
|
+
# @option options [] :client_side_monitoring_client_id ("")
|
108
|
+
# Allows you to provide an identifier for this client which will be attached to
|
109
|
+
# all generated client side metrics. Defaults to an empty string.
|
110
|
+
#
|
111
|
+
# @option options [] :client_side_monitoring_port (31000)
|
112
|
+
# Required for publishing client metrics. The port that the client side monitoring
|
113
|
+
# agent is running on, where client metrics will be published via UDP.
|
114
|
+
#
|
115
|
+
# @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
|
116
|
+
# Allows you to provide a custom client-side monitoring publisher class. By default,
|
117
|
+
# will use the Client Side Monitoring Agent Publisher.
|
118
|
+
#
|
99
119
|
# @option options [Boolean] :convert_params (true)
|
100
120
|
# When `true`, an attempt is made to coerce request parameters into
|
101
121
|
# the required types.
|
@@ -2068,7 +2088,7 @@ module Aws::SQS
|
|
2068
2088
|
params: params,
|
2069
2089
|
config: config)
|
2070
2090
|
context[:gem_name] = 'aws-sdk-sqs'
|
2071
|
-
context[:gem_version] = '1.
|
2091
|
+
context[:gem_version] = '1.5.0'
|
2072
2092
|
Seahorse::Client::Request.new(handlers, context)
|
2073
2093
|
end
|
2074
2094
|
|
@@ -326,11 +326,14 @@ module Aws::SQS
|
|
326
326
|
api.version = "2012-11-05"
|
327
327
|
|
328
328
|
api.metadata = {
|
329
|
+
"apiVersion" => "2012-11-05",
|
329
330
|
"endpointPrefix" => "sqs",
|
330
331
|
"errorPrefix" => "AWS.SimpleQueueService.",
|
331
332
|
"protocol" => "query",
|
333
|
+
"serviceAbbreviation" => "Amazon SQS",
|
332
334
|
"serviceFullName" => "Amazon Simple Queue Service",
|
333
335
|
"signatureVersion" => "v4",
|
336
|
+
"uid" => "sqs-2012-11-05",
|
334
337
|
"xmlNamespace" => "http://queue.amazonaws.com/doc/2012-11-05/",
|
335
338
|
}
|
336
339
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sqs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.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
|