aws-sdk-s3 1.48.0 → 1.113.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +888 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3/arn/access_point_arn.rb +69 -0
- data/lib/aws-sdk-s3/arn/multi_region_access_point_arn.rb +68 -0
- data/lib/aws-sdk-s3/arn/object_lambda_arn.rb +69 -0
- data/lib/aws-sdk-s3/arn/outpost_access_point_arn.rb +74 -0
- data/lib/aws-sdk-s3/bucket.rb +375 -82
- data/lib/aws-sdk-s3/bucket_acl.rb +55 -15
- data/lib/aws-sdk-s3/bucket_cors.rb +67 -14
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +54 -16
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +56 -16
- data/lib/aws-sdk-s3/bucket_logging.rb +52 -13
- data/lib/aws-sdk-s3/bucket_notification.rb +43 -17
- data/lib/aws-sdk-s3/bucket_policy.rb +51 -13
- data/lib/aws-sdk-s3/bucket_region_cache.rb +2 -0
- data/lib/aws-sdk-s3/bucket_request_payment.rb +51 -12
- data/lib/aws-sdk-s3/bucket_tagging.rb +59 -14
- data/lib/aws-sdk-s3/bucket_versioning.rb +118 -12
- data/lib/aws-sdk-s3/bucket_website.rb +66 -17
- data/lib/aws-sdk-s3/client.rb +8973 -740
- data/lib/aws-sdk-s3/client_api.rb +778 -2
- data/lib/aws-sdk-s3/customizations/bucket.rb +59 -16
- data/lib/aws-sdk-s3/customizations/multipart_upload.rb +2 -0
- data/lib/aws-sdk-s3/customizations/object.rb +200 -62
- data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
- data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +2 -0
- data/lib/aws-sdk-s3/customizations.rb +4 -1
- data/lib/aws-sdk-s3/encryption/client.rb +22 -5
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +71 -29
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +43 -5
- data/lib/aws-sdk-s3/encryption/default_key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +13 -2
- data/lib/aws-sdk-s3/encryption/errors.rb +2 -0
- data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryption/io_decrypter.rb +11 -3
- data/lib/aws-sdk-s3/encryption/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryption/key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +34 -3
- data/lib/aws-sdk-s3/encryption/materials.rb +8 -6
- data/lib/aws-sdk-s3/encryption/utils.rb +25 -0
- data/lib/aws-sdk-s3/encryption.rb +4 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +566 -0
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +222 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +170 -0
- data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +40 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +65 -0
- data/lib/aws-sdk-s3/encryptionV2/errors.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +73 -0
- data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +31 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +169 -0
- data/lib/aws-sdk-s3/encryptionV2/materials.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +103 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +23 -0
- data/lib/aws-sdk-s3/errors.rb +123 -1
- data/lib/aws-sdk-s3/event_streams.rb +8 -1
- data/lib/aws-sdk-s3/file_downloader.rb +17 -10
- data/lib/aws-sdk-s3/file_part.rb +11 -6
- data/lib/aws-sdk-s3/file_uploader.rb +33 -14
- data/lib/aws-sdk-s3/legacy_signer.rb +17 -25
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +78 -19
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +18 -7
- data/lib/aws-sdk-s3/multipart_upload.rb +178 -29
- data/lib/aws-sdk-s3/multipart_upload_error.rb +2 -0
- data/lib/aws-sdk-s3/multipart_upload_part.rb +233 -42
- data/lib/aws-sdk-s3/object.rb +846 -179
- data/lib/aws-sdk-s3/object_acl.rb +79 -21
- data/lib/aws-sdk-s3/object_copier.rb +2 -0
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -0
- data/lib/aws-sdk-s3/object_summary.rb +611 -162
- data/lib/aws-sdk-s3/object_version.rb +162 -71
- data/lib/aws-sdk-s3/plugins/accelerate.rb +38 -38
- data/lib/aws-sdk-s3/plugins/arn.rb +254 -0
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +8 -8
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +25 -3
- data/lib/aws-sdk-s3/plugins/dualstack.rb +38 -33
- data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +4 -4
- data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +3 -1
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +11 -3
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +73 -0
- data/lib/aws-sdk-s3/plugins/location_constraint.rb +2 -0
- data/lib/aws-sdk-s3/plugins/md5s.rb +34 -30
- data/lib/aws-sdk-s3/plugins/object_lambda_endpoint.rb +25 -0
- data/lib/aws-sdk-s3/plugins/redirects.rb +2 -0
- data/lib/aws-sdk-s3/plugins/s3_host_id.rb +2 -0
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +89 -36
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +31 -0
- data/lib/aws-sdk-s3/plugins/sse_cpk.rb +3 -1
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +118 -0
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -0
- data/lib/aws-sdk-s3/presigned_post.rb +110 -51
- data/lib/aws-sdk-s3/presigner.rb +133 -45
- data/lib/aws-sdk-s3/resource.rb +43 -7
- data/lib/aws-sdk-s3/types.rb +8437 -1132
- data/lib/aws-sdk-s3/waiters.rb +67 -1
- data/lib/aws-sdk-s3.rb +12 -6
- metadata +37 -12
@@ -1,11 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
4
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::S3
|
11
|
+
|
9
12
|
class ObjectVersion
|
10
13
|
|
11
14
|
extend Aws::Deprecations
|
@@ -27,6 +30,7 @@ module Aws::S3
|
|
27
30
|
@id = extract_id(args, options)
|
28
31
|
@data = options.delete(:data)
|
29
32
|
@client = options.delete(:client) || Client.new(options)
|
33
|
+
@waiter_block_warned = false
|
30
34
|
end
|
31
35
|
|
32
36
|
# @!group Read-Only Attributes
|
@@ -46,12 +50,18 @@ module Aws::S3
|
|
46
50
|
@id
|
47
51
|
end
|
48
52
|
|
49
|
-
|
53
|
+
# The entity tag is an MD5 hash of that version of the object.
|
50
54
|
# @return [String]
|
51
55
|
def etag
|
52
56
|
data[:etag]
|
53
57
|
end
|
54
58
|
|
59
|
+
# The algorithm that was used to create a checksum of the object.
|
60
|
+
# @return [Array<String>]
|
61
|
+
def checksum_algorithm
|
62
|
+
data[:checksum_algorithm]
|
63
|
+
end
|
64
|
+
|
55
65
|
# Size in bytes of the object.
|
56
66
|
# @return [Integer]
|
57
67
|
def size
|
@@ -89,7 +99,7 @@ module Aws::S3
|
|
89
99
|
data[:last_modified]
|
90
100
|
end
|
91
101
|
|
92
|
-
|
102
|
+
# Specifies the owner of the object.
|
93
103
|
# @return [Types::Owner]
|
94
104
|
def owner
|
95
105
|
data[:owner]
|
@@ -130,7 +140,8 @@ module Aws::S3
|
|
130
140
|
# Waiter polls an API operation until a resource enters a desired
|
131
141
|
# state.
|
132
142
|
#
|
133
|
-
# @note The waiting operation is performed on a copy. The original resource
|
143
|
+
# @note The waiting operation is performed on a copy. The original resource
|
144
|
+
# remains unchanged.
|
134
145
|
#
|
135
146
|
# ## Basic Usage
|
136
147
|
#
|
@@ -143,13 +154,15 @@ module Aws::S3
|
|
143
154
|
#
|
144
155
|
# ## Example
|
145
156
|
#
|
146
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
157
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
158
|
+
# instance.state.name == 'running'
|
159
|
+
# end
|
147
160
|
#
|
148
161
|
# ## Configuration
|
149
162
|
#
|
150
163
|
# You can configure the maximum number of polling attempts, and the
|
151
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
152
|
-
# by passing a block to {#wait_until}:
|
164
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
165
|
+
# set by passing a block to {#wait_until}:
|
153
166
|
#
|
154
167
|
# # poll for ~25 seconds
|
155
168
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
@@ -180,17 +193,16 @@ module Aws::S3
|
|
180
193
|
# # resource did not enter the desired state in time
|
181
194
|
# end
|
182
195
|
#
|
196
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
183
197
|
#
|
184
|
-
# @
|
185
|
-
#
|
186
|
-
#
|
187
|
-
# because the waiter has entered a state that it will not transition
|
188
|
-
# out of, preventing success.
|
198
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
199
|
+
# terminates because the waiter has entered a state that it will not
|
200
|
+
# transition out of, preventing success.
|
189
201
|
#
|
190
202
|
# yet successful.
|
191
203
|
#
|
192
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
193
|
-
# while polling for a resource that is not expected.
|
204
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
205
|
+
# encountered while polling for a resource that is not expected.
|
194
206
|
#
|
195
207
|
# @raise [NotImplementedError] Raised when the resource does not
|
196
208
|
#
|
@@ -228,20 +240,32 @@ module Aws::S3
|
|
228
240
|
# mfa: "MFA",
|
229
241
|
# request_payer: "requester", # accepts requester
|
230
242
|
# bypass_governance_retention: false,
|
243
|
+
# expected_bucket_owner: "AccountId",
|
231
244
|
# })
|
232
245
|
# @param [Hash] options ({})
|
233
246
|
# @option options [String] :mfa
|
234
247
|
# The concatenation of the authentication device's serial number, a
|
235
248
|
# space, and the value that is displayed on your authentication device.
|
249
|
+
# Required to permanently delete a versioned object if versioning is
|
250
|
+
# configured with MFA delete enabled.
|
236
251
|
# @option options [String] :request_payer
|
237
|
-
# Confirms that the requester knows that
|
238
|
-
#
|
239
|
-
# requests.
|
240
|
-
# buckets
|
241
|
-
#
|
252
|
+
# Confirms that the requester knows that they will be charged for the
|
253
|
+
# request. Bucket owners need not specify this parameter in their
|
254
|
+
# requests. For information about downloading objects from Requester
|
255
|
+
# Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
|
256
|
+
# in the *Amazon S3 User Guide*.
|
257
|
+
#
|
258
|
+
#
|
259
|
+
#
|
260
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
242
261
|
# @option options [Boolean] :bypass_governance_retention
|
243
|
-
# Indicates whether
|
244
|
-
# restrictions to process this operation.
|
262
|
+
# Indicates whether S3 Object Lock should bypass Governance-mode
|
263
|
+
# restrictions to process this operation. To use this header, you must
|
264
|
+
# have the `s3:BypassGovernanceRetention` permission.
|
265
|
+
# @option options [String] :expected_bucket_owner
|
266
|
+
# The account ID of the expected bucket owner. If the bucket is owned by
|
267
|
+
# a different account, the request fails with the HTTP status code `403
|
268
|
+
# Forbidden` (access denied).
|
245
269
|
# @return [Types::DeleteObjectOutput]
|
246
270
|
def delete(options = {})
|
247
271
|
options = options.merge(
|
@@ -272,60 +296,81 @@ module Aws::S3
|
|
272
296
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
273
297
|
# request_payer: "requester", # accepts requester
|
274
298
|
# part_number: 1,
|
299
|
+
# expected_bucket_owner: "AccountId",
|
300
|
+
# checksum_mode: "ENABLED", # accepts ENABLED
|
275
301
|
# })
|
276
302
|
# @param [Hash] options ({})
|
277
303
|
# @option options [String] :if_match
|
278
304
|
# Return the object only if its entity tag (ETag) is the same as the one
|
279
|
-
# specified
|
305
|
+
# specified; otherwise, return a 412 (precondition failed) error.
|
280
306
|
# @option options [Time,DateTime,Date,Integer,String] :if_modified_since
|
281
307
|
# Return the object only if it has been modified since the specified
|
282
|
-
# time
|
308
|
+
# time; otherwise, return a 304 (not modified) error.
|
283
309
|
# @option options [String] :if_none_match
|
284
310
|
# Return the object only if its entity tag (ETag) is different from the
|
285
|
-
# one specified
|
311
|
+
# one specified; otherwise, return a 304 (not modified) error.
|
286
312
|
# @option options [Time,DateTime,Date,Integer,String] :if_unmodified_since
|
287
313
|
# Return the object only if it has not been modified since the specified
|
288
|
-
# time
|
314
|
+
# time; otherwise, return a 412 (precondition failed) error.
|
289
315
|
# @option options [String] :range
|
290
316
|
# Downloads the specified range bytes of an object. For more information
|
291
|
-
# about the HTTP Range header,
|
292
|
-
#
|
317
|
+
# about the HTTP Range header, see
|
318
|
+
# [https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35][1].
|
319
|
+
#
|
320
|
+
# <note markdown="1"> Amazon S3 doesn't support retrieving multiple ranges of data per
|
321
|
+
# `GET` request.
|
322
|
+
#
|
323
|
+
# </note>
|
324
|
+
#
|
325
|
+
#
|
326
|
+
#
|
327
|
+
# [1]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35
|
293
328
|
# @option options [String] :response_cache_control
|
294
|
-
# Sets the Cache-Control header of the response.
|
329
|
+
# Sets the `Cache-Control` header of the response.
|
295
330
|
# @option options [String] :response_content_disposition
|
296
|
-
# Sets the Content-Disposition header of the response
|
331
|
+
# Sets the `Content-Disposition` header of the response
|
297
332
|
# @option options [String] :response_content_encoding
|
298
|
-
# Sets the Content-Encoding header of the response.
|
333
|
+
# Sets the `Content-Encoding` header of the response.
|
299
334
|
# @option options [String] :response_content_language
|
300
|
-
# Sets the Content-Language header of the response.
|
335
|
+
# Sets the `Content-Language` header of the response.
|
301
336
|
# @option options [String] :response_content_type
|
302
|
-
# Sets the Content-Type header of the response.
|
337
|
+
# Sets the `Content-Type` header of the response.
|
303
338
|
# @option options [Time,DateTime,Date,Integer,String] :response_expires
|
304
|
-
# Sets the Expires header of the response.
|
339
|
+
# Sets the `Expires` header of the response.
|
305
340
|
# @option options [String] :sse_customer_algorithm
|
306
|
-
# Specifies the algorithm to use to when
|
307
|
-
# AES256).
|
341
|
+
# Specifies the algorithm to use to when decrypting the object (for
|
342
|
+
# example, AES256).
|
308
343
|
# @option options [String] :sse_customer_key
|
309
|
-
# Specifies the customer-provided encryption key for Amazon S3 to
|
310
|
-
#
|
311
|
-
#
|
312
|
-
# appropriate for use with the algorithm specified in the
|
313
|
-
# x-amz-server-side
|
344
|
+
# Specifies the customer-provided encryption key for Amazon S3 used to
|
345
|
+
# encrypt the data. This value is used to decrypt the object when
|
346
|
+
# recovering it and must match the one used when storing the data. The
|
347
|
+
# key must be appropriate for use with the algorithm specified in the
|
348
|
+
# `x-amz-server-side-encryption-customer-algorithm` header.
|
314
349
|
# @option options [String] :sse_customer_key_md5
|
315
350
|
# Specifies the 128-bit MD5 digest of the encryption key according to
|
316
351
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
317
|
-
# ensure the encryption key was transmitted without error.
|
352
|
+
# ensure that the encryption key was transmitted without error.
|
318
353
|
# @option options [String] :request_payer
|
319
|
-
# Confirms that the requester knows that
|
320
|
-
#
|
321
|
-
# requests.
|
322
|
-
# buckets
|
323
|
-
#
|
354
|
+
# Confirms that the requester knows that they will be charged for the
|
355
|
+
# request. Bucket owners need not specify this parameter in their
|
356
|
+
# requests. For information about downloading objects from Requester
|
357
|
+
# Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
|
358
|
+
# in the *Amazon S3 User Guide*.
|
359
|
+
#
|
360
|
+
#
|
361
|
+
#
|
362
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
324
363
|
# @option options [Integer] :part_number
|
325
364
|
# Part number of the object being read. This is a positive integer
|
326
365
|
# between 1 and 10,000. Effectively performs a 'ranged' GET request
|
327
366
|
# for the part specified. Useful for downloading just a part of an
|
328
367
|
# object.
|
368
|
+
# @option options [String] :expected_bucket_owner
|
369
|
+
# The account ID of the expected bucket owner. If the bucket is owned by
|
370
|
+
# a different account, the request fails with the HTTP status code `403
|
371
|
+
# Forbidden` (access denied).
|
372
|
+
# @option options [String] :checksum_mode
|
373
|
+
# To retrieve the checksum, this mode must be enabled.
|
329
374
|
# @return [Types::GetObjectOutput]
|
330
375
|
def get(options = {}, &block)
|
331
376
|
options = options.merge(
|
@@ -350,48 +395,64 @@ module Aws::S3
|
|
350
395
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
351
396
|
# request_payer: "requester", # accepts requester
|
352
397
|
# part_number: 1,
|
398
|
+
# expected_bucket_owner: "AccountId",
|
399
|
+
# checksum_mode: "ENABLED", # accepts ENABLED
|
353
400
|
# })
|
354
401
|
# @param [Hash] options ({})
|
355
402
|
# @option options [String] :if_match
|
356
403
|
# Return the object only if its entity tag (ETag) is the same as the one
|
357
|
-
# specified
|
404
|
+
# specified; otherwise, return a 412 (precondition failed) error.
|
358
405
|
# @option options [Time,DateTime,Date,Integer,String] :if_modified_since
|
359
406
|
# Return the object only if it has been modified since the specified
|
360
|
-
# time
|
407
|
+
# time; otherwise, return a 304 (not modified) error.
|
361
408
|
# @option options [String] :if_none_match
|
362
409
|
# Return the object only if its entity tag (ETag) is different from the
|
363
|
-
# one specified
|
410
|
+
# one specified; otherwise, return a 304 (not modified) error.
|
364
411
|
# @option options [Time,DateTime,Date,Integer,String] :if_unmodified_since
|
365
412
|
# Return the object only if it has not been modified since the specified
|
366
|
-
# time
|
413
|
+
# time; otherwise, return a 412 (precondition failed) error.
|
367
414
|
# @option options [String] :range
|
368
|
-
#
|
369
|
-
#
|
370
|
-
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
|
415
|
+
# Because `HeadObject` returns only the metadata for an object, this
|
416
|
+
# parameter has no effect.
|
371
417
|
# @option options [String] :sse_customer_algorithm
|
372
|
-
# Specifies the algorithm to use to when encrypting the object (
|
373
|
-
# AES256).
|
418
|
+
# Specifies the algorithm to use to when encrypting the object (for
|
419
|
+
# example, AES256).
|
374
420
|
# @option options [String] :sse_customer_key
|
375
421
|
# Specifies the customer-provided encryption key for Amazon S3 to use in
|
376
422
|
# encrypting data. This value is used to store the object and then it is
|
377
|
-
# discarded; Amazon does not store the encryption key. The key must
|
378
|
-
# appropriate for use with the algorithm specified in the
|
379
|
-
# x-amz-server-side
|
423
|
+
# discarded; Amazon S3 does not store the encryption key. The key must
|
424
|
+
# be appropriate for use with the algorithm specified in the
|
425
|
+
# `x-amz-server-side-encryption-customer-algorithm` header.
|
380
426
|
# @option options [String] :sse_customer_key_md5
|
381
427
|
# Specifies the 128-bit MD5 digest of the encryption key according to
|
382
428
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
383
|
-
# ensure the encryption key was transmitted without error.
|
429
|
+
# ensure that the encryption key was transmitted without error.
|
384
430
|
# @option options [String] :request_payer
|
385
|
-
# Confirms that the requester knows that
|
386
|
-
#
|
387
|
-
# requests.
|
388
|
-
# buckets
|
389
|
-
#
|
431
|
+
# Confirms that the requester knows that they will be charged for the
|
432
|
+
# request. Bucket owners need not specify this parameter in their
|
433
|
+
# requests. For information about downloading objects from Requester
|
434
|
+
# Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
|
435
|
+
# in the *Amazon S3 User Guide*.
|
436
|
+
#
|
437
|
+
#
|
438
|
+
#
|
439
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
390
440
|
# @option options [Integer] :part_number
|
391
441
|
# Part number of the object being read. This is a positive integer
|
392
442
|
# between 1 and 10,000. Effectively performs a 'ranged' HEAD request
|
393
443
|
# for the part specified. Useful querying about the size of the part and
|
394
444
|
# the number of parts in this object.
|
445
|
+
# @option options [String] :expected_bucket_owner
|
446
|
+
# The account ID of the expected bucket owner. If the bucket is owned by
|
447
|
+
# a different account, the request fails with the HTTP status code `403
|
448
|
+
# Forbidden` (access denied).
|
449
|
+
# @option options [String] :checksum_mode
|
450
|
+
# To retrieve the checksum, this parameter must be enabled.
|
451
|
+
#
|
452
|
+
# In addition, if you enable `ChecksumMode` and the object is encrypted
|
453
|
+
# with Amazon Web Services Key Management Service (Amazon Web Services
|
454
|
+
# KMS), you must have permission to use the `kms:Decrypt` action for the
|
455
|
+
# request to succeed.
|
395
456
|
# @return [Types::HeadObjectOutput]
|
396
457
|
def head(options = {})
|
397
458
|
options = options.merge(
|
@@ -470,21 +531,51 @@ module Aws::S3
|
|
470
531
|
# mfa: "MFA",
|
471
532
|
# request_payer: "requester", # accepts requester
|
472
533
|
# bypass_governance_retention: false,
|
534
|
+
# expected_bucket_owner: "AccountId",
|
535
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256
|
473
536
|
# })
|
474
537
|
# @param options ({})
|
475
538
|
# @option options [String] :mfa
|
476
539
|
# The concatenation of the authentication device's serial number, a
|
477
540
|
# space, and the value that is displayed on your authentication device.
|
541
|
+
# Required to permanently delete a versioned object if versioning is
|
542
|
+
# configured with MFA delete enabled.
|
478
543
|
# @option options [String] :request_payer
|
479
|
-
# Confirms that the requester knows that
|
480
|
-
#
|
481
|
-
# requests.
|
482
|
-
# buckets
|
483
|
-
#
|
544
|
+
# Confirms that the requester knows that they will be charged for the
|
545
|
+
# request. Bucket owners need not specify this parameter in their
|
546
|
+
# requests. For information about downloading objects from Requester
|
547
|
+
# Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
|
548
|
+
# in the *Amazon S3 User Guide*.
|
549
|
+
#
|
550
|
+
#
|
551
|
+
#
|
552
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
484
553
|
# @option options [Boolean] :bypass_governance_retention
|
485
554
|
# Specifies whether you want to delete this object even if it has a
|
486
|
-
# Governance-type
|
487
|
-
#
|
555
|
+
# Governance-type Object Lock in place. To use this header, you must
|
556
|
+
# have the `s3:BypassGovernanceRetention` permission.
|
557
|
+
# @option options [String] :expected_bucket_owner
|
558
|
+
# The account ID of the expected bucket owner. If the bucket is owned by
|
559
|
+
# a different account, the request fails with the HTTP status code `403
|
560
|
+
# Forbidden` (access denied).
|
561
|
+
# @option options [String] :checksum_algorithm
|
562
|
+
# Indicates the algorithm used to create the checksum for the object
|
563
|
+
# when using the SDK. This header will not provide any additional
|
564
|
+
# functionality if not using the SDK. When sending this header, there
|
565
|
+
# must be a corresponding `x-amz-checksum` or `x-amz-trailer` header
|
566
|
+
# sent. Otherwise, Amazon S3 fails the request with the HTTP status code
|
567
|
+
# `400 Bad Request`. For more information, see [Checking object
|
568
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
569
|
+
#
|
570
|
+
# If you provide an individual checksum, Amazon S3 ignores any provided
|
571
|
+
# `ChecksumAlgorithm` parameter.
|
572
|
+
#
|
573
|
+
# This checksum algorithm must be the same for all parts and it match
|
574
|
+
# the checksum value supplied in the `CreateMultipartUpload` request.
|
575
|
+
#
|
576
|
+
#
|
577
|
+
#
|
578
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
488
579
|
# @return [void]
|
489
580
|
def batch_delete!(options = {})
|
490
581
|
batch_enum.each do |batch|
|
@@ -1,36 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Aws
|
2
4
|
module S3
|
3
5
|
module Plugins
|
4
|
-
|
5
6
|
# Provides support for using `Aws::S3::Client` with Amazon S3 Transfer
|
6
7
|
# Acceleration.
|
7
8
|
#
|
8
9
|
# Go here for more information about transfer acceleration:
|
9
10
|
# [http://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html](http://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html)
|
10
11
|
class Accelerate < Seahorse::Client::Plugin
|
11
|
-
|
12
|
-
|
12
|
+
option(
|
13
|
+
:use_accelerate_endpoint,
|
13
14
|
default: false,
|
14
15
|
doc_type: 'Boolean',
|
15
16
|
docstring: <<-DOCS)
|
16
17
|
When set to `true`, accelerated bucket endpoints will be used
|
17
18
|
for all object operations. You must first enable accelerate for
|
18
|
-
each bucket.
|
19
|
+
each bucket. [Go here for more information](http://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html).
|
19
20
|
DOCS
|
20
21
|
|
21
22
|
def add_handlers(handlers, config)
|
22
23
|
operations = config.api.operation_names - [
|
23
|
-
:create_bucket, :list_buckets, :delete_bucket
|
24
|
+
:create_bucket, :list_buckets, :delete_bucket
|
24
25
|
]
|
25
|
-
handlers
|
26
|
-
|
26
|
+
# Need 2 handlers so that the context can be set for other plugins
|
27
|
+
# and to remove :use_accelerate_endpoint from the params.
|
28
|
+
handlers.add(
|
29
|
+
OptionHandler, step: :initialize, operations: operations
|
30
|
+
)
|
31
|
+
handlers.add(
|
32
|
+
AccelerateHandler, step: :build, priority: 11, operations: operations
|
33
|
+
)
|
27
34
|
end
|
28
35
|
|
29
36
|
# @api private
|
30
37
|
class OptionHandler < Seahorse::Client::Handler
|
31
38
|
def call(context)
|
32
|
-
|
39
|
+
# Support client configuration and per-operation configuration
|
40
|
+
if context.params.is_a?(Hash)
|
41
|
+
accelerate = context.params.delete(:use_accelerate_endpoint)
|
42
|
+
end
|
33
43
|
accelerate = context.config.use_accelerate_endpoint if accelerate.nil?
|
44
|
+
# Raise if :endpoint and accelerate are both provided
|
45
|
+
if accelerate && !context.config.regional_endpoint
|
46
|
+
raise ArgumentError,
|
47
|
+
'Cannot use both :use_accelerate_endpoint and :endpoint'
|
48
|
+
end
|
49
|
+
# Raise if :use_fips_endpoint and accelerate are both provided
|
50
|
+
if accelerate && context.config.use_fips_endpoint
|
51
|
+
raise ArgumentError,
|
52
|
+
'Cannot use both :use_accelerate_endpoint and '\
|
53
|
+
':use_fips_endpoint'
|
54
|
+
end
|
34
55
|
context[:use_accelerate_endpoint] = accelerate
|
35
56
|
@handler.call(context)
|
36
57
|
end
|
@@ -38,39 +59,24 @@ each bucket. [Go here for more information](http://docs.aws.amazon.com/AmazonS3
|
|
38
59
|
|
39
60
|
# @api private
|
40
61
|
class AccelerateHandler < Seahorse::Client::Handler
|
41
|
-
|
42
62
|
def call(context)
|
43
|
-
if context[:use_accelerate_endpoint]
|
44
|
-
|
45
|
-
|
46
|
-
else
|
47
|
-
use_accelerate_endpoint(context)
|
48
|
-
end
|
63
|
+
if context.config.regional_endpoint && context[:use_accelerate_endpoint]
|
64
|
+
dualstack = !!context[:use_dualstack_endpoint]
|
65
|
+
use_accelerate_endpoint(context, dualstack)
|
49
66
|
end
|
50
67
|
@handler.call(context)
|
51
68
|
end
|
52
69
|
|
53
70
|
private
|
54
71
|
|
55
|
-
def use_accelerate_endpoint(context)
|
72
|
+
def use_accelerate_endpoint(context, dualstack)
|
56
73
|
bucket_name = context.params[:bucket]
|
57
74
|
validate_bucket_name!(bucket_name)
|
58
75
|
endpoint = URI.parse(context.http_request.endpoint.to_s)
|
59
76
|
endpoint.scheme = 'https'
|
60
77
|
endpoint.port = 443
|
61
|
-
endpoint.host = "#{bucket_name}.s3-accelerate
|
62
|
-
|
63
|
-
# s3 accelerate endpoint doesn't work with 'expect' header
|
64
|
-
context.http_request.headers.delete('expect')
|
65
|
-
end
|
66
|
-
|
67
|
-
def use_combined_accelerate_dualstack_endpoint(context)
|
68
|
-
bucket_name = context.params[:bucket]
|
69
|
-
validate_bucket_name!(bucket_name)
|
70
|
-
endpoint = URI.parse(context.http_request.endpoint.to_s)
|
71
|
-
endpoint.scheme = 'https'
|
72
|
-
endpoint.port = 443
|
73
|
-
endpoint.host = "#{bucket_name}.s3-accelerate.dualstack.amazonaws.com"
|
78
|
+
endpoint.host = "#{bucket_name}.s3-accelerate"\
|
79
|
+
"#{'.dualstack' if dualstack}.amazonaws.com"
|
74
80
|
context.http_request.endpoint = endpoint.to_s
|
75
81
|
# s3 accelerate endpoint doesn't work with 'expect' header
|
76
82
|
context.http_request.headers.delete('expect')
|
@@ -78,17 +84,11 @@ each bucket. [Go here for more information](http://docs.aws.amazon.com/AmazonS3
|
|
78
84
|
|
79
85
|
def validate_bucket_name!(bucket_name)
|
80
86
|
unless BucketDns.dns_compatible?(bucket_name, _ssl = true)
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
end
|
85
|
-
if bucket_name.include?('.')
|
86
|
-
msg = "unable to use `accelerate: true` on buckets with dots"
|
87
|
-
msg << "in their name: #{bucket_name.inspect}"
|
88
|
-
raise ArgumentError, msg
|
87
|
+
raise ArgumentError,
|
88
|
+
'Unable to use `use_accelerate_endpoint: true` on buckets '\
|
89
|
+
'with non-DNS compatible names.'
|
89
90
|
end
|
90
91
|
end
|
91
|
-
|
92
92
|
end
|
93
93
|
end
|
94
94
|
end
|