aws-sdk-s3control 1.66.0 → 1.67.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-s3control/client.rb +12 -1
- data/lib/aws-sdk-s3control.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: 8eb7e0390950bf66515d8d753a3259128a180b44549e487f2f1e843b910995e0
|
|
4
|
+
data.tar.gz: 2b6ed252993dd0454a4d1cc39fe013e70fad86f7419f63c995618c5bba05c549
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93606aa5b43145247a4a40cc8675f4d87368ec77d95312900017a44759388304af2bf7fcae9c791890b5a9399bb13826d92b7bfd9d8ea089e7a0107ea9d39859
|
|
7
|
+
data.tar.gz: a7439e16a84bb7f9916f16de4f783058fd9bda89bba4f1aff38f4ede6c368064a1f327707c263b6a9e9939b510bd95a5c3abcd19b4e8f485bba1f0c793d819b9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.67.0
|
|
@@ -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'
|
|
@@ -80,6 +81,7 @@ module Aws::S3Control
|
|
|
80
81
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
81
82
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
82
83
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
84
|
+
add_plugin(Aws::Plugins::RequestCompression)
|
|
83
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
84
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
|
85
87
|
add_plugin(Aws::Plugins::Sign)
|
|
@@ -196,6 +198,10 @@ module Aws::S3Control
|
|
|
196
198
|
# Set to true to disable SDK automatically adding host prefix
|
|
197
199
|
# to default service endpoint when available.
|
|
198
200
|
#
|
|
201
|
+
# @option options [Boolean] :disable_request_compression (false)
|
|
202
|
+
# When set to 'true' the request body will not be compressed
|
|
203
|
+
# for supported operations.
|
|
204
|
+
#
|
|
199
205
|
# @option options [String] :endpoint
|
|
200
206
|
# The client endpoint is normally constructed from the `:region`
|
|
201
207
|
# option. You should only configure an `:endpoint` when connecting
|
|
@@ -236,6 +242,11 @@ module Aws::S3Control
|
|
|
236
242
|
# Used when loading credentials from the shared credentials file
|
|
237
243
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
238
244
|
#
|
|
245
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
|
246
|
+
# The minimum size in bytes that triggers compression for request
|
|
247
|
+
# bodies. The value must be non-negative integer value between 0
|
|
248
|
+
# and 10485780 bytes inclusive.
|
|
249
|
+
#
|
|
239
250
|
# @option options [Proc] :retry_backoff
|
|
240
251
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
|
241
252
|
# This option is only used in the `legacy` retry mode.
|
|
@@ -5553,7 +5564,7 @@ module Aws::S3Control
|
|
|
5553
5564
|
params: params,
|
|
5554
5565
|
config: config)
|
|
5555
5566
|
context[:gem_name] = 'aws-sdk-s3control'
|
|
5556
|
-
context[:gem_version] = '1.
|
|
5567
|
+
context[:gem_version] = '1.67.0'
|
|
5557
5568
|
Seahorse::Client::Request.new(handlers, context)
|
|
5558
5569
|
end
|
|
5559
5570
|
|
data/lib/aws-sdk-s3control.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-s3control
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.67.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-sigv4
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: '3'
|
|
34
34
|
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: 3.
|
|
36
|
+
version: 3.177.0
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '3'
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 3.
|
|
46
|
+
version: 3.177.0
|
|
47
47
|
description: Official AWS Ruby gem for AWS S3 Control. This gem is part of the AWS
|
|
48
48
|
SDK for Ruby.
|
|
49
49
|
email:
|