aws-sdk-glacier 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-glacier.rb +1 -1
- data/lib/aws-sdk-glacier/client.rb +46 -1
- data/lib/aws-sdk-glacier/client_api.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 759c5627f31549ed38213de6c90b118d3528cb01
|
4
|
+
data.tar.gz: 1e82774e71498b728dbfd654a8d9ac8c17e9d959
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b9cca51c73c3576b5cb42b769fb5fed0e946da266609295f23c802ead91e3c6b1e5850a5c483fa0cf6710116d0580b2922c645e9ebab7537fbf4ff5ec59664b
|
7
|
+
data.tar.gz: c154d68087358167f76717c3b92a2a36bb00c0daa86f9158a74b51cb10e7bf84ffd790c4d58dcdb1a8b7cca10bc77c7b1b0b08d9fc3311498e13ba5c6a150f50
|
data/lib/aws-sdk-glacier.rb
CHANGED
@@ -23,6 +23,7 @@ require 'aws-sdk-core/plugins/idempotency_token.rb'
|
|
23
23
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
|
+
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
26
27
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
27
28
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
28
29
|
require 'aws-sdk-glacier/plugins/account_id.rb'
|
@@ -58,6 +59,7 @@ module Aws::Glacier
|
|
58
59
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
59
60
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
60
61
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
62
|
+
add_plugin(Aws::Plugins::TransferEncoding)
|
61
63
|
add_plugin(Aws::Plugins::SignatureV4)
|
62
64
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
63
65
|
add_plugin(Aws::Glacier::Plugins::AccountId)
|
@@ -210,6 +212,49 @@ module Aws::Glacier
|
|
210
212
|
# When `true`, request parameters are validated before
|
211
213
|
# sending the request.
|
212
214
|
#
|
215
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
216
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
217
|
+
#
|
218
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
219
|
+
# seconds to wait when opening a HTTP session before rasing a
|
220
|
+
# `Timeout::Error`.
|
221
|
+
#
|
222
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
223
|
+
# number of seconds to wait for response data. This value can
|
224
|
+
# safely be set
|
225
|
+
# per-request on the session yeidled by {#session_for}.
|
226
|
+
#
|
227
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
228
|
+
# seconds a connection is allowed to sit idble before it is
|
229
|
+
# considered stale. Stale connections are closed and removed
|
230
|
+
# from the pool before making a request.
|
231
|
+
#
|
232
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
233
|
+
# seconds to wait for a 100-continue response before sending the
|
234
|
+
# request body. This option has no effect unless the request has
|
235
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
236
|
+
# disables this behaviour. This value can safely be set per
|
237
|
+
# request on the session yeidled by {#session_for}.
|
238
|
+
#
|
239
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
240
|
+
# HTTP debug output will be sent to the `:logger`.
|
241
|
+
#
|
242
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
243
|
+
# SSL peer certificates are verified when establishing a
|
244
|
+
# connection.
|
245
|
+
#
|
246
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
247
|
+
# certificate authority bundle file that should be used when
|
248
|
+
# verifying peer certificates. If you do not pass
|
249
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
250
|
+
# will be used if available.
|
251
|
+
#
|
252
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
253
|
+
# directory that contains the unbundled SSL certificate
|
254
|
+
# authority files for verifying peer certificates. If you do
|
255
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
256
|
+
# system default will be used if available.
|
257
|
+
#
|
213
258
|
def initialize(*args)
|
214
259
|
super
|
215
260
|
end
|
@@ -3239,7 +3284,7 @@ module Aws::Glacier
|
|
3239
3284
|
params: params,
|
3240
3285
|
config: config)
|
3241
3286
|
context[:gem_name] = 'aws-sdk-glacier'
|
3242
|
-
context[:gem_version] = '1.
|
3287
|
+
context[:gem_version] = '1.19.0'
|
3243
3288
|
Seahorse::Client::Request.new(handlers, context)
|
3244
3289
|
end
|
3245
3290
|
|
@@ -104,7 +104,7 @@ module Aws::Glacier
|
|
104
104
|
Size = Shapes::IntegerShape.new(name: 'Size')
|
105
105
|
StatusCode = Shapes::StringShape.new(name: 'StatusCode')
|
106
106
|
StorageClass = Shapes::StringShape.new(name: 'StorageClass')
|
107
|
-
Stream = Shapes::BlobShape.new(name: 'Stream')
|
107
|
+
Stream = Shapes::BlobShape.new(name: 'Stream', streaming: true)
|
108
108
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
109
109
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
110
110
|
TagMap = Shapes::MapShape.new(name: 'TagMap')
|
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.19.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: 2019-
|
11
|
+
date: 2019-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -70,7 +70,7 @@ files:
|
|
70
70
|
- lib/aws-sdk-glacier/types.rb
|
71
71
|
- lib/aws-sdk-glacier/vault.rb
|
72
72
|
- lib/aws-sdk-glacier/waiters.rb
|
73
|
-
homepage:
|
73
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
74
74
|
licenses:
|
75
75
|
- Apache-2.0
|
76
76
|
metadata:
|