aws-sdk-s3 1.201.0 → 1.202.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_versioning.rb +33 -0
- data/lib/aws-sdk-s3/client.rb +644 -155
- data/lib/aws-sdk-s3/client_api.rb +2 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +17 -17
- data/lib/aws-sdk-s3/object.rb +52 -23
- data/lib/aws-sdk-s3/object_summary.rb +38 -9
- data/lib/aws-sdk-s3/object_version.rb +7 -9
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
- data/lib/aws-sdk-s3/types.rb +198 -142
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/object.rbs +2 -0
- data/sig/object_summary.rbs +2 -0
- data/sig/types.rbs +2 -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: ecaf81fce4dfda6453590493fb14d92566b54fc9675774076e6624e6375dadd0
|
|
4
|
+
data.tar.gz: 76bd9b41bc206ec5f02187d9f863dbe246216261bb1c3920d9ea130585c34c35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bb7ae2f06b6639f16733cf84cfa255efa81955c7b4379814460fc9b66748c612a6ae9abfc310eca535a2d0274bc92fb6a0dd1e8621c60659d0c5212e9ed09ac
|
|
7
|
+
data.tar.gz: 5c02919ceaa15b5e189ff0001c56194f25ba01535ba65e0b29766fb4ca73d71f9dce432e726e1d1996a2c8d0c954d31be0e5b2ac22220532828b1f29e4428ad7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.202.0 (2025-10-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Simple Storage Service / Features: Add conditional writes in CopyObject on destination key to prevent unintended object modifications.
|
|
8
|
+
|
|
4
9
|
1.201.0 (2025-10-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.202.0
|
|
@@ -227,6 +227,17 @@ module Aws::S3
|
|
|
227
227
|
# @option options [String] :mfa
|
|
228
228
|
# The concatenation of the authentication device's serial number, a
|
|
229
229
|
# space, and the value that is displayed on your authentication device.
|
|
230
|
+
# The serial number is the number that uniquely identifies the MFA
|
|
231
|
+
# device. For physical MFA devices, this is the unique serial number
|
|
232
|
+
# that's provided with the device. For virtual MFA devices, the serial
|
|
233
|
+
# number is the device ARN. For more information, see [Enabling
|
|
234
|
+
# versioning on buckets][1] and [Configuring MFA delete][2] in the
|
|
235
|
+
# *Amazon Simple Storage Service User Guide*.
|
|
236
|
+
#
|
|
237
|
+
#
|
|
238
|
+
#
|
|
239
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/manage-versioning-examples.html
|
|
240
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiFactorAuthenticationDelete.html
|
|
230
241
|
# @option options [String] :expected_bucket_owner
|
|
231
242
|
# The account ID of the expected bucket owner. If the account ID that
|
|
232
243
|
# you provide does not match the actual owner of the bucket, the request
|
|
@@ -289,6 +300,17 @@ module Aws::S3
|
|
|
289
300
|
# @option options [String] :mfa
|
|
290
301
|
# The concatenation of the authentication device's serial number, a
|
|
291
302
|
# space, and the value that is displayed on your authentication device.
|
|
303
|
+
# The serial number is the number that uniquely identifies the MFA
|
|
304
|
+
# device. For physical MFA devices, this is the unique serial number
|
|
305
|
+
# that's provided with the device. For virtual MFA devices, the serial
|
|
306
|
+
# number is the device ARN. For more information, see [Enabling
|
|
307
|
+
# versioning on buckets][1] and [Configuring MFA delete][2] in the
|
|
308
|
+
# *Amazon Simple Storage Service User Guide*.
|
|
309
|
+
#
|
|
310
|
+
#
|
|
311
|
+
#
|
|
312
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/manage-versioning-examples.html
|
|
313
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiFactorAuthenticationDelete.html
|
|
292
314
|
# @option options [required, Types::VersioningConfiguration] :versioning_configuration
|
|
293
315
|
# Container for setting the versioning state.
|
|
294
316
|
# @option options [String] :expected_bucket_owner
|
|
@@ -344,6 +366,17 @@ module Aws::S3
|
|
|
344
366
|
# @option options [String] :mfa
|
|
345
367
|
# The concatenation of the authentication device's serial number, a
|
|
346
368
|
# space, and the value that is displayed on your authentication device.
|
|
369
|
+
# The serial number is the number that uniquely identifies the MFA
|
|
370
|
+
# device. For physical MFA devices, this is the unique serial number
|
|
371
|
+
# that's provided with the device. For virtual MFA devices, the serial
|
|
372
|
+
# number is the device ARN. For more information, see [Enabling
|
|
373
|
+
# versioning on buckets][1] and [Configuring MFA delete][2] in the
|
|
374
|
+
# *Amazon Simple Storage Service User Guide*.
|
|
375
|
+
#
|
|
376
|
+
#
|
|
377
|
+
#
|
|
378
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/manage-versioning-examples.html
|
|
379
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiFactorAuthenticationDelete.html
|
|
347
380
|
# @option options [String] :expected_bucket_owner
|
|
348
381
|
# The account ID of the expected bucket owner. If the account ID that
|
|
349
382
|
# you provide does not match the actual owner of the bucket, the request
|