aws-sdk-sqs 1.9.0 → 1.10.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 +28 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9cd5598bbd6f49e8cfb1081b279de223a67564a
|
4
|
+
data.tar.gz: 66f55791d4137982c2d23eaf84c75cf18dd3a85b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2f28b5257b0d427a38673596eb12ac554a8d6bcdd49d69a5b0f030bcbeba3f6ebf52eebc0abe6ccad22a71c04a0c43b3a86eb049ad8686847da5295f875dc69
|
7
|
+
data.tar.gz: bbb0b454d2528982074c43d7d0f152c6f2ebd5612851cf540d89b598bf9eae0d3dc61f323997a2623c336cf1038be36e3191296863c1067b7fb5ef0f24fb93c9
|
data/lib/aws-sdk-sqs.rb
CHANGED
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -15,6 +15,8 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
19
|
+
require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
18
20
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
21
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
22
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -47,6 +49,8 @@ module Aws::SQS
|
|
47
49
|
add_plugin(Aws::Plugins::RetryErrors)
|
48
50
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
49
51
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
52
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
53
|
+
add_plugin(Aws::Plugins::EndpointPattern)
|
50
54
|
add_plugin(Aws::Plugins::ResponsePaging)
|
51
55
|
add_plugin(Aws::Plugins::StubResponses)
|
52
56
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -102,6 +106,10 @@ module Aws::SQS
|
|
102
106
|
#
|
103
107
|
# @option options [String] :access_key_id
|
104
108
|
#
|
109
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
110
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
111
|
+
# the background every 60 secs (default). Defaults to `false`.
|
112
|
+
#
|
105
113
|
# @option options [Boolean] :client_side_monitoring (false)
|
106
114
|
# When `true`, client-side metrics will be collected for all API requests from
|
107
115
|
# this client.
|
@@ -122,11 +130,30 @@ module Aws::SQS
|
|
122
130
|
# When `true`, an attempt is made to coerce request parameters into
|
123
131
|
# the required types.
|
124
132
|
#
|
133
|
+
# @option options [Boolean] :disable_host_prefix_injection (false)
|
134
|
+
# Set to true to disable SDK automatically adding host prefix
|
135
|
+
# to default service endpoint when available.
|
136
|
+
#
|
125
137
|
# @option options [String] :endpoint
|
126
138
|
# The client endpoint is normally constructed from the `:region`
|
127
139
|
# option. You should only configure an `:endpoint` when connecting
|
128
140
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
129
141
|
#
|
142
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
143
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
144
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
145
|
+
#
|
146
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
147
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
148
|
+
#
|
149
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
150
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
151
|
+
# Use this option to config the time interval in seconds for making
|
152
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
153
|
+
#
|
154
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
155
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
156
|
+
#
|
130
157
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
131
158
|
# The log formatter.
|
132
159
|
#
|
@@ -2086,7 +2113,7 @@ module Aws::SQS
|
|
2086
2113
|
params: params,
|
2087
2114
|
config: config)
|
2088
2115
|
context[:gem_name] = 'aws-sdk-sqs'
|
2089
|
-
context[:gem_version] = '1.
|
2116
|
+
context[:gem_version] = '1.10.0'
|
2090
2117
|
Seahorse::Client::Request.new(handlers, context)
|
2091
2118
|
end
|
2092
2119
|
|
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.10.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-11-20 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.39.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.39.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|