aws-sdk-s3 1.189.1 → 1.191.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 +11 -4
- data/lib/aws-sdk-s3/client.rb +511 -61
- data/lib/aws-sdk-s3/client_api.rb +41 -0
- data/lib/aws-sdk-s3/endpoints.rb +14 -0
- data/lib/aws-sdk-s3/errors.rb +11 -0
- data/lib/aws-sdk-s3/object.rb +58 -12
- data/lib/aws-sdk-s3/object_summary.rb +34 -11
- data/lib/aws-sdk-s3/types.rb +325 -22
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +2 -2
- data/sig/client.rbs +54 -29
- data/sig/errors.rbs +2 -0
- data/sig/multipart_upload.rbs +1 -1
- data/sig/object.rbs +13 -10
- data/sig/object_summary.rbs +9 -9
- data/sig/types.rbs +56 -29
- 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: 36a6478ae4c76eddd30004239c4e34f5e547877585c66d1cb9e8aa2133b092b2
|
4
|
+
data.tar.gz: c37c962235875baa974c484948591a512fcaea0b87c6938bbd1d029eec8f9955
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8417b4c8f3821aa1ed703c8cee292596d537c5dfb6972126e5222bf27f00f66ef1efdfb5d591e20bcc554cf56fbea105baab964c17414ec386bd19d759bb4691
|
7
|
+
data.tar.gz: fd8673bf729de6d8e13ae90d555763dd36ec5eaa4538e7856db300a531a17541731eced4a9a9b393d9787a4c6ec4b1c9b6765afbe77bc095775c44f29a2ffd13
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.191.0 (2025-06-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for additional server-side encryption mode and storage class values for accessing Amazon FSx data from Amazon S3 using S3 Access Points
|
8
|
+
|
9
|
+
1.190.0 (2025-06-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added support for renaming objects within the same bucket using the new RenameObject API.
|
13
|
+
|
4
14
|
1.189.1 (2025-06-10)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.191.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -521,8 +521,8 @@ module Aws::S3
|
|
521
521
|
# metadata: {
|
522
522
|
# "MetadataKey" => "MetadataValue",
|
523
523
|
# },
|
524
|
-
# server_side_encryption: "AES256", # accepts AES256, aws:kms, aws:kms:dsse
|
525
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE
|
524
|
+
# server_side_encryption: "AES256", # accepts AES256, aws:fsx, aws:kms, aws:kms:dsse
|
525
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW, EXPRESS_ONEZONE, FSX_OPENZFS
|
526
526
|
# website_redirect_location: "WebsiteRedirectLocation",
|
527
527
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
528
528
|
# sse_customer_key: "SSECustomerKey",
|
@@ -834,8 +834,7 @@ module Aws::S3
|
|
834
834
|
# A map of metadata to store with the object in S3.
|
835
835
|
# @option options [String] :server_side_encryption
|
836
836
|
# The server-side encryption algorithm that was used when you store this
|
837
|
-
# object in Amazon S3
|
838
|
-
# `aws:kms:dsse`).
|
837
|
+
# object in Amazon S3 or Amazon FSx.
|
839
838
|
#
|
840
839
|
# * <b>General purpose buckets </b> - You have four mutually exclusive
|
841
840
|
# options to protect data using server-side encryption in Amazon S3,
|
@@ -889,6 +888,14 @@ module Aws::S3
|
|
889
888
|
#
|
890
889
|
# </note>
|
891
890
|
#
|
891
|
+
# * <b>S3 access points for Amazon FSx </b> - When accessing data stored
|
892
|
+
# in Amazon FSx file systems using S3 access points, the only valid
|
893
|
+
# server side encryption option is `aws:fsx`. All Amazon FSx file
|
894
|
+
# systems have encryption configured by default and are encrypted at
|
895
|
+
# rest. Data is automatically encrypted before being written to the
|
896
|
+
# file system, and automatically decrypted as it is read. These
|
897
|
+
# processes are handled transparently by Amazon FSx.
|
898
|
+
#
|
892
899
|
#
|
893
900
|
#
|
894
901
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html
|