aws-sdk-s3control 1.44.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d88530f39288e09d88b63b381f0fd87dffcdc8c4bc0b33f58baae8ec5a252d39
4
- data.tar.gz: 119e3e453e4ddb5b6481b26c4fc2c00d42f6388c555c80a0e9d74ec03307568b
3
+ metadata.gz: 394461af3889dea962fb922b10acb064fbeb43636554532a2d60dd196033f1f9
4
+ data.tar.gz: e934049e756a8eb3b6c4ca9f1a9ef205e7e42d1871bcb7b8ab4ba509d5135609
5
5
  SHA512:
6
- metadata.gz: f1a409a208d7eb4a653f8eec759346139d42cc19efbec946ef336f42ce664c0b6cab69c22a6934b64ac30792f67b93290820268f72da6ab73275bc89372f5e67
7
- data.tar.gz: afa3458e89c82e3128bcfd25b31241abc7b15894a668d1b0a67f993851d063b7ad2599f8bdc11f94497b464f4620e10ef63c02ae95a08ef036dc648e4acc3ac0
6
+ metadata.gz: 974ad600e1cbc80d0441c6fed958d1dd1d913c59d1980afee5e7652c3267607b79c57191dcd4e294c0162bb24b70ae6645013acb1aa28abd75cea5e469b77ee2
7
+ data.tar.gz: 1291604cfef869f2ee8b4ba57e2ac4629bda6b0bfc00e45ace1443e11fc65e5e59e50abe88270941e8ad93fe49936eb70badc257f651b2ce728346f52b2f1bdc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.44.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
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 [Integer] :http_read_timeout (60) The default
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.44.0'
4675
+ context[:gem_version] = '1.45.0'
4667
4676
  Seahorse::Client::Request.new(handlers, context)
4668
4677
  end
4669
4678
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-s3control/customizations'
48
48
  # @!group service
49
49
  module Aws::S3Control
50
50
 
51
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.45.0'
52
52
 
53
53
  end
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.44.0
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-30 00:00:00.000000000 Z
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.122.0
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.122.0
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: