aws-sdk-s3 1.180.0 → 1.182.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 +20 -20
- data/lib/aws-sdk-s3/bucket_policy.rb +5 -5
- data/lib/aws-sdk-s3/client.rb +205 -203
- data/lib/aws-sdk-s3/client_api.rb +1 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +10 -10
- data/lib/aws-sdk-s3/multipart_upload_part.rb +23 -23
- data/lib/aws-sdk-s3/object.rb +32 -25
- data/lib/aws-sdk-s3/object_summary.rb +20 -20
- data/lib/aws-sdk-s3/object_version.rb +5 -5
- data/lib/aws-sdk-s3/types.rb +192 -186
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/object.rbs +3 -0
- data/sig/types.rbs +1 -0
- 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: 3266d24c11f6499b7372ca6e5ebcb22f444c292ab9c9b35e22d05b80f56c0e43
|
4
|
+
data.tar.gz: 06ddf6610aa82ac9953076588e609cffe852a34c9325950e90a36b1e19a72a1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25a1a9cfd1f6e022587c487eed3bdd434adb3f0fba1d1279988d607e9fdf397764d33b7c7d3785355a70b800d417d057b2026c4f5590188c6da06f476af16450
|
7
|
+
data.tar.gz: 4c49d1153ab59ad2f15818588be71547ed7ba37d31798966ea1130ca6ff5d234139954738b9210003f94c29bd07926fdebcaa7192db466b743924a7f1581801f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.182.0 (2025-02-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.181.0 (2025-02-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added support for Content-Range header in HeadObject response.
|
13
|
+
|
4
14
|
1.180.0 (2025-02-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.182.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -458,15 +458,15 @@ module Aws::S3
|
|
458
458
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm ` with
|
459
459
|
# the supported algorithm from the following list:
|
460
460
|
#
|
461
|
-
# * `
|
461
|
+
# * `CRC32`
|
462
462
|
#
|
463
|
-
# * `
|
463
|
+
# * `CRC32C`
|
464
464
|
#
|
465
|
-
# * `
|
465
|
+
# * `CRC64NVME`
|
466
466
|
#
|
467
|
-
# * `
|
467
|
+
# * `SHA1`
|
468
468
|
#
|
469
|
-
# * `
|
469
|
+
# * `SHA256`
|
470
470
|
#
|
471
471
|
# For more information, see [Checking object integrity][1] in the
|
472
472
|
# *Amazon S3 User Guide*.
|
@@ -656,15 +656,15 @@ module Aws::S3
|
|
656
656
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm ` with
|
657
657
|
# the supported algorithm from the following list:
|
658
658
|
#
|
659
|
-
# * `
|
659
|
+
# * `CRC32`
|
660
660
|
#
|
661
|
-
# * `
|
661
|
+
# * `CRC32C`
|
662
662
|
#
|
663
|
-
# * `
|
663
|
+
# * `CRC64NVME`
|
664
664
|
#
|
665
|
-
# * `
|
665
|
+
# * `SHA1`
|
666
666
|
#
|
667
|
-
# * `
|
667
|
+
# * `SHA256`
|
668
668
|
#
|
669
669
|
# For more information, see [Checking object integrity][1] in the
|
670
670
|
# *Amazon S3 User Guide*.
|
@@ -692,7 +692,7 @@ module Aws::S3
|
|
692
692
|
# @option options [String] :checksum_crc32
|
693
693
|
# This header can be used as a data integrity check to verify that the
|
694
694
|
# data received is the same data that was originally sent. This header
|
695
|
-
# specifies the Base64 encoded, 32-bit `
|
695
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the object.
|
696
696
|
# For more information, see [Checking object integrity][1] in the
|
697
697
|
# *Amazon S3 User Guide*.
|
698
698
|
#
|
@@ -702,7 +702,7 @@ module Aws::S3
|
|
702
702
|
# @option options [String] :checksum_crc32c
|
703
703
|
# This header can be used as a data integrity check to verify that the
|
704
704
|
# data received is the same data that was originally sent. This header
|
705
|
-
# specifies the Base64 encoded, 32-bit `
|
705
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the object.
|
706
706
|
# For more information, see [Checking object integrity][1] in the
|
707
707
|
# *Amazon S3 User Guide*.
|
708
708
|
#
|
@@ -712,10 +712,10 @@ module Aws::S3
|
|
712
712
|
# @option options [String] :checksum_crc64nvme
|
713
713
|
# This header can be used as a data integrity check to verify that the
|
714
714
|
# data received is the same data that was originally sent. This header
|
715
|
-
# specifies the Base64 encoded, 64-bit `
|
716
|
-
# object. The `
|
717
|
-
#
|
718
|
-
#
|
715
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
716
|
+
# object. The `CRC64NVME` checksum is always a full object checksum. For
|
717
|
+
# more information, see [Checking object integrity in the Amazon S3 User
|
718
|
+
# Guide][1].
|
719
719
|
#
|
720
720
|
#
|
721
721
|
#
|
@@ -723,9 +723,9 @@ module Aws::S3
|
|
723
723
|
# @option options [String] :checksum_sha1
|
724
724
|
# This header can be used as a data integrity check to verify that the
|
725
725
|
# data received is the same data that was originally sent. This header
|
726
|
-
# specifies the Base64 encoded, 160-bit `
|
727
|
-
#
|
728
|
-
#
|
726
|
+
# specifies the Base64 encoded, 160-bit `SHA1` digest of the object. For
|
727
|
+
# more information, see [Checking object integrity][1] in the *Amazon S3
|
728
|
+
# User Guide*.
|
729
729
|
#
|
730
730
|
#
|
731
731
|
#
|
@@ -733,7 +733,7 @@ module Aws::S3
|
|
733
733
|
# @option options [String] :checksum_sha256
|
734
734
|
# This header can be used as a data integrity check to verify that the
|
735
735
|
# data received is the same data that was originally sent. This header
|
736
|
-
# specifies the Base64 encoded, 256-bit `
|
736
|
+
# specifies the Base64 encoded, 256-bit `SHA256` digest of the object.
|
737
737
|
# For more information, see [Checking object integrity][1] in the
|
738
738
|
# *Amazon S3 User Guide*.
|
739
739
|
#
|
@@ -234,15 +234,15 @@ module Aws::S3
|
|
234
234
|
# For the `x-amz-checksum-algorithm ` header, replace ` algorithm ` with
|
235
235
|
# the supported algorithm from the following list:
|
236
236
|
#
|
237
|
-
# * `
|
237
|
+
# * `CRC32`
|
238
238
|
#
|
239
|
-
# * `
|
239
|
+
# * `CRC32C`
|
240
240
|
#
|
241
|
-
# * `
|
241
|
+
# * `CRC64NVME`
|
242
242
|
#
|
243
|
-
# * `
|
243
|
+
# * `SHA1`
|
244
244
|
#
|
245
|
-
# * `
|
245
|
+
# * `SHA256`
|
246
246
|
#
|
247
247
|
# For more information, see [Checking object integrity][1] in the
|
248
248
|
# *Amazon S3 User Guide*.
|