aws-sdk-s3 1.120.0 → 1.121.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +16 -19
- data/lib/aws-sdk-s3/client.rb +555 -637
- data/lib/aws-sdk-s3/object.rb +40 -45
- data/lib/aws-sdk-s3/object_summary.rb +31 -37
- data/lib/aws-sdk-s3/object_version.rb +4 -6
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +13 -11
- data/lib/aws-sdk-s3/types.rb +222 -284
- 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: b696b35571d8fd06f7f820e2e7056709e2d615c31e5f2e4cfb0166a3c296a325
|
4
|
+
data.tar.gz: 44a0002357987ad2f4603c6f9c7958fa0eab2ca7b0d148e8fc0f372316acf73e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f2d4f50a2db692baaffd8f9705f38fd3423835d52645b5cddd29e567cdc49fc91bf1218079c68f5e5791ecfd65ddc2aaa05034f877a4fce3568354bb5df70cd
|
7
|
+
data.tar.gz: f86b27d0abe9cf03f9e3bd72ae20043cd399edb3e4507f35e4873a5a9bf4d9a2a62ebe6d5573aee349c7c2a0da7958c48b0d3032b82feb7811f500acf6865b0c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.121.0 (2023-04-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Provides support for "Snow" Storage class.
|
8
|
+
|
9
|
+
1.120.1 (2023-04-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Issue - Skip `#check_for_cached_region` if custom endpoint provided
|
13
|
+
|
4
14
|
1.120.0 (2023-03-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.121.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -392,7 +392,7 @@ module Aws::S3
|
|
392
392
|
# "MetadataKey" => "MetadataValue",
|
393
393
|
# },
|
394
394
|
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
395
|
-
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR
|
395
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS, GLACIER_IR, SNOW
|
396
396
|
# website_redirect_location: "WebsiteRedirectLocation",
|
397
397
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
398
398
|
# sse_customer_key: "SSECustomerKey",
|
@@ -430,30 +430,30 @@ module Aws::S3
|
|
430
430
|
# @option options [String] :content_disposition
|
431
431
|
# Specifies presentational information for the object. For more
|
432
432
|
# information, see
|
433
|
-
# [
|
433
|
+
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1][1].
|
434
434
|
#
|
435
435
|
#
|
436
436
|
#
|
437
|
-
# [1]:
|
437
|
+
# [1]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1
|
438
438
|
# @option options [String] :content_encoding
|
439
439
|
# Specifies what content encodings have been applied to the object and
|
440
440
|
# thus what decoding mechanisms must be applied to obtain the media-type
|
441
441
|
# referenced by the Content-Type header field. For more information, see
|
442
|
-
# [
|
442
|
+
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11][1].
|
443
443
|
#
|
444
444
|
#
|
445
445
|
#
|
446
|
-
# [1]:
|
446
|
+
# [1]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
|
447
447
|
# @option options [String] :content_language
|
448
448
|
# The language the content is in.
|
449
449
|
# @option options [Integer] :content_length
|
450
450
|
# Size of the body in bytes. This parameter is useful when the size of
|
451
451
|
# the body cannot be determined automatically. For more information, see
|
452
|
-
# [
|
452
|
+
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.13][1].
|
453
453
|
#
|
454
454
|
#
|
455
455
|
#
|
456
|
-
# [1]:
|
456
|
+
# [1]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.13
|
457
457
|
# @option options [String] :content_md5
|
458
458
|
# The base64-encoded 128-bit MD5 digest of the message (without the
|
459
459
|
# headers) according to RFC 1864. This header can be used as a message
|
@@ -469,11 +469,11 @@ module Aws::S3
|
|
469
469
|
# @option options [String] :content_type
|
470
470
|
# A standard MIME type describing the format of the contents. For more
|
471
471
|
# information, see
|
472
|
-
# [
|
472
|
+
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17][1].
|
473
473
|
#
|
474
474
|
#
|
475
475
|
#
|
476
|
-
# [1]:
|
476
|
+
# [1]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17
|
477
477
|
# @option options [String] :checksum_algorithm
|
478
478
|
# Indicates the algorithm used to create the checksum for the object
|
479
479
|
# when using the SDK. This header will not provide any additional
|
@@ -532,11 +532,11 @@ module Aws::S3
|
|
532
532
|
# @option options [Time,DateTime,Date,Integer,String] :expires
|
533
533
|
# The date and time at which the object is no longer cacheable. For more
|
534
534
|
# information, see
|
535
|
-
# [
|
535
|
+
# [http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21][1].
|
536
536
|
#
|
537
537
|
#
|
538
538
|
#
|
539
|
-
# [1]:
|
539
|
+
# [1]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21
|
540
540
|
# @option options [String] :grant_full_control
|
541
541
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
542
542
|
# object.
|
@@ -560,7 +560,7 @@ module Aws::S3
|
|
560
560
|
# A map of metadata to store with the object in S3.
|
561
561
|
# @option options [String] :server_side_encryption
|
562
562
|
# The server-side encryption algorithm used when storing this object in
|
563
|
-
# Amazon S3 (for example, AES256,
|
563
|
+
# Amazon S3 (for example, AES256, aws:kms).
|
564
564
|
# @option options [String] :storage_class
|
565
565
|
# By default, Amazon S3 uses the STANDARD Storage Class to store newly
|
566
566
|
# created objects. The STANDARD storage class provides high durability
|
@@ -611,9 +611,9 @@ module Aws::S3
|
|
611
611
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
612
612
|
# ensure that the encryption key was transmitted without error.
|
613
613
|
# @option options [String] :ssekms_key_id
|
614
|
-
# If `x-amz-server-side-encryption` has
|
615
|
-
# header specifies the ID of the Amazon Web Services Key
|
616
|
-
# Service (Amazon Web Services KMS)
|
614
|
+
# If `x-amz-server-side-encryption` is present and has the value of
|
615
|
+
# `aws:kms`, this header specifies the ID of the Amazon Web Services Key
|
616
|
+
# Management Service (Amazon Web Services KMS) symmetrical customer
|
617
617
|
# managed key that was used for the object. If you specify
|
618
618
|
# `x-amz-server-side-encryption:aws:kms`, but do not provide`
|
619
619
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
@@ -623,10 +623,7 @@ module Aws::S3
|
|
623
623
|
# @option options [String] :ssekms_encryption_context
|
624
624
|
# Specifies the Amazon Web Services KMS Encryption Context to use for
|
625
625
|
# object encryption. The value of this header is a base64-encoded UTF-8
|
626
|
-
# string holding JSON with the encryption context key-value pairs.
|
627
|
-
# value is stored as object metadata and automatically gets passed on to
|
628
|
-
# Amazon Web Services KMS for future `GetObject` or `CopyObject`
|
629
|
-
# operations on this object.
|
626
|
+
# string holding JSON with the encryption context key-value pairs.
|
630
627
|
# @option options [Boolean] :bucket_key_enabled
|
631
628
|
# Specifies whether Amazon S3 should use an S3 Bucket Key for object
|
632
629
|
# encryption with server-side encryption using AWS KMS (SSE-KMS).
|