aws-sdk-s3 1.134.0 → 1.136.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-s3/bucket.rb +25 -16
- data/lib/aws-sdk-s3/client.rb +428 -384
- data/lib/aws-sdk-s3/multipart_upload.rb +15 -9
- data/lib/aws-sdk-s3/multipart_upload_part.rb +10 -6
- data/lib/aws-sdk-s3/object.rb +65 -47
- data/lib/aws-sdk-s3/object_acl.rb +5 -3
- data/lib/aws-sdk-s3/object_summary.rb +60 -44
- data/lib/aws-sdk-s3/object_version.rb +20 -12
- data/lib/aws-sdk-s3/types.rb +182 -119
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a563e0602ed3c1393406bb2158324b9571f7c579924f3f349fe237333d218d1
|
4
|
+
data.tar.gz: 4559f4a20a3abd9dcddde15fd814012e3874813d2e5cc15cd0066125aea8348f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03eda70ab440bdf32208be9a6f8bbe5435d77090ef6198129b9cb06b91d2aba9fb5bb3820d53380af6863f4538344d6833d507d5c46b3609d648f2c52a26561c
|
7
|
+
data.tar.gz: 43cd7b5022e8602f9590463478de5adf88de7cc31d1d13179551b9434a21fd6150c61009b98796eddc91a772c70e47698e58720f79733ad03ea638c27e052653
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.136.0 (2023-09-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.
|
8
|
+
|
9
|
+
1.135.0 (2023-09-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException
|
13
|
+
|
4
14
|
1.134.0 (2023-08-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.136.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -335,9 +335,11 @@ module Aws::S3
|
|
335
335
|
# @option options [String] :request_payer
|
336
336
|
# Confirms that the requester knows that they will be charged for the
|
337
337
|
# request. Bucket owners need not specify this parameter in their
|
338
|
-
# requests.
|
339
|
-
# Pays
|
340
|
-
#
|
338
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
339
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
340
|
+
# charges to copy the object. For information about downloading objects
|
341
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
342
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
341
343
|
#
|
342
344
|
#
|
343
345
|
#
|
@@ -624,10 +626,11 @@ module Aws::S3
|
|
624
626
|
# ensure that the encryption key was transmitted without error.
|
625
627
|
# @option options [String] :ssekms_key_id
|
626
628
|
# If `x-amz-server-side-encryption` has a valid value of `aws:kms` or
|
627
|
-
# `aws:kms:dsse`, this header specifies the ID
|
628
|
-
# Service (KMS) symmetric encryption
|
629
|
-
# for the object. If you specify
|
630
|
-
#
|
629
|
+
# `aws:kms:dsse`, this header specifies the ID (Key ID, Key ARN, or Key
|
630
|
+
# Alias) of the Key Management Service (KMS) symmetric encryption
|
631
|
+
# customer managed key that was used for the object. If you specify
|
632
|
+
# `x-amz-server-side-encryption:aws:kms` or
|
633
|
+
# `x-amz-server-side-encryption:aws:kms:dsse`, but do not provide`
|
631
634
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
632
635
|
# Amazon Web Services managed key (`aws/s3`) to protect the data. If the
|
633
636
|
# KMS key does not exist in the same account that's issuing the
|
@@ -650,9 +653,11 @@ module Aws::S3
|
|
650
653
|
# @option options [String] :request_payer
|
651
654
|
# Confirms that the requester knows that they will be charged for the
|
652
655
|
# request. Bucket owners need not specify this parameter in their
|
653
|
-
# requests.
|
654
|
-
# Pays
|
655
|
-
#
|
656
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
657
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
658
|
+
# charges to copy the object. For information about downloading objects
|
659
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
660
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
656
661
|
#
|
657
662
|
#
|
658
663
|
#
|
@@ -790,9 +795,11 @@ module Aws::S3
|
|
790
795
|
# @option options [String] :request_payer
|
791
796
|
# Confirms that the requester knows that they will be charged for the
|
792
797
|
# request. Bucket owners need not specify this parameter in their
|
793
|
-
# requests.
|
794
|
-
# Pays
|
795
|
-
#
|
798
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
799
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
800
|
+
# charges to copy the object. For information about downloading objects
|
801
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
802
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
796
803
|
#
|
797
804
|
#
|
798
805
|
#
|
@@ -884,9 +891,11 @@ module Aws::S3
|
|
884
891
|
# @option options [String] :request_payer
|
885
892
|
# Confirms that the requester knows that they will be charged for the
|
886
893
|
# request. Bucket owners need not specify this parameter in their
|
887
|
-
# requests.
|
888
|
-
# Pays
|
889
|
-
#
|
894
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
895
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
896
|
+
# charges to copy the object. For information about downloading objects
|
897
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
898
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
890
899
|
#
|
891
900
|
#
|
892
901
|
#
|