aws-sdk-s3 1.127.0 → 1.128.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/client.rb +12 -1
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ec7c4fd0f4d8fb1a8efd8527908821bc3fabd58ee2078241bbcb9bb5ad2b040
|
|
4
|
+
data.tar.gz: 2fb1ef8bfc93f1821890cd9ff18b51f1bc6708286581b3e94733c4cc96975949
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcb07dec8c0c01ef7a334c27694b3ab5974702a63d2a4232db073d09f464498e3dbeef28f9e201201c8fc3e9b943bf605bf1dc7a5b4199710654b17b48d88416
|
|
7
|
+
data.tar.gz: a82960fccb97ad47049ade2b4222c8a52422eba7a0f3b63b61fb3257de080436db8d184a58d957151e041f63af171577b3e45a18ca91d851cba98d49d9cb72e8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.128.0
|
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
31
|
+
require 'aws-sdk-core/plugins/request_compression.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
32
33
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
33
34
|
require 'aws-sdk-core/plugins/sign.rb'
|
|
@@ -96,6 +97,7 @@ module Aws::S3
|
|
|
96
97
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
97
98
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
98
99
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
100
|
+
add_plugin(Aws::Plugins::RequestCompression)
|
|
99
101
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
100
102
|
add_plugin(Aws::Plugins::RecursionDetection)
|
|
101
103
|
add_plugin(Aws::Plugins::Sign)
|
|
@@ -235,6 +237,10 @@ module Aws::S3
|
|
|
235
237
|
# Set to true to disable SDK automatically adding host prefix
|
|
236
238
|
# to default service endpoint when available.
|
|
237
239
|
#
|
|
240
|
+
# @option options [Boolean] :disable_request_compression (false)
|
|
241
|
+
# When set to 'true' the request body will not be compressed
|
|
242
|
+
# for supported operations.
|
|
243
|
+
#
|
|
238
244
|
# @option options [String] :endpoint
|
|
239
245
|
# The client endpoint is normally constructed from the `:region`
|
|
240
246
|
# option. You should only configure an `:endpoint` when connecting
|
|
@@ -292,6 +298,11 @@ module Aws::S3
|
|
|
292
298
|
# Used when loading credentials from the shared credentials file
|
|
293
299
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
294
300
|
#
|
|
301
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
|
302
|
+
# The minimum size in bytes that triggers compression for request
|
|
303
|
+
# bodies. The value must be non-negative integer value between 0
|
|
304
|
+
# and 10485780 bytes inclusive.
|
|
305
|
+
#
|
|
295
306
|
# @option options [Boolean] :require_https_for_sse_cpk (true)
|
|
296
307
|
# When `true`, the endpoint **must** be HTTPS for all operations
|
|
297
308
|
# where server-side-encryption is used with customer-provided keys.
|
|
@@ -15636,7 +15647,7 @@ module Aws::S3
|
|
|
15636
15647
|
params: params,
|
|
15637
15648
|
config: config)
|
|
15638
15649
|
context[:gem_name] = 'aws-sdk-s3'
|
|
15639
|
-
context[:gem_version] = '1.
|
|
15650
|
+
context[:gem_version] = '1.128.0'
|
|
15640
15651
|
Seahorse::Client::Request.new(handlers, context)
|
|
15641
15652
|
end
|
|
15642
15653
|
|
data/lib/aws-sdk-s3.rb
CHANGED
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.
|
|
4
|
+
version: 1.128.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: 2023-06
|
|
11
|
+
date: 2023-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-kms
|
|
@@ -47,7 +47,7 @@ dependencies:
|
|
|
47
47
|
version: '3'
|
|
48
48
|
- - ">="
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
|
-
version: 3.
|
|
50
|
+
version: 3.177.0
|
|
51
51
|
type: :runtime
|
|
52
52
|
prerelease: false
|
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -57,7 +57,7 @@ dependencies:
|
|
|
57
57
|
version: '3'
|
|
58
58
|
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 3.
|
|
60
|
+
version: 3.177.0
|
|
61
61
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
|
62
62
|
This gem is part of the AWS SDK for Ruby.
|
|
63
63
|
email:
|