aws-sdk-s3 1.212.0 → 1.213.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/bucket.rb +16 -16
- data/lib/aws-sdk-s3/client.rb +377 -107
- data/lib/aws-sdk-s3/client_api.rb +52 -0
- data/lib/aws-sdk-s3/endpoints.rb +13 -0
- data/lib/aws-sdk-s3/errors.rb +11 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +12 -12
- data/lib/aws-sdk-s3/multipart_upload_part.rb +8 -8
- data/lib/aws-sdk-s3/object.rb +32 -32
- data/lib/aws-sdk-s3/object_acl.rb +4 -4
- data/lib/aws-sdk-s3/object_summary.rb +28 -28
- data/lib/aws-sdk-s3/object_version.rb +16 -16
- data/lib/aws-sdk-s3/types.rb +307 -114
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +22 -0
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +37 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 438515448f62837952b523ea5cb8f41592cb39e2afa557b30c33c521a307db0c
|
|
4
|
+
data.tar.gz: fcb1cc7e9cc73429393692857809f2dc156bec4e6b93eba0ccf7824e4ede0d35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d2ae919bc1d2e451538e35c2e4a61ed087266cf4b3205eb64aba047a6a75039e2c431cd74844a71176eec93ec3b9fbe387effd734c3342c7aef76a4571c949d
|
|
7
|
+
data.tar.gz: cf67bd5b39c6cd5264a86f71103324c6f19bca24b7ff355b1ab81a70a4d9f2d41c195043e96fcf56f6fcba563f7161b7e17ecd163fd53a941b096bfb3f8b5410
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.213.0 (2026-01-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for the UpdateObjectEncryption API to change the server-side encryption type of objects in general purpose buckets.
|
|
8
|
+
|
|
4
9
|
1.212.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.213.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
|
@@ -446,10 +446,10 @@ module Aws::S3
|
|
|
446
446
|
# Confirms that the requester knows that they will be charged for the
|
|
447
447
|
# request. Bucket owners need not specify this parameter in their
|
|
448
448
|
# requests. If either the source or destination S3 bucket has Requester
|
|
449
|
-
# Pays enabled, the requester will pay for corresponding charges
|
|
450
|
-
#
|
|
451
|
-
#
|
|
452
|
-
#
|
|
449
|
+
# Pays enabled, the requester will pay for the corresponding charges.
|
|
450
|
+
# For information about downloading objects from Requester Pays buckets,
|
|
451
|
+
# see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
|
|
452
|
+
# S3 User Guide*.
|
|
453
453
|
#
|
|
454
454
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
|
455
455
|
#
|
|
@@ -1081,10 +1081,10 @@ module Aws::S3
|
|
|
1081
1081
|
# Confirms that the requester knows that they will be charged for the
|
|
1082
1082
|
# request. Bucket owners need not specify this parameter in their
|
|
1083
1083
|
# requests. If either the source or destination S3 bucket has Requester
|
|
1084
|
-
# Pays enabled, the requester will pay for corresponding charges
|
|
1085
|
-
#
|
|
1086
|
-
#
|
|
1087
|
-
#
|
|
1084
|
+
# Pays enabled, the requester will pay for the corresponding charges.
|
|
1085
|
+
# For information about downloading objects from Requester Pays buckets,
|
|
1086
|
+
# see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
|
|
1087
|
+
# S3 User Guide*.
|
|
1088
1088
|
#
|
|
1089
1089
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
|
1090
1090
|
#
|
|
@@ -1291,10 +1291,10 @@ module Aws::S3
|
|
|
1291
1291
|
# Confirms that the requester knows that they will be charged for the
|
|
1292
1292
|
# request. Bucket owners need not specify this parameter in their
|
|
1293
1293
|
# requests. If either the source or destination S3 bucket has Requester
|
|
1294
|
-
# Pays enabled, the requester will pay for corresponding charges
|
|
1295
|
-
#
|
|
1296
|
-
#
|
|
1297
|
-
#
|
|
1294
|
+
# Pays enabled, the requester will pay for the corresponding charges.
|
|
1295
|
+
# For information about downloading objects from Requester Pays buckets,
|
|
1296
|
+
# see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
|
|
1297
|
+
# S3 User Guide*.
|
|
1298
1298
|
#
|
|
1299
1299
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
|
1300
1300
|
#
|
|
@@ -1408,10 +1408,10 @@ module Aws::S3
|
|
|
1408
1408
|
# Confirms that the requester knows that they will be charged for the
|
|
1409
1409
|
# request. Bucket owners need not specify this parameter in their
|
|
1410
1410
|
# requests. If either the source or destination S3 bucket has Requester
|
|
1411
|
-
# Pays enabled, the requester will pay for corresponding charges
|
|
1412
|
-
#
|
|
1413
|
-
#
|
|
1414
|
-
#
|
|
1411
|
+
# Pays enabled, the requester will pay for the corresponding charges.
|
|
1412
|
+
# For information about downloading objects from Requester Pays buckets,
|
|
1413
|
+
# see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
|
|
1414
|
+
# S3 User Guide*.
|
|
1415
1415
|
#
|
|
1416
1416
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
|
1417
1417
|
#
|