aws-sdk-s3 1.134.0 → 1.135.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +25 -16
- data/lib/aws-sdk-s3/client.rb +382 -338
- 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: b4312762a051a1316d3e9bf604cc515013d79ab8d69c40f3afdd09db961abb0d
|
4
|
+
data.tar.gz: 33bbdef2172c9a372528535cac262ba397ce074f8a6b8e66e3fc82c09d37955c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 923d86f0eef2170067b2b0d943ca902e1b007ce1cf4d917f7dc6cf320b7b7ec07901e6c8246d405b86ef262135d6b0da71963d27488876e4bab8e6fd615f8ce5
|
7
|
+
data.tar.gz: 3b8c7ee1b28d1cb50ab50f833b37c12dec006bf9fe0980b7c1518ab6f7bf14a4c496f611a8f3bac416a64a1b7b7574cf8341877a5d3c34f2e0b6f82bb9269441
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.135.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
|
#
|