aws-sdk-s3control 1.66.0 → 1.68.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +16 -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: 96562f1e9c8142fffbdb97fc4f56c25910d42e58d37cbf0cd28813b4f0e1c643
|
|
4
|
+
data.tar.gz: cd73804a0ee27e8286a578015c99c310489cd0e6396c0f2a7a15da3e4fcb3d9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca3b02524f06c5f7fde5e7bde87aa92081610e064c4883084b1dc09fdadae6580fc37eeb7393abff1d5fe13989c9c8f56ab8737d086b7db2dedcc2c980086cb8
|
|
7
|
+
data.tar.gz: 7ebc198ac84673d7691f86b5739a5a74e71a6460958c9dfba6d90ad9c7b535fbc19f9468dc0225cfa6e21bdd015d24e43e908d5cda61d2ea788855eadd1eddf4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.68.0 (2023-07-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.67.0 (2023-07-06)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.66.0 (2023-06-28)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.68.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
|
|
@@ -216,6 +222,10 @@ module Aws::S3Control
|
|
|
216
222
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
217
223
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
218
224
|
#
|
|
225
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
|
226
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
|
227
|
+
# variables and the shared configuration file.
|
|
228
|
+
#
|
|
219
229
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
220
230
|
# The log formatter.
|
|
221
231
|
#
|
|
@@ -236,6 +246,11 @@ module Aws::S3Control
|
|
|
236
246
|
# Used when loading credentials from the shared credentials file
|
|
237
247
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
238
248
|
#
|
|
249
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
|
250
|
+
# The minimum size in bytes that triggers compression for request
|
|
251
|
+
# bodies. The value must be non-negative integer value between 0
|
|
252
|
+
# and 10485780 bytes inclusive.
|
|
253
|
+
#
|
|
239
254
|
# @option options [Proc] :retry_backoff
|
|
240
255
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
|
241
256
|
# This option is only used in the `legacy` retry mode.
|
|
@@ -5553,7 +5568,7 @@ module Aws::S3Control
|
|
|
5553
5568
|
params: params,
|
|
5554
5569
|
config: config)
|
|
5555
5570
|
context[:gem_name] = 'aws-sdk-s3control'
|
|
5556
|
-
context[:gem_version] = '1.
|
|
5571
|
+
context[:gem_version] = '1.68.0'
|
|
5557
5572
|
Seahorse::Client::Request.new(handlers, context)
|
|
5558
5573
|
end
|
|
5559
5574
|
|
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.68.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-
|
|
11
|
+
date: 2023-07-11 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:
|