aws-sdk-s3 1.83.0 → 1.83.1
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-s3.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +1 -1
- data/lib/aws-sdk-s3/customizations/object.rb +4 -3
- data/lib/aws-sdk-s3/file_uploader.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06754c5841e3a40c510a9702e1f4de282fc40cf6e1b73cabc97ba25b34b167be
|
4
|
+
data.tar.gz: 6cad21e9108cdfbb03ff04dab1954dff05bf3bbee8214f86d04ab9484d75b96b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f092576cb7a592bc6c5f5b698fef4052356ac37ed583b0688b72edc33f2e6534ed344d18f9c1ca1aeb7ee9f02f239e7fe937ea9d886153ecfeffaac40cc09caf
|
7
|
+
data.tar.gz: 572f55dd0322870bdc2ddc3e169e437ea99a87bfbc7c8277145fc15da186a2b9338a3560aa26c102ee856ae505a1a29774ec2683571cfed2f784a80a295c5a19
|
data/lib/aws-sdk-s3.rb
CHANGED
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -13123,7 +13123,7 @@ module Aws::S3
|
|
13123
13123
|
params: params,
|
13124
13124
|
config: config)
|
13125
13125
|
context[:gem_name] = 'aws-sdk-s3'
|
13126
|
-
context[:gem_version] = '1.83.
|
13126
|
+
context[:gem_version] = '1.83.1'
|
13127
13127
|
Seahorse::Client::Request.new(handlers, context)
|
13128
13128
|
end
|
13129
13129
|
|
@@ -282,8 +282,8 @@ module Aws
|
|
282
282
|
# # small files are uploaded in a single API call
|
283
283
|
# obj.upload_file('/path/to/file')
|
284
284
|
#
|
285
|
-
# Files larger than `:multipart_threshold` are uploaded
|
286
|
-
# Amazon S3 multipart upload APIs.
|
285
|
+
# Files larger than or equal to `:multipart_threshold` are uploaded
|
286
|
+
# using the Amazon S3 multipart upload APIs.
|
287
287
|
#
|
288
288
|
# # large files are automatically split into parts
|
289
289
|
# # and the parts are uploaded in parallel
|
@@ -313,7 +313,8 @@ module Aws
|
|
313
313
|
# will be empty.
|
314
314
|
#
|
315
315
|
# @option options [Integer] :multipart_threshold (15728640) Files larger
|
316
|
-
# than `:multipart_threshold` are uploaded using the S3
|
316
|
+
# than or equal to `:multipart_threshold` are uploaded using the S3
|
317
|
+
# multipart APIs.
|
317
318
|
# Default threshold is 15MB.
|
318
319
|
#
|
319
320
|
# @option options [Integer] :thread_count (10) The number of parallel
|
@@ -22,7 +22,7 @@ module Aws
|
|
22
22
|
# @return [Client]
|
23
23
|
attr_reader :client
|
24
24
|
|
25
|
-
# @return [Integer] Files larger than this in bytes are uploaded
|
25
|
+
# @return [Integer] Files larger than or equal to this in bytes are uploaded
|
26
26
|
# using a {MultipartFileUploader}.
|
27
27
|
attr_reader :multipart_threshold
|
28
28
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.83.
|
4
|
+
version: 1.83.1
|
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: 2020-10-
|
11
|
+
date: 2020-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|