aws-sdk-s3 1.72.0 → 1.77.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/bucket.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +795 -507
- data/lib/aws-sdk-s3/customizations/object.rb +12 -1
- data/lib/aws-sdk-s3/encryption.rb +2 -0
- data/lib/aws-sdk-s3/encryption/client.rb +11 -0
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +64 -29
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +41 -5
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +5 -5
- data/lib/aws-sdk-s3/encryption/io_decrypter.rb +7 -6
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +32 -3
- data/lib/aws-sdk-s3/encryption/utils.rb +23 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +201 -23
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +40 -12
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +77 -10
- data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +7 -4
- data/lib/aws-sdk-s3/encryptionV2/errors.rb +24 -0
- data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +90 -20
- data/lib/aws-sdk-s3/encryptionV2/materials.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +2 -15
- data/lib/aws-sdk-s3/encryption_v2.rb +4 -1
- data/lib/aws-sdk-s3/file_uploader.rb +11 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +37 -2
- data/lib/aws-sdk-s3/multipart_upload_part.rb +5 -5
- data/lib/aws-sdk-s3/object.rb +10 -9
- data/lib/aws-sdk-s3/object_summary.rb +23 -7
- data/lib/aws-sdk-s3/object_version.rb +2 -2
- data/lib/aws-sdk-s3/plugins/accelerate.rb +27 -38
- data/lib/aws-sdk-s3/plugins/dualstack.rb +3 -1
- data/lib/aws-sdk-s3/plugins/sse_cpk.rb +1 -1
- data/lib/aws-sdk-s3/presigned_post.rb +61 -28
- data/lib/aws-sdk-s3/presigner.rb +2 -2
- data/lib/aws-sdk-s3/types.rb +63 -26
- metadata +4 -4
data/lib/aws-sdk-s3/presigner.rb
CHANGED
@@ -41,7 +41,7 @@ module Aws
|
|
41
41
|
# signer = Aws::S3::Presigner.new
|
42
42
|
# url = signer.presigned_url(:get_object, bucket: "bucket", key: "key")
|
43
43
|
#
|
44
|
-
# @param [Symbol]
|
44
|
+
# @param [Symbol] method Symbolized method name of the operation you want
|
45
45
|
# to presign.
|
46
46
|
#
|
47
47
|
# @option params [Integer] :expires_in (900) The number of seconds
|
@@ -89,7 +89,7 @@ module Aws
|
|
89
89
|
# :get_object, bucket: "bucket", key: "key"
|
90
90
|
# )
|
91
91
|
#
|
92
|
-
# @param [Symbol]
|
92
|
+
# @param [Symbol] method Symbolized method name of the operation you want
|
93
93
|
# to presign.
|
94
94
|
#
|
95
95
|
# @option params [Integer] :expires_in (900) The number of seconds
|
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -1350,7 +1350,7 @@ module Aws::S3
|
|
1350
1350
|
# in encrypting data. This value is used to store the object and then
|
1351
1351
|
# it is discarded; Amazon S3 does not store the encryption key. The
|
1352
1352
|
# key must be appropriate for use with the algorithm specified in the
|
1353
|
-
# `x-amz-server-side
|
1353
|
+
# `x-amz-server-side-encryption-customer-algorithm` header.
|
1354
1354
|
# @return [String]
|
1355
1355
|
#
|
1356
1356
|
# @!attribute [rw] sse_customer_key_md5
|
@@ -1843,7 +1843,7 @@ module Aws::S3
|
|
1843
1843
|
# in encrypting data. This value is used to store the object and then
|
1844
1844
|
# it is discarded; Amazon S3 does not store the encryption key. The
|
1845
1845
|
# key must be appropriate for use with the algorithm specified in the
|
1846
|
-
# `x-amz-server-side
|
1846
|
+
# `x-amz-server-side-encryption-customer-algorithm` header.
|
1847
1847
|
# @return [String]
|
1848
1848
|
#
|
1849
1849
|
# @!attribute [rw] sse_customer_key_md5
|
@@ -2457,7 +2457,7 @@ module Aws::S3
|
|
2457
2457
|
# @return [String]
|
2458
2458
|
#
|
2459
2459
|
# @!attribute [rw] key
|
2460
|
-
# Name of the
|
2460
|
+
# Name of the object key.
|
2461
2461
|
# @return [String]
|
2462
2462
|
#
|
2463
2463
|
# @!attribute [rw] version_id
|
@@ -4884,7 +4884,7 @@ module Aws::S3
|
|
4884
4884
|
# in encrypting data. This value is used to store the object and then
|
4885
4885
|
# it is discarded; Amazon S3 does not store the encryption key. The
|
4886
4886
|
# key must be appropriate for use with the algorithm specified in the
|
4887
|
-
# `x-amz-server-side
|
4887
|
+
# `x-amz-server-side-encryption-customer-algorithm` header.
|
4888
4888
|
# @return [String]
|
4889
4889
|
#
|
4890
4890
|
# @!attribute [rw] sse_customer_key_md5
|
@@ -5332,8 +5332,8 @@ module Aws::S3
|
|
5332
5332
|
# @!attribute [rw] restore
|
5333
5333
|
# If the object is an archived object (an object whose storage class
|
5334
5334
|
# is GLACIER), the response includes this header if either the archive
|
5335
|
-
# restoration is in progress (see RestoreObject or an archive
|
5336
|
-
# already restored.
|
5335
|
+
# restoration is in progress (see [RestoreObject][1] or an archive
|
5336
|
+
# copy is already restored.
|
5337
5337
|
#
|
5338
5338
|
# If an archive copy is already restored, the header value indicates
|
5339
5339
|
# when Amazon S3 is scheduled to delete the object copy. For example:
|
@@ -5345,11 +5345,12 @@ module Aws::S3
|
|
5345
5345
|
# value `ongoing-request="true"`.
|
5346
5346
|
#
|
5347
5347
|
# For more information about archiving objects, see [Transitioning
|
5348
|
-
# Objects: General Considerations][
|
5348
|
+
# Objects: General Considerations][2].
|
5349
5349
|
#
|
5350
5350
|
#
|
5351
5351
|
#
|
5352
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5352
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html
|
5353
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations
|
5353
5354
|
# @return [String]
|
5354
5355
|
#
|
5355
5356
|
# @!attribute [rw] last_modified
|
@@ -5638,7 +5639,7 @@ module Aws::S3
|
|
5638
5639
|
# in encrypting data. This value is used to store the object and then
|
5639
5640
|
# it is discarded; Amazon S3 does not store the encryption key. The
|
5640
5641
|
# key must be appropriate for use with the algorithm specified in the
|
5641
|
-
# `x-amz-server-side
|
5642
|
+
# `x-amz-server-side-encryption-customer-algorithm` header.
|
5642
5643
|
# @return [String]
|
5643
5644
|
#
|
5644
5645
|
# @!attribute [rw] sse_customer_key_md5
|
@@ -7042,7 +7043,7 @@ module Aws::S3
|
|
7042
7043
|
# in the subsequent request to get next set of objects. Amazon S3
|
7043
7044
|
# lists objects in alphabetical order Note: This element is returned
|
7044
7045
|
# only if you have delimiter request parameter specified. If response
|
7045
|
-
# does not include the
|
7046
|
+
# does not include the NextMarker and it is truncated, you can use the
|
7046
7047
|
# value of the last Key in the response as the marker in the
|
7047
7048
|
# subsequent request to get the next set of object keys.
|
7048
7049
|
# @return [String]
|
@@ -8140,8 +8141,25 @@ module Aws::S3
|
|
8140
8141
|
# @return [Time]
|
8141
8142
|
#
|
8142
8143
|
# @!attribute [rw] etag
|
8143
|
-
# The entity tag is
|
8144
|
-
#
|
8144
|
+
# The entity tag is a hash of the object. The ETag reflects changes
|
8145
|
+
# only to the contents of an object, not its metadata. The ETag may or
|
8146
|
+
# may not be an MD5 digest of the object data. Whether or not it is
|
8147
|
+
# depends on how the object was created and how it is encrypted as
|
8148
|
+
# described below:
|
8149
|
+
#
|
8150
|
+
# * Objects created by the PUT Object, POST Object, or Copy operation,
|
8151
|
+
# or through the AWS Management Console, and are encrypted by SSE-S3
|
8152
|
+
# or plaintext, have ETags that are an MD5 digest of their object
|
8153
|
+
# data.
|
8154
|
+
#
|
8155
|
+
# * Objects created by the PUT Object, POST Object, or Copy operation,
|
8156
|
+
# or through the AWS Management Console, and are encrypted by SSE-C
|
8157
|
+
# or SSE-KMS, have ETags that are not an MD5 digest of their object
|
8158
|
+
# data.
|
8159
|
+
#
|
8160
|
+
# * If an object is created by either the Multipart Upload or Part
|
8161
|
+
# Copy operation, the ETag is not an MD5 digest, regardless of the
|
8162
|
+
# method of encryption.
|
8145
8163
|
# @return [String]
|
8146
8164
|
#
|
8147
8165
|
# @!attribute [rw] size
|
@@ -10017,10 +10035,14 @@ module Aws::S3
|
|
10017
10035
|
|
10018
10036
|
# @!attribute [rw] expiration
|
10019
10037
|
# If the expiration is configured for the object (see
|
10020
|
-
# PutBucketLifecycleConfiguration), the response includes this
|
10021
|
-
# It includes the expiry-date and rule-id key-value pairs that
|
10022
|
-
# information about object expiration. The value of the
|
10023
|
-
# encoded.
|
10038
|
+
# [PutBucketLifecycleConfiguration][1]), the response includes this
|
10039
|
+
# header. It includes the expiry-date and rule-id key-value pairs that
|
10040
|
+
# provide information about object expiration. The value of the
|
10041
|
+
# rule-id is URL encoded.
|
10042
|
+
#
|
10043
|
+
#
|
10044
|
+
#
|
10045
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html
|
10024
10046
|
# @return [String]
|
10025
10047
|
#
|
10026
10048
|
# @!attribute [rw] etag
|
@@ -10308,7 +10330,7 @@ module Aws::S3
|
|
10308
10330
|
# in encrypting data. This value is used to store the object and then
|
10309
10331
|
# it is discarded; Amazon S3 does not store the encryption key. The
|
10310
10332
|
# key must be appropriate for use with the algorithm specified in the
|
10311
|
-
# `x-amz-server-side
|
10333
|
+
# `x-amz-server-side-encryption-customer-algorithm` header.
|
10312
10334
|
# @return [String]
|
10313
10335
|
#
|
10314
10336
|
# @!attribute [rw] sse_customer_key_md5
|
@@ -10553,7 +10575,7 @@ module Aws::S3
|
|
10553
10575
|
# @return [String]
|
10554
10576
|
#
|
10555
10577
|
# @!attribute [rw] key
|
10556
|
-
# Name of the
|
10578
|
+
# Name of the object key.
|
10557
10579
|
# @return [String]
|
10558
10580
|
#
|
10559
10581
|
# @!attribute [rw] version_id
|
@@ -10685,11 +10707,15 @@ module Aws::S3
|
|
10685
10707
|
include Aws::Structure
|
10686
10708
|
end
|
10687
10709
|
|
10688
|
-
# This data type is deprecated. Use QueueConfiguration for the same
|
10710
|
+
# This data type is deprecated. Use [QueueConfiguration][1] for the same
|
10689
10711
|
# purposes. This data type specifies the configuration for publishing
|
10690
10712
|
# messages to an Amazon Simple Queue Service (Amazon SQS) queue when
|
10691
10713
|
# Amazon S3 detects specified events.
|
10692
10714
|
#
|
10715
|
+
#
|
10716
|
+
#
|
10717
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_QueueConfiguration.html
|
10718
|
+
#
|
10693
10719
|
# @note When making an API call, you may pass QueueConfigurationDeprecated
|
10694
10720
|
# data as a hash:
|
10695
10721
|
#
|
@@ -11580,7 +11606,14 @@ module Aws::S3
|
|
11580
11606
|
include Aws::Structure
|
11581
11607
|
end
|
11582
11608
|
|
11583
|
-
# Specifies the redirect behavior and when a redirect is applied.
|
11609
|
+
# Specifies the redirect behavior and when a redirect is applied. For
|
11610
|
+
# more information about routing rules, see [Configuring advanced
|
11611
|
+
# conditional redirects][1] in the *Amazon Simple Storage Service
|
11612
|
+
# Developer Guide*.
|
11613
|
+
#
|
11614
|
+
#
|
11615
|
+
#
|
11616
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html#advanced-conditional-redirects
|
11584
11617
|
#
|
11585
11618
|
# @note When making an API call, you may pass RoutingRule
|
11586
11619
|
# data as a hash:
|
@@ -12453,7 +12486,7 @@ module Aws::S3
|
|
12453
12486
|
# }
|
12454
12487
|
#
|
12455
12488
|
# @!attribute [rw] key
|
12456
|
-
# Name of the
|
12489
|
+
# Name of the object key.
|
12457
12490
|
# @return [String]
|
12458
12491
|
#
|
12459
12492
|
# @!attribute [rw] value
|
@@ -12597,7 +12630,11 @@ module Aws::S3
|
|
12597
12630
|
# A container for specifying the configuration for publication of
|
12598
12631
|
# messages to an Amazon Simple Notification Service (Amazon SNS) topic
|
12599
12632
|
# when Amazon S3 detects specified events. This data type is deprecated.
|
12600
|
-
# Use TopicConfiguration instead.
|
12633
|
+
# Use [TopicConfiguration][1] instead.
|
12634
|
+
#
|
12635
|
+
#
|
12636
|
+
#
|
12637
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_TopicConfiguration.html
|
12601
12638
|
#
|
12602
12639
|
# @note When making an API call, you may pass TopicConfigurationDeprecated
|
12603
12640
|
# data as a hash:
|
@@ -12818,8 +12855,8 @@ module Aws::S3
|
|
12818
12855
|
# in encrypting data. This value is used to store the object and then
|
12819
12856
|
# it is discarded; Amazon S3 does not store the encryption key. The
|
12820
12857
|
# key must be appropriate for use with the algorithm specified in the
|
12821
|
-
# `x-amz-server-side
|
12822
|
-
#
|
12858
|
+
# `x-amz-server-side-encryption-customer-algorithm` header. This must
|
12859
|
+
# be the same encryption key specified in the initiate multipart
|
12823
12860
|
# upload request.
|
12824
12861
|
# @return [String]
|
12825
12862
|
#
|
@@ -12988,8 +13025,8 @@ module Aws::S3
|
|
12988
13025
|
# in encrypting data. This value is used to store the object and then
|
12989
13026
|
# it is discarded; Amazon S3 does not store the encryption key. The
|
12990
13027
|
# key must be appropriate for use with the algorithm specified in the
|
12991
|
-
# `x-amz-server-side
|
12992
|
-
#
|
13028
|
+
# `x-amz-server-side-encryption-customer-algorithm header`. This must
|
13029
|
+
# be the same encryption key specified in the initiate multipart
|
12993
13030
|
# upload request.
|
12994
13031
|
# @return [String]
|
12995
13032
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.77.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: '3'
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 3.
|
50
|
+
version: 3.104.3
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
version: '3'
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 3.
|
60
|
+
version: 3.104.3
|
61
61
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
62
62
|
This gem is part of the AWS SDK for Ruby.
|
63
63
|
email:
|