aws-sdk-s3 1.223.0 → 1.224.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 +6 -8
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +1 -1
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f590763587bdfecca7200bff0bb0d43b34fd50ed69c25fb2663ace8aa428bc48
|
|
4
|
+
data.tar.gz: 55b92624ee6ef67b34f7efbed8e5f669ed0ded17189aac5ce1bf08fb7aa3abaa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b54c11016c129129d9640caa7054c30af656596b32625d6700fb8e7ab9dc8b2a0a3cd787ded59306e2f584544f6748dc8e84195f251806d3cf8bb0622c7086f
|
|
7
|
+
data.tar.gz: acc753999dbba794fa4663051b3b5e6a3bd78d4ee74ab98d629ba27dc756acce846eaa08d106468b2962a8fd27c9d03e638117a85a2db0f2918d962b696fd6d3
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.224.0
|
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -255,7 +255,7 @@ module Aws::S3
|
|
|
255
255
|
# the required types.
|
|
256
256
|
#
|
|
257
257
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
258
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
258
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
259
259
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
260
260
|
#
|
|
261
261
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -408,17 +408,15 @@ module Aws::S3
|
|
|
408
408
|
# @option options [String] :retry_mode ("legacy")
|
|
409
409
|
# Specifies which retry algorithm to use. Values are:
|
|
410
410
|
#
|
|
411
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
412
|
-
# no retry mode is provided.
|
|
411
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
412
|
+
# value if no retry mode is provided.
|
|
413
413
|
#
|
|
414
414
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
415
415
|
# This includes support for retry quotas, which limit the number of
|
|
416
416
|
# unsuccessful retries a client can make.
|
|
417
417
|
#
|
|
418
|
-
# * `adaptive` -
|
|
419
|
-
#
|
|
420
|
-
# throttling. This is a provisional mode that may change behavior
|
|
421
|
-
# in the future.
|
|
418
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
419
|
+
# `standard` mode along with automatic client side throttling.
|
|
422
420
|
#
|
|
423
421
|
# @option options [Boolean] :s3_disable_multiregion_access_points (false)
|
|
424
422
|
# When set to `false` this will option will raise errors when multi-region
|
|
@@ -23402,7 +23400,7 @@ module Aws::S3
|
|
|
23402
23400
|
tracer: tracer
|
|
23403
23401
|
)
|
|
23404
23402
|
context[:gem_name] = 'aws-sdk-s3'
|
|
23405
|
-
context[:gem_version] = '1.
|
|
23403
|
+
context[:gem_version] = '1.224.0'
|
|
23406
23404
|
Seahorse::Client::Request.new(handlers, context)
|
|
23407
23405
|
end
|
|
23408
23406
|
|
|
@@ -19,7 +19,7 @@ module Aws
|
|
|
19
19
|
private_constant :ENCODINGS_TO_FIX
|
|
20
20
|
|
|
21
21
|
# A regular expression to match detect errors in the response body
|
|
22
|
-
ERROR_PATTERN =
|
|
22
|
+
ERROR_PATTERN = /\A\s*(<\?xml[^>]*\?>\s*)?<Error>/.freeze
|
|
23
23
|
private_constant :ERROR_PATTERN
|
|
24
24
|
|
|
25
25
|
# A regular expression to match an error message in the response body
|
data/lib/aws-sdk-s3.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.224.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -46,7 +46,7 @@ dependencies:
|
|
|
46
46
|
version: '3'
|
|
47
47
|
- - ">="
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 3.
|
|
49
|
+
version: 3.248.0
|
|
50
50
|
type: :runtime
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -56,7 +56,7 @@ dependencies:
|
|
|
56
56
|
version: '3'
|
|
57
57
|
- - ">="
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: 3.
|
|
59
|
+
version: 3.248.0
|
|
60
60
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
|
61
61
|
This gem is part of the AWS SDK for Ruby.
|
|
62
62
|
email:
|