aws-sdk-s3control 1.44.0 → 1.45.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 +11 -2
- 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: 394461af3889dea962fb922b10acb064fbeb43636554532a2d60dd196033f1f9
|
|
4
|
+
data.tar.gz: e934049e756a8eb3b6c4ca9f1a9ef205e7e42d1871bcb7b8ab4ba509d5135609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 974ad600e1cbc80d0441c6fed958d1dd1d913c59d1980afee5e7652c3267607b79c57191dcd4e294c0162bb24b70ae6645013acb1aa28abd75cea5e469b77ee2
|
|
7
|
+
data.tar.gz: 1291604cfef869f2ee8b4ba57e2ac4629bda6b0bfc00e45ace1443e11fc65e5e59e50abe88270941e8ad93fe49936eb70badc257f651b2ce728346f52b2f1bdc
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.45.0
|
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
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
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
|
31
32
|
require 'aws-sdk-s3control/plugins/arn.rb'
|
|
32
33
|
require 'aws-sdk-s3control/plugins/dualstack.rb'
|
|
@@ -76,6 +77,7 @@ module Aws::S3Control
|
|
|
76
77
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
77
78
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
78
79
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
80
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
|
79
81
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
|
80
82
|
add_plugin(Aws::S3Control::Plugins::ARN)
|
|
81
83
|
add_plugin(Aws::S3Control::Plugins::Dualstack)
|
|
@@ -181,6 +183,10 @@ module Aws::S3Control
|
|
|
181
183
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
182
184
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
183
185
|
#
|
|
186
|
+
# @option options [String] :defaults_mode ("legacy")
|
|
187
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
|
188
|
+
# accepted modes and the configuration defaults that are included.
|
|
189
|
+
#
|
|
184
190
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
185
191
|
# Set to true to disable SDK automatically adding host prefix
|
|
186
192
|
# to default service endpoint when available.
|
|
@@ -309,7 +315,7 @@ module Aws::S3Control
|
|
|
309
315
|
# seconds to wait when opening a HTTP session before raising a
|
|
310
316
|
# `Timeout::Error`.
|
|
311
317
|
#
|
|
312
|
-
# @option options [
|
|
318
|
+
# @option options [Float] :http_read_timeout (60) The default
|
|
313
319
|
# number of seconds to wait for response data. This value can
|
|
314
320
|
# safely be set per-request on the session.
|
|
315
321
|
#
|
|
@@ -325,6 +331,9 @@ module Aws::S3Control
|
|
|
325
331
|
# disables this behaviour. This value can safely be set per
|
|
326
332
|
# request on the session.
|
|
327
333
|
#
|
|
334
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
|
335
|
+
# in seconds.
|
|
336
|
+
#
|
|
328
337
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
329
338
|
# HTTP debug output will be sent to the `:logger`.
|
|
330
339
|
#
|
|
@@ -4663,7 +4672,7 @@ module Aws::S3Control
|
|
|
4663
4672
|
params: params,
|
|
4664
4673
|
config: config)
|
|
4665
4674
|
context[:gem_name] = 'aws-sdk-s3control'
|
|
4666
|
-
context[:gem_version] = '1.
|
|
4675
|
+
context[:gem_version] = '1.45.0'
|
|
4667
4676
|
Seahorse::Client::Request.new(handlers, context)
|
|
4668
4677
|
end
|
|
4669
4678
|
|
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.45.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: 2021-
|
|
11
|
+
date: 2021-12-21 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.125.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.125.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:
|