aws-sdk-s3 1.121.0 → 1.123.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +48 -25
- data/lib/aws-sdk-s3/bucket_acl.rb +9 -3
- data/lib/aws-sdk-s3/bucket_cors.rb +12 -4
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +12 -4
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +12 -4
- data/lib/aws-sdk-s3/bucket_logging.rb +9 -3
- data/lib/aws-sdk-s3/bucket_notification.rb +9 -3
- data/lib/aws-sdk-s3/bucket_policy.rb +12 -4
- data/lib/aws-sdk-s3/bucket_request_payment.rb +9 -3
- data/lib/aws-sdk-s3/bucket_tagging.rb +12 -4
- data/lib/aws-sdk-s3/bucket_versioning.rb +15 -5
- data/lib/aws-sdk-s3/bucket_website.rb +12 -4
- data/lib/aws-sdk-s3/client.rb +1547 -1300
- data/lib/aws-sdk-s3/customizations/bucket.rb +3 -1
- data/lib/aws-sdk-s3/customizations/object.rb +28 -18
- data/lib/aws-sdk-s3/encryption/client.rb +6 -2
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +13 -9
- data/lib/aws-sdk-s3/encryptionV2/client.rb +6 -2
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +10 -6
- data/lib/aws-sdk-s3/file_downloader.rb +28 -24
- data/lib/aws-sdk-s3/file_uploader.rb +8 -6
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +5 -3
- data/lib/aws-sdk-s3/multipart_upload.rb +12 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +9 -3
- data/lib/aws-sdk-s3/object.rb +77 -48
- data/lib/aws-sdk-s3/object_acl.rb +9 -3
- data/lib/aws-sdk-s3/object_copier.rb +7 -5
- data/lib/aws-sdk-s3/object_summary.rb +63 -37
- data/lib/aws-sdk-s3/object_version.rb +21 -9
- data/lib/aws-sdk-s3/resource.rb +6 -2
- data/lib/aws-sdk-s3/types.rb +403 -263
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18c5a3063c80c67d11fcb593d262d3eb15b88edf2c25abdaaff2f12c57620274
|
4
|
+
data.tar.gz: b5a6e05f048778f72ca6f34947b4e7b4ed318a447d271764df129dc9e7bcdda3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f09b9adb0fcb1c14e974c482737bce5017377c9b7771f61e3330681a1094a42055edc2727f934e70d1097474163cc98bc2042a2a6880135c2bf9ac97ba5bb88f
|
7
|
+
data.tar.gz: c702479639bb64d638874d05477aa34b3581f3560f573ebd5acaea3d5e272bafd27ba3a491260ddb6697b450a5efaaf240c6699d2c87072b4ccc2f75b6ab00dc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.123.1 (2023-06-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Issue - Fix multipart `download_file` so that it does not download bytes out of range (#2859).
|
8
|
+
|
9
|
+
1.123.0 (2023-05-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.122.0 (2023-05-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation updates for Amazon S3
|
18
|
+
|
4
19
|
1.121.0 (2023-04-19)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.123.1
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -95,7 +95,9 @@ module Aws::S3
|
|
95
95
|
options, params = separate_params_and_options(options)
|
96
96
|
waiter = Waiters::BucketExists.new(options)
|
97
97
|
yield_waiter_and_warn(waiter, &block) if block_given?
|
98
|
-
|
98
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
99
|
+
waiter.wait(params.merge(bucket: @name))
|
100
|
+
end
|
99
101
|
Bucket.new({
|
100
102
|
name: @name,
|
101
103
|
client: @client
|
@@ -112,7 +114,9 @@ module Aws::S3
|
|
112
114
|
options, params = separate_params_and_options(options)
|
113
115
|
waiter = Waiters::BucketNotExists.new(options)
|
114
116
|
yield_waiter_and_warn(waiter, &block) if block_given?
|
115
|
-
|
117
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
118
|
+
waiter.wait(params.merge(bucket: @name))
|
119
|
+
end
|
116
120
|
Bucket.new({
|
117
121
|
name: @name,
|
118
122
|
client: @client
|
@@ -213,7 +217,9 @@ module Aws::S3
|
|
213
217
|
:retry
|
214
218
|
end
|
215
219
|
end
|
216
|
-
Aws::
|
220
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
221
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
222
|
+
end
|
217
223
|
end
|
218
224
|
|
219
225
|
# @!group Actions
|
@@ -275,7 +281,9 @@ module Aws::S3
|
|
275
281
|
# @return [Types::CreateBucketOutput]
|
276
282
|
def create(options = {})
|
277
283
|
options = options.merge(bucket: @name)
|
278
|
-
resp =
|
284
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
285
|
+
@client.create_bucket(options)
|
286
|
+
end
|
279
287
|
resp.data
|
280
288
|
end
|
281
289
|
|
@@ -292,7 +300,9 @@ module Aws::S3
|
|
292
300
|
# @return [EmptyStructure]
|
293
301
|
def delete(options = {})
|
294
302
|
options = options.merge(bucket: @name)
|
295
|
-
resp =
|
303
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
304
|
+
@client.delete_bucket(options)
|
305
|
+
end
|
296
306
|
resp.data
|
297
307
|
end
|
298
308
|
|
@@ -361,7 +371,9 @@ module Aws::S3
|
|
361
371
|
# @return [Types::DeleteObjectsOutput]
|
362
372
|
def delete_objects(options = {})
|
363
373
|
options = options.merge(bucket: @name)
|
364
|
-
resp =
|
374
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
375
|
+
@client.delete_objects(options)
|
376
|
+
end
|
365
377
|
resp.data
|
366
378
|
end
|
367
379
|
|
@@ -430,30 +442,30 @@ module Aws::S3
|
|
430
442
|
# @option options [String] :content_disposition
|
431
443
|
# Specifies presentational information for the object. For more
|
432
444
|
# information, see
|
433
|
-
# [
|
445
|
+
# [https://www.rfc-editor.org/rfc/rfc6266#section-4][1].
|
434
446
|
#
|
435
447
|
#
|
436
448
|
#
|
437
|
-
# [1]:
|
449
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc6266#section-4
|
438
450
|
# @option options [String] :content_encoding
|
439
451
|
# Specifies what content encodings have been applied to the object and
|
440
452
|
# thus what decoding mechanisms must be applied to obtain the media-type
|
441
453
|
# referenced by the Content-Type header field. For more information, see
|
442
|
-
# [
|
454
|
+
# [https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding][1].
|
443
455
|
#
|
444
456
|
#
|
445
457
|
#
|
446
|
-
# [1]:
|
458
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding
|
447
459
|
# @option options [String] :content_language
|
448
460
|
# The language the content is in.
|
449
461
|
# @option options [Integer] :content_length
|
450
462
|
# Size of the body in bytes. This parameter is useful when the size of
|
451
463
|
# the body cannot be determined automatically. For more information, see
|
452
|
-
# [
|
464
|
+
# [https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length][1].
|
453
465
|
#
|
454
466
|
#
|
455
467
|
#
|
456
|
-
# [1]:
|
468
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length
|
457
469
|
# @option options [String] :content_md5
|
458
470
|
# The base64-encoded 128-bit MD5 digest of the message (without the
|
459
471
|
# headers) according to RFC 1864. This header can be used as a message
|
@@ -469,11 +481,11 @@ module Aws::S3
|
|
469
481
|
# @option options [String] :content_type
|
470
482
|
# A standard MIME type describing the format of the contents. For more
|
471
483
|
# information, see
|
472
|
-
# [
|
484
|
+
# [https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type][1].
|
473
485
|
#
|
474
486
|
#
|
475
487
|
#
|
476
|
-
# [1]:
|
488
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
477
489
|
# @option options [String] :checksum_algorithm
|
478
490
|
# Indicates the algorithm used to create the checksum for the object
|
479
491
|
# when using the SDK. This header will not provide any additional
|
@@ -532,11 +544,11 @@ module Aws::S3
|
|
532
544
|
# @option options [Time,DateTime,Date,Integer,String] :expires
|
533
545
|
# The date and time at which the object is no longer cacheable. For more
|
534
546
|
# information, see
|
535
|
-
# [
|
547
|
+
# [https://www.rfc-editor.org/rfc/rfc7234#section-5.3][1].
|
536
548
|
#
|
537
549
|
#
|
538
550
|
#
|
539
|
-
# [1]:
|
551
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7234#section-5.3
|
540
552
|
# @option options [String] :grant_full_control
|
541
553
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
542
554
|
# object.
|
@@ -560,7 +572,7 @@ module Aws::S3
|
|
560
572
|
# A map of metadata to store with the object in S3.
|
561
573
|
# @option options [String] :server_side_encryption
|
562
574
|
# The server-side encryption algorithm used when storing this object in
|
563
|
-
# Amazon S3 (for example, AES256, aws:kms).
|
575
|
+
# Amazon S3 (for example, AES256, `aws:kms`).
|
564
576
|
# @option options [String] :storage_class
|
565
577
|
# By default, Amazon S3 uses the STANDARD Storage Class to store newly
|
566
578
|
# created objects. The STANDARD storage class provides high durability
|
@@ -611,9 +623,9 @@ module Aws::S3
|
|
611
623
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
612
624
|
# ensure that the encryption key was transmitted without error.
|
613
625
|
# @option options [String] :ssekms_key_id
|
614
|
-
# If `x-amz-server-side-encryption`
|
615
|
-
#
|
616
|
-
#
|
626
|
+
# If `x-amz-server-side-encryption` has a valid value of `aws:kms`, this
|
627
|
+
# header specifies the ID of the Amazon Web Services Key Management
|
628
|
+
# Service (Amazon Web Services KMS) symmetric encryption customer
|
617
629
|
# managed key that was used for the object. If you specify
|
618
630
|
# `x-amz-server-side-encryption:aws:kms`, but do not provide`
|
619
631
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
@@ -623,7 +635,10 @@ module Aws::S3
|
|
623
635
|
# @option options [String] :ssekms_encryption_context
|
624
636
|
# Specifies the Amazon Web Services KMS Encryption Context to use for
|
625
637
|
# object encryption. The value of this header is a base64-encoded UTF-8
|
626
|
-
# string holding JSON with the encryption context key-value pairs.
|
638
|
+
# string holding JSON with the encryption context key-value pairs. This
|
639
|
+
# value is stored as object metadata and automatically gets passed on to
|
640
|
+
# Amazon Web Services KMS for future `GetObject` or `CopyObject`
|
641
|
+
# operations on this object.
|
627
642
|
# @option options [Boolean] :bucket_key_enabled
|
628
643
|
# Specifies whether Amazon S3 should use an S3 Bucket Key for object
|
629
644
|
# encryption with server-side encryption using AWS KMS (SSE-KMS).
|
@@ -664,7 +679,9 @@ module Aws::S3
|
|
664
679
|
# @return [Object]
|
665
680
|
def put_object(options = {})
|
666
681
|
options = options.merge(bucket: @name)
|
667
|
-
|
682
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
683
|
+
@client.put_object(options)
|
684
|
+
end
|
668
685
|
Object.new(
|
669
686
|
bucket_name: @name,
|
670
687
|
key: options[:key],
|
@@ -773,7 +790,9 @@ module Aws::S3
|
|
773
790
|
def multipart_uploads(options = {})
|
774
791
|
batches = Enumerator.new do |y|
|
775
792
|
options = options.merge(bucket: @name)
|
776
|
-
resp =
|
793
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
794
|
+
@client.list_multipart_uploads(options)
|
795
|
+
end
|
777
796
|
resp.each_page do |page|
|
778
797
|
batch = []
|
779
798
|
page.data.uploads.each do |u|
|
@@ -853,7 +872,9 @@ module Aws::S3
|
|
853
872
|
def object_versions(options = {})
|
854
873
|
batches = Enumerator.new do |y|
|
855
874
|
options = options.merge(bucket: @name)
|
856
|
-
resp =
|
875
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
876
|
+
@client.list_object_versions(options)
|
877
|
+
end
|
857
878
|
resp.each_page do |page|
|
858
879
|
batch = []
|
859
880
|
page.data.versions_delete_markers.each do |v|
|
@@ -909,7 +930,9 @@ module Aws::S3
|
|
909
930
|
def objects(options = {})
|
910
931
|
batches = Enumerator.new do |y|
|
911
932
|
options = options.merge(bucket: @name)
|
912
|
-
resp =
|
933
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
934
|
+
@client.list_objects_v2(options)
|
935
|
+
end
|
913
936
|
resp.each_page do |page|
|
914
937
|
batch = []
|
915
938
|
page.data.contents.each do |c|
|
@@ -60,7 +60,9 @@ module Aws::S3
|
|
60
60
|
#
|
61
61
|
# @return [self]
|
62
62
|
def load
|
63
|
-
resp =
|
63
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
64
|
+
@client.get_bucket_acl(bucket: @bucket_name)
|
65
|
+
end
|
64
66
|
@data = resp.data
|
65
67
|
self
|
66
68
|
end
|
@@ -175,7 +177,9 @@ module Aws::S3
|
|
175
177
|
:retry
|
176
178
|
end
|
177
179
|
end
|
178
|
-
Aws::
|
180
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
181
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
182
|
+
end
|
179
183
|
end
|
180
184
|
|
181
185
|
# @!group Actions
|
@@ -265,7 +269,9 @@ module Aws::S3
|
|
265
269
|
# @return [EmptyStructure]
|
266
270
|
def put(options = {})
|
267
271
|
options = options.merge(bucket: @bucket_name)
|
268
|
-
resp =
|
272
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
273
|
+
@client.put_bucket_acl(options)
|
274
|
+
end
|
269
275
|
resp.data
|
270
276
|
end
|
271
277
|
|
@@ -55,7 +55,9 @@ module Aws::S3
|
|
55
55
|
#
|
56
56
|
# @return [self]
|
57
57
|
def load
|
58
|
-
resp =
|
58
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
59
|
+
@client.get_bucket_cors(bucket: @bucket_name)
|
60
|
+
end
|
59
61
|
@data = resp.data
|
60
62
|
self
|
61
63
|
end
|
@@ -170,7 +172,9 @@ module Aws::S3
|
|
170
172
|
:retry
|
171
173
|
end
|
172
174
|
end
|
173
|
-
Aws::
|
175
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
176
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
177
|
+
end
|
174
178
|
end
|
175
179
|
|
176
180
|
# @!group Actions
|
@@ -188,7 +192,9 @@ module Aws::S3
|
|
188
192
|
# @return [EmptyStructure]
|
189
193
|
def delete(options = {})
|
190
194
|
options = options.merge(bucket: @bucket_name)
|
191
|
-
resp =
|
195
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
196
|
+
@client.delete_bucket_cors(options)
|
197
|
+
end
|
192
198
|
resp.data
|
193
199
|
end
|
194
200
|
|
@@ -254,7 +260,9 @@ module Aws::S3
|
|
254
260
|
# @return [EmptyStructure]
|
255
261
|
def put(options = {})
|
256
262
|
options = options.merge(bucket: @bucket_name)
|
257
|
-
resp =
|
263
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
264
|
+
@client.put_bucket_cors(options)
|
265
|
+
end
|
258
266
|
resp.data
|
259
267
|
end
|
260
268
|
|
@@ -54,7 +54,9 @@ module Aws::S3
|
|
54
54
|
#
|
55
55
|
# @return [self]
|
56
56
|
def load
|
57
|
-
resp =
|
57
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
58
|
+
@client.get_bucket_lifecycle(bucket: @bucket_name)
|
59
|
+
end
|
58
60
|
@data = resp.data
|
59
61
|
self
|
60
62
|
end
|
@@ -169,7 +171,9 @@ module Aws::S3
|
|
169
171
|
:retry
|
170
172
|
end
|
171
173
|
end
|
172
|
-
Aws::
|
174
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
175
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
176
|
+
end
|
173
177
|
end
|
174
178
|
|
175
179
|
# @!group Actions
|
@@ -187,7 +191,9 @@ module Aws::S3
|
|
187
191
|
# @return [EmptyStructure]
|
188
192
|
def delete(options = {})
|
189
193
|
options = options.merge(bucket: @bucket_name)
|
190
|
-
resp =
|
194
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
195
|
+
@client.delete_bucket_lifecycle(options)
|
196
|
+
end
|
191
197
|
resp.data
|
192
198
|
end
|
193
199
|
|
@@ -257,7 +263,9 @@ module Aws::S3
|
|
257
263
|
# @return [EmptyStructure]
|
258
264
|
def put(options = {})
|
259
265
|
options = options.merge(bucket: @bucket_name)
|
260
|
-
resp =
|
266
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
267
|
+
@client.put_bucket_lifecycle(options)
|
268
|
+
end
|
261
269
|
resp.data
|
262
270
|
end
|
263
271
|
|
@@ -54,7 +54,9 @@ module Aws::S3
|
|
54
54
|
#
|
55
55
|
# @return [self]
|
56
56
|
def load
|
57
|
-
resp =
|
57
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
58
|
+
@client.get_bucket_lifecycle_configuration(bucket: @bucket_name)
|
59
|
+
end
|
58
60
|
@data = resp.data
|
59
61
|
self
|
60
62
|
end
|
@@ -169,7 +171,9 @@ module Aws::S3
|
|
169
171
|
:retry
|
170
172
|
end
|
171
173
|
end
|
172
|
-
Aws::
|
174
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
175
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
176
|
+
end
|
173
177
|
end
|
174
178
|
|
175
179
|
# @!group Actions
|
@@ -187,7 +191,9 @@ module Aws::S3
|
|
187
191
|
# @return [EmptyStructure]
|
188
192
|
def delete(options = {})
|
189
193
|
options = options.merge(bucket: @bucket_name)
|
190
|
-
resp =
|
194
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
195
|
+
@client.delete_bucket_lifecycle(options)
|
196
|
+
end
|
191
197
|
resp.data
|
192
198
|
end
|
193
199
|
|
@@ -277,7 +283,9 @@ module Aws::S3
|
|
277
283
|
# @return [EmptyStructure]
|
278
284
|
def put(options = {})
|
279
285
|
options = options.merge(bucket: @bucket_name)
|
280
|
-
resp =
|
286
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
287
|
+
@client.put_bucket_lifecycle_configuration(options)
|
288
|
+
end
|
281
289
|
resp.data
|
282
290
|
end
|
283
291
|
|
@@ -60,7 +60,9 @@ module Aws::S3
|
|
60
60
|
#
|
61
61
|
# @return [self]
|
62
62
|
def load
|
63
|
-
resp =
|
63
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
64
|
+
@client.get_bucket_logging(bucket: @bucket_name)
|
65
|
+
end
|
64
66
|
@data = resp.data
|
65
67
|
self
|
66
68
|
end
|
@@ -175,7 +177,9 @@ module Aws::S3
|
|
175
177
|
:retry
|
176
178
|
end
|
177
179
|
end
|
178
|
-
Aws::
|
180
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
181
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
182
|
+
end
|
179
183
|
end
|
180
184
|
|
181
185
|
# @!group Actions
|
@@ -236,7 +240,9 @@ module Aws::S3
|
|
236
240
|
# @return [EmptyStructure]
|
237
241
|
def put(options = {})
|
238
242
|
options = options.merge(bucket: @bucket_name)
|
239
|
-
resp =
|
243
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
244
|
+
@client.put_bucket_logging(options)
|
245
|
+
end
|
240
246
|
resp.data
|
241
247
|
end
|
242
248
|
|
@@ -75,7 +75,9 @@ module Aws::S3
|
|
75
75
|
#
|
76
76
|
# @return [self]
|
77
77
|
def load
|
78
|
-
resp =
|
78
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
79
|
+
@client.get_bucket_notification_configuration(bucket: @bucket_name)
|
80
|
+
end
|
79
81
|
@data = resp.data
|
80
82
|
self
|
81
83
|
end
|
@@ -190,7 +192,9 @@ module Aws::S3
|
|
190
192
|
:retry
|
191
193
|
end
|
192
194
|
end
|
193
|
-
Aws::
|
195
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
196
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
197
|
+
end
|
194
198
|
end
|
195
199
|
|
196
200
|
# @!group Actions
|
@@ -271,7 +275,9 @@ module Aws::S3
|
|
271
275
|
# @return [EmptyStructure]
|
272
276
|
def put(options = {})
|
273
277
|
options = options.merge(bucket: @bucket_name)
|
274
|
-
resp =
|
278
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
279
|
+
@client.put_bucket_notification_configuration(options)
|
280
|
+
end
|
275
281
|
resp.data
|
276
282
|
end
|
277
283
|
|
@@ -54,7 +54,9 @@ module Aws::S3
|
|
54
54
|
#
|
55
55
|
# @return [self]
|
56
56
|
def load
|
57
|
-
resp =
|
57
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
58
|
+
@client.get_bucket_policy(bucket: @bucket_name)
|
59
|
+
end
|
58
60
|
@data = resp.data
|
59
61
|
self
|
60
62
|
end
|
@@ -169,7 +171,9 @@ module Aws::S3
|
|
169
171
|
:retry
|
170
172
|
end
|
171
173
|
end
|
172
|
-
Aws::
|
174
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
175
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
176
|
+
end
|
173
177
|
end
|
174
178
|
|
175
179
|
# @!group Actions
|
@@ -187,7 +191,9 @@ module Aws::S3
|
|
187
191
|
# @return [EmptyStructure]
|
188
192
|
def delete(options = {})
|
189
193
|
options = options.merge(bucket: @bucket_name)
|
190
|
-
resp =
|
194
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
195
|
+
@client.delete_bucket_policy(options)
|
196
|
+
end
|
191
197
|
resp.data
|
192
198
|
end
|
193
199
|
|
@@ -234,7 +240,9 @@ module Aws::S3
|
|
234
240
|
# @return [EmptyStructure]
|
235
241
|
def put(options = {})
|
236
242
|
options = options.merge(bucket: @bucket_name)
|
237
|
-
resp =
|
243
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
244
|
+
@client.put_bucket_policy(options)
|
245
|
+
end
|
238
246
|
resp.data
|
239
247
|
end
|
240
248
|
|
@@ -54,7 +54,9 @@ module Aws::S3
|
|
54
54
|
#
|
55
55
|
# @return [self]
|
56
56
|
def load
|
57
|
-
resp =
|
57
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
58
|
+
@client.get_bucket_request_payment(bucket: @bucket_name)
|
59
|
+
end
|
58
60
|
@data = resp.data
|
59
61
|
self
|
60
62
|
end
|
@@ -169,7 +171,9 @@ module Aws::S3
|
|
169
171
|
:retry
|
170
172
|
end
|
171
173
|
end
|
172
|
-
Aws::
|
174
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
175
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
176
|
+
end
|
173
177
|
end
|
174
178
|
|
175
179
|
# @!group Actions
|
@@ -221,7 +225,9 @@ module Aws::S3
|
|
221
225
|
# @return [EmptyStructure]
|
222
226
|
def put(options = {})
|
223
227
|
options = options.merge(bucket: @bucket_name)
|
224
|
-
resp =
|
228
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
229
|
+
@client.put_bucket_request_payment(options)
|
230
|
+
end
|
225
231
|
resp.data
|
226
232
|
end
|
227
233
|
|
@@ -54,7 +54,9 @@ module Aws::S3
|
|
54
54
|
#
|
55
55
|
# @return [self]
|
56
56
|
def load
|
57
|
-
resp =
|
57
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
58
|
+
@client.get_bucket_tagging(bucket: @bucket_name)
|
59
|
+
end
|
58
60
|
@data = resp.data
|
59
61
|
self
|
60
62
|
end
|
@@ -169,7 +171,9 @@ module Aws::S3
|
|
169
171
|
:retry
|
170
172
|
end
|
171
173
|
end
|
172
|
-
Aws::
|
174
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
175
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
176
|
+
end
|
173
177
|
end
|
174
178
|
|
175
179
|
# @!group Actions
|
@@ -187,7 +191,9 @@ module Aws::S3
|
|
187
191
|
# @return [EmptyStructure]
|
188
192
|
def delete(options = {})
|
189
193
|
options = options.merge(bucket: @bucket_name)
|
190
|
-
resp =
|
194
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
195
|
+
@client.delete_bucket_tagging(options)
|
196
|
+
end
|
191
197
|
resp.data
|
192
198
|
end
|
193
199
|
|
@@ -243,7 +249,9 @@ module Aws::S3
|
|
243
249
|
# @return [EmptyStructure]
|
244
250
|
def put(options = {})
|
245
251
|
options = options.merge(bucket: @bucket_name)
|
246
|
-
resp =
|
252
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
253
|
+
@client.put_bucket_tagging(options)
|
254
|
+
end
|
247
255
|
resp.data
|
248
256
|
end
|
249
257
|
|
@@ -63,7 +63,9 @@ module Aws::S3
|
|
63
63
|
#
|
64
64
|
# @return [self]
|
65
65
|
def load
|
66
|
-
resp =
|
66
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
67
|
+
@client.get_bucket_versioning(bucket: @bucket_name)
|
68
|
+
end
|
67
69
|
@data = resp.data
|
68
70
|
self
|
69
71
|
end
|
@@ -178,7 +180,9 @@ module Aws::S3
|
|
178
180
|
:retry
|
179
181
|
end
|
180
182
|
end
|
181
|
-
Aws::
|
183
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
184
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
185
|
+
end
|
182
186
|
end
|
183
187
|
|
184
188
|
# @!group Actions
|
@@ -235,7 +239,9 @@ module Aws::S3
|
|
235
239
|
status: "Enabled"
|
236
240
|
}
|
237
241
|
)
|
238
|
-
resp =
|
242
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
243
|
+
@client.put_bucket_versioning(options)
|
244
|
+
end
|
239
245
|
resp.data
|
240
246
|
end
|
241
247
|
|
@@ -292,7 +298,9 @@ module Aws::S3
|
|
292
298
|
# @return [EmptyStructure]
|
293
299
|
def put(options = {})
|
294
300
|
options = options.merge(bucket: @bucket_name)
|
295
|
-
resp =
|
301
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
302
|
+
@client.put_bucket_versioning(options)
|
303
|
+
end
|
296
304
|
resp.data
|
297
305
|
end
|
298
306
|
|
@@ -348,7 +356,9 @@ module Aws::S3
|
|
348
356
|
status: "Suspended"
|
349
357
|
}
|
350
358
|
)
|
351
|
-
resp =
|
359
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
360
|
+
@client.put_bucket_versioning(options)
|
361
|
+
end
|
352
362
|
resp.data
|
353
363
|
end
|
354
364
|
|