aws-sdk-glacier 1.13.0 → 1.14.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-glacier.rb +1 -1
- data/lib/aws-sdk-glacier/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: 4ada77d284965a6436b7c11b63b4e2c553ef4250
|
4
|
+
data.tar.gz: 5f400f593cb8d25b0f9f2f7e29f00110be2d201f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ae7ab597b1b05aca4e5367b092c1ac8027314ec4d50adffc359d48f7d4ee9c5e61382c833fca2bf63ba25a4c2f54a4b3fd1e6e91d499d1075bd0625b2a207be
|
7
|
+
data.tar.gz: 7ffb5ec1f6bdef6e8b14abbf5c0ce81f5e97153795f0942881eac7b115474e7b19cd35aa2d7b55b9a95e9ed6032a9cef442f778ae06a07e82233561e5dae1bd9
|
data/lib/aws-sdk-glacier.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'
|
@@ -48,6 +50,8 @@ module Aws::Glacier
|
|
48
50
|
add_plugin(Aws::Plugins::RetryErrors)
|
49
51
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
50
52
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
53
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
54
|
+
add_plugin(Aws::Plugins::EndpointPattern)
|
51
55
|
add_plugin(Aws::Plugins::ResponsePaging)
|
52
56
|
add_plugin(Aws::Plugins::StubResponses)
|
53
57
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -109,6 +113,10 @@ module Aws::Glacier
|
|
109
113
|
# operations. The default value of `-` uses the account
|
110
114
|
# your `:credentials` belong to.
|
111
115
|
#
|
116
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
117
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
118
|
+
# the background every 60 secs (default). Defaults to `false`.
|
119
|
+
#
|
112
120
|
# @option options [Boolean] :client_side_monitoring (false)
|
113
121
|
# When `true`, client-side metrics will be collected for all API requests from
|
114
122
|
# this client.
|
@@ -129,11 +137,30 @@ module Aws::Glacier
|
|
129
137
|
# When `true`, an attempt is made to coerce request parameters into
|
130
138
|
# the required types.
|
131
139
|
#
|
140
|
+
# @option options [Boolean] :disable_host_prefix_injection (false)
|
141
|
+
# Set to true to disable SDK automatically adding host prefix
|
142
|
+
# to default service endpoint when available.
|
143
|
+
#
|
132
144
|
# @option options [String] :endpoint
|
133
145
|
# The client endpoint is normally constructed from the `:region`
|
134
146
|
# option. You should only configure an `:endpoint` when connecting
|
135
147
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
136
148
|
#
|
149
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
150
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
151
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
152
|
+
#
|
153
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
154
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
155
|
+
#
|
156
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
157
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
158
|
+
# Use this option to config the time interval in seconds for making
|
159
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
160
|
+
#
|
161
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
162
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
163
|
+
#
|
137
164
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
138
165
|
# The log formatter.
|
139
166
|
#
|
@@ -3212,7 +3239,7 @@ module Aws::Glacier
|
|
3212
3239
|
params: params,
|
3213
3240
|
config: config)
|
3214
3241
|
context[:gem_name] = 'aws-sdk-glacier'
|
3215
|
-
context[:gem_version] = '1.
|
3242
|
+
context[:gem_version] = '1.14.0'
|
3216
3243
|
Seahorse::Client::Request.new(handlers, context)
|
3217
3244
|
end
|
3218
3245
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-glacier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.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
|