aws-sdk-s3 1.141.0 → 1.142.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/client.rb +109 -109
- 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: af737f00129e002bae0251080e68a33bea5125cadfde5cd32b1c6e46c8738ae6
|
4
|
+
data.tar.gz: c55a0b9366c0ee242828f16bfc5380d937519e714d51225bf09ff731f4efc6d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 735ffd4679644479901118bdbc5b417df986c9025e7efabfa17acd464e9c7681b7492ac7dbdd6da7e28ac7f7cf47d2b69756b2010d4383fd9413aad5c4c1d97b
|
7
|
+
data.tar.gz: b304e79fe8582c8ef1b6b4a4f4e96afef8cd02b90e6af81b6eb64d877aa0772e65b993cd2c3dacbae7383a882f9804a4e7f93486fbb70c02ad1154314a3402d5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.142.0
|
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -2277,33 +2277,33 @@ module Aws::S3
|
|
2277
2277
|
# * {Types::CreateBucketOutput#location #location} => String
|
2278
2278
|
#
|
2279
2279
|
#
|
2280
|
-
# @example Example: To create a bucket
|
2280
|
+
# @example Example: To create a bucket
|
2281
2281
|
#
|
2282
|
-
# # The following example creates a bucket.
|
2282
|
+
# # The following example creates a bucket.
|
2283
2283
|
#
|
2284
2284
|
# resp = client.create_bucket({
|
2285
2285
|
# bucket: "examplebucket",
|
2286
|
-
# create_bucket_configuration: {
|
2287
|
-
# location_constraint: "eu-west-1",
|
2288
|
-
# },
|
2289
2286
|
# })
|
2290
2287
|
#
|
2291
2288
|
# resp.to_h outputs the following:
|
2292
2289
|
# {
|
2293
|
-
# location: "
|
2290
|
+
# location: "/examplebucket",
|
2294
2291
|
# }
|
2295
2292
|
#
|
2296
|
-
# @example Example: To create a bucket
|
2293
|
+
# @example Example: To create a bucket in a specific region
|
2297
2294
|
#
|
2298
|
-
# # The following example creates a bucket.
|
2295
|
+
# # The following example creates a bucket. The request specifies an AWS region where to create the bucket.
|
2299
2296
|
#
|
2300
2297
|
# resp = client.create_bucket({
|
2301
2298
|
# bucket: "examplebucket",
|
2299
|
+
# create_bucket_configuration: {
|
2300
|
+
# location_constraint: "eu-west-1",
|
2301
|
+
# },
|
2302
2302
|
# })
|
2303
2303
|
#
|
2304
2304
|
# resp.to_h outputs the following:
|
2305
2305
|
# {
|
2306
|
-
# location: "/
|
2306
|
+
# location: "http://examplebucket.<Region>.s3.amazonaws.com/",
|
2307
2307
|
# }
|
2308
2308
|
#
|
2309
2309
|
# @example Request syntax with placeholder values
|
@@ -4423,6 +4423,15 @@ module Aws::S3
|
|
4423
4423
|
# * {Types::DeleteObjectOutput#request_charged #request_charged} => String
|
4424
4424
|
#
|
4425
4425
|
#
|
4426
|
+
# @example Example: To delete an object (from a non-versioned bucket)
|
4427
|
+
#
|
4428
|
+
# # The following example deletes an object from a non-versioned bucket.
|
4429
|
+
#
|
4430
|
+
# resp = client.delete_object({
|
4431
|
+
# bucket: "ExampleBucket",
|
4432
|
+
# key: "HappyFace.jpg",
|
4433
|
+
# })
|
4434
|
+
#
|
4426
4435
|
# @example Example: To delete an object
|
4427
4436
|
#
|
4428
4437
|
# # The following example deletes an object from an S3 bucket.
|
@@ -4436,15 +4445,6 @@ module Aws::S3
|
|
4436
4445
|
# {
|
4437
4446
|
# }
|
4438
4447
|
#
|
4439
|
-
# @example Example: To delete an object (from a non-versioned bucket)
|
4440
|
-
#
|
4441
|
-
# # The following example deletes an object from a non-versioned bucket.
|
4442
|
-
#
|
4443
|
-
# resp = client.delete_object({
|
4444
|
-
# bucket: "ExampleBucket",
|
4445
|
-
# key: "HappyFace.jpg",
|
4446
|
-
# })
|
4447
|
-
#
|
4448
4448
|
# @example Request syntax with placeholder values
|
4449
4449
|
#
|
4450
4450
|
# resp = client.delete_object({
|
@@ -7626,49 +7626,49 @@ module Aws::S3
|
|
7626
7626
|
# * {Types::GetObjectOutput#object_lock_legal_hold_status #object_lock_legal_hold_status} => String
|
7627
7627
|
#
|
7628
7628
|
#
|
7629
|
-
# @example Example: To retrieve an object
|
7629
|
+
# @example Example: To retrieve a byte range of an object
|
7630
7630
|
#
|
7631
|
-
# # The following example retrieves an object for an S3 bucket.
|
7631
|
+
# # The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a
|
7632
|
+
# # specific byte range.
|
7632
7633
|
#
|
7633
7634
|
# resp = client.get_object({
|
7634
7635
|
# bucket: "examplebucket",
|
7635
|
-
# key: "
|
7636
|
+
# key: "SampleFile.txt",
|
7637
|
+
# range: "bytes=0-9",
|
7636
7638
|
# })
|
7637
7639
|
#
|
7638
7640
|
# resp.to_h outputs the following:
|
7639
7641
|
# {
|
7640
7642
|
# accept_ranges: "bytes",
|
7641
|
-
# content_length:
|
7642
|
-
#
|
7643
|
-
#
|
7644
|
-
#
|
7643
|
+
# content_length: 10,
|
7644
|
+
# content_range: "bytes 0-9/43",
|
7645
|
+
# content_type: "text/plain",
|
7646
|
+
# etag: "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
|
7647
|
+
# last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
|
7645
7648
|
# metadata: {
|
7646
7649
|
# },
|
7647
|
-
# tag_count: 2,
|
7648
7650
|
# version_id: "null",
|
7649
7651
|
# }
|
7650
7652
|
#
|
7651
|
-
# @example Example: To retrieve
|
7653
|
+
# @example Example: To retrieve an object
|
7652
7654
|
#
|
7653
|
-
# # The following example retrieves an object for an S3 bucket.
|
7654
|
-
# # specific byte range.
|
7655
|
+
# # The following example retrieves an object for an S3 bucket.
|
7655
7656
|
#
|
7656
7657
|
# resp = client.get_object({
|
7657
7658
|
# bucket: "examplebucket",
|
7658
|
-
# key: "
|
7659
|
-
# range: "bytes=0-9",
|
7659
|
+
# key: "HappyFace.jpg",
|
7660
7660
|
# })
|
7661
7661
|
#
|
7662
7662
|
# resp.to_h outputs the following:
|
7663
7663
|
# {
|
7664
7664
|
# accept_ranges: "bytes",
|
7665
|
-
# content_length:
|
7666
|
-
#
|
7667
|
-
#
|
7668
|
-
#
|
7669
|
-
# last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
|
7665
|
+
# content_length: 3191,
|
7666
|
+
# content_type: "image/jpeg",
|
7667
|
+
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
7668
|
+
# last_modified: Time.parse("Thu, 15 Dec 2016 01:19:41 GMT"),
|
7670
7669
|
# metadata: {
|
7671
7670
|
# },
|
7671
|
+
# tag_count: 2,
|
7672
7672
|
# version_id: "null",
|
7673
7673
|
# }
|
7674
7674
|
#
|
@@ -10381,97 +10381,97 @@ module Aws::S3
|
|
10381
10381
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10382
10382
|
#
|
10383
10383
|
#
|
10384
|
-
# @example Example:
|
10384
|
+
# @example Example: To list in-progress multipart uploads on a bucket
|
10385
10385
|
#
|
10386
|
-
# # The following example
|
10387
|
-
# # setup of multipart uploads.
|
10386
|
+
# # The following example lists in-progress multipart uploads on a specific bucket.
|
10388
10387
|
#
|
10389
10388
|
# resp = client.list_multipart_uploads({
|
10390
10389
|
# bucket: "examplebucket",
|
10391
|
-
# key_marker: "nextkeyfrompreviousresponse",
|
10392
|
-
# max_uploads: 2,
|
10393
|
-
# upload_id_marker: "valuefrompreviousresponse",
|
10394
10390
|
# })
|
10395
10391
|
#
|
10396
10392
|
# resp.to_h outputs the following:
|
10397
10393
|
# {
|
10398
|
-
# bucket: "acl1",
|
10399
|
-
# is_truncated: true,
|
10400
|
-
# key_marker: "",
|
10401
|
-
# max_uploads: 2,
|
10402
|
-
# next_key_marker: "someobjectkey",
|
10403
|
-
# next_upload_id_marker: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
|
10404
|
-
# upload_id_marker: "",
|
10405
10394
|
# uploads: [
|
10406
10395
|
# {
|
10407
10396
|
# initiated: Time.parse("2014-05-01T05:40:58.000Z"),
|
10408
10397
|
# initiator: {
|
10409
|
-
# display_name: "
|
10398
|
+
# display_name: "display-name",
|
10410
10399
|
# id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10411
10400
|
# },
|
10412
10401
|
# key: "JavaFile",
|
10413
10402
|
# owner: {
|
10414
|
-
# display_name: "
|
10415
|
-
# id: "
|
10403
|
+
# display_name: "display-name",
|
10404
|
+
# id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10416
10405
|
# },
|
10417
10406
|
# storage_class: "STANDARD",
|
10418
|
-
# upload_id: "
|
10407
|
+
# upload_id: "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--",
|
10419
10408
|
# },
|
10420
10409
|
# {
|
10421
10410
|
# initiated: Time.parse("2014-05-01T05:41:27.000Z"),
|
10422
10411
|
# initiator: {
|
10423
|
-
# display_name: "
|
10412
|
+
# display_name: "display-name",
|
10424
10413
|
# id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10425
10414
|
# },
|
10426
10415
|
# key: "JavaFile",
|
10427
10416
|
# owner: {
|
10428
|
-
# display_name: "
|
10417
|
+
# display_name: "display-name",
|
10429
10418
|
# id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10430
10419
|
# },
|
10431
10420
|
# storage_class: "STANDARD",
|
10432
|
-
# upload_id: "
|
10421
|
+
# upload_id: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
|
10433
10422
|
# },
|
10434
10423
|
# ],
|
10435
10424
|
# }
|
10436
10425
|
#
|
10437
|
-
# @example Example:
|
10426
|
+
# @example Example: List next set of multipart uploads when previous result is truncated
|
10438
10427
|
#
|
10439
|
-
# # The following example
|
10428
|
+
# # The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next
|
10429
|
+
# # setup of multipart uploads.
|
10440
10430
|
#
|
10441
10431
|
# resp = client.list_multipart_uploads({
|
10442
10432
|
# bucket: "examplebucket",
|
10433
|
+
# key_marker: "nextkeyfrompreviousresponse",
|
10434
|
+
# max_uploads: 2,
|
10435
|
+
# upload_id_marker: "valuefrompreviousresponse",
|
10443
10436
|
# })
|
10444
10437
|
#
|
10445
10438
|
# resp.to_h outputs the following:
|
10446
10439
|
# {
|
10440
|
+
# bucket: "acl1",
|
10441
|
+
# is_truncated: true,
|
10442
|
+
# key_marker: "",
|
10443
|
+
# max_uploads: 2,
|
10444
|
+
# next_key_marker: "someobjectkey",
|
10445
|
+
# next_upload_id_marker: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
|
10446
|
+
# upload_id_marker: "",
|
10447
10447
|
# uploads: [
|
10448
10448
|
# {
|
10449
10449
|
# initiated: Time.parse("2014-05-01T05:40:58.000Z"),
|
10450
10450
|
# initiator: {
|
10451
|
-
# display_name: "display-name",
|
10451
|
+
# display_name: "ownder-display-name",
|
10452
10452
|
# id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10453
10453
|
# },
|
10454
10454
|
# key: "JavaFile",
|
10455
10455
|
# owner: {
|
10456
|
-
# display_name: "
|
10457
|
-
# id: "
|
10456
|
+
# display_name: "mohanataws",
|
10457
|
+
# id: "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10458
10458
|
# },
|
10459
10459
|
# storage_class: "STANDARD",
|
10460
|
-
# upload_id: "
|
10460
|
+
# upload_id: "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--",
|
10461
10461
|
# },
|
10462
10462
|
# {
|
10463
10463
|
# initiated: Time.parse("2014-05-01T05:41:27.000Z"),
|
10464
10464
|
# initiator: {
|
10465
|
-
# display_name: "display-name",
|
10465
|
+
# display_name: "ownder-display-name",
|
10466
10466
|
# id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10467
10467
|
# },
|
10468
10468
|
# key: "JavaFile",
|
10469
10469
|
# owner: {
|
10470
|
-
# display_name: "display-name",
|
10470
|
+
# display_name: "ownder-display-name",
|
10471
10471
|
# id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
|
10472
10472
|
# },
|
10473
10473
|
# storage_class: "STANDARD",
|
10474
|
-
# upload_id: "
|
10474
|
+
# upload_id: "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
|
10475
10475
|
# },
|
10476
10476
|
# ],
|
10477
10477
|
# }
|
@@ -15342,58 +15342,60 @@ module Aws::S3
|
|
15342
15342
|
# * {Types::PutObjectOutput#request_charged #request_charged} => String
|
15343
15343
|
#
|
15344
15344
|
#
|
15345
|
-
# @example Example: To
|
15345
|
+
# @example Example: To upload an object and specify server-side encryption and object tags
|
15346
15346
|
#
|
15347
|
-
# # The following example
|
15347
|
+
# # The following example uploads an object. The request specifies the optional server-side encryption option. The request
|
15348
|
+
# # also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
|
15348
15349
|
#
|
15349
15350
|
# resp = client.put_object({
|
15350
15351
|
# body: "filetoupload",
|
15351
15352
|
# bucket: "examplebucket",
|
15352
|
-
# key: "
|
15353
|
+
# key: "exampleobject",
|
15354
|
+
# server_side_encryption: "AES256",
|
15355
|
+
# tagging: "key1=value1&key2=value2",
|
15353
15356
|
# })
|
15354
15357
|
#
|
15355
15358
|
# resp.to_h outputs the following:
|
15356
15359
|
# {
|
15357
15360
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
15358
|
-
#
|
15361
|
+
# server_side_encryption: "AES256",
|
15362
|
+
# version_id: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt",
|
15359
15363
|
# }
|
15360
15364
|
#
|
15361
|
-
# @example Example: To
|
15365
|
+
# @example Example: To create an object.
|
15362
15366
|
#
|
15363
|
-
# # The following example
|
15364
|
-
# # syntax. S3 returns VersionId of the newly created object.
|
15367
|
+
# # The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
|
15365
15368
|
#
|
15366
15369
|
# resp = client.put_object({
|
15367
|
-
# body: "
|
15370
|
+
# body: "filetoupload",
|
15368
15371
|
# bucket: "examplebucket",
|
15369
|
-
# key: "
|
15372
|
+
# key: "objectkey",
|
15370
15373
|
# })
|
15371
15374
|
#
|
15372
15375
|
# resp.to_h outputs the following:
|
15373
15376
|
# {
|
15374
15377
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
15375
|
-
# version_id: "
|
15378
|
+
# version_id: "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ",
|
15376
15379
|
# }
|
15377
15380
|
#
|
15378
|
-
# @example Example: To upload object
|
15381
|
+
# @example Example: To upload an object (specify optional headers)
|
15379
15382
|
#
|
15380
|
-
# # The following example
|
15381
|
-
# #
|
15383
|
+
# # The following example uploads an object. The request specifies optional request headers to directs S3 to use specific
|
15384
|
+
# # storage class and use server-side encryption.
|
15382
15385
|
#
|
15383
15386
|
# resp = client.put_object({
|
15384
|
-
# body: "
|
15387
|
+
# body: "HappyFace.jpg",
|
15385
15388
|
# bucket: "examplebucket",
|
15386
|
-
# key: "
|
15387
|
-
#
|
15388
|
-
#
|
15389
|
-
# "metadata2" => "value2",
|
15390
|
-
# },
|
15389
|
+
# key: "HappyFace.jpg",
|
15390
|
+
# server_side_encryption: "AES256",
|
15391
|
+
# storage_class: "STANDARD_IA",
|
15391
15392
|
# })
|
15392
15393
|
#
|
15393
15394
|
# resp.to_h outputs the following:
|
15394
15395
|
# {
|
15395
15396
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
15396
|
-
#
|
15397
|
+
# server_side_encryption: "AES256",
|
15398
|
+
# version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
|
15397
15399
|
# }
|
15398
15400
|
#
|
15399
15401
|
# @example Example: To upload an object and specify optional tags
|
@@ -15414,62 +15416,60 @@ module Aws::S3
|
|
15414
15416
|
# version_id: "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a",
|
15415
15417
|
# }
|
15416
15418
|
#
|
15417
|
-
# @example Example: To upload
|
15419
|
+
# @example Example: To upload object and specify user-defined metadata
|
15418
15420
|
#
|
15419
|
-
# # The following example
|
15420
|
-
# #
|
15421
|
+
# # The following example creates an object. The request also specifies optional metadata. If the bucket is versioning
|
15422
|
+
# # enabled, S3 returns version ID in response.
|
15421
15423
|
#
|
15422
15424
|
# resp = client.put_object({
|
15423
|
-
# body: "
|
15425
|
+
# body: "filetoupload",
|
15424
15426
|
# bucket: "examplebucket",
|
15425
|
-
# key: "
|
15426
|
-
#
|
15427
|
-
#
|
15427
|
+
# key: "exampleobject",
|
15428
|
+
# metadata: {
|
15429
|
+
# "metadata1" => "value1",
|
15430
|
+
# "metadata2" => "value2",
|
15431
|
+
# },
|
15428
15432
|
# })
|
15429
15433
|
#
|
15430
15434
|
# resp.to_h outputs the following:
|
15431
15435
|
# {
|
15432
15436
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
15433
|
-
#
|
15434
|
-
# version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
|
15437
|
+
# version_id: "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0",
|
15435
15438
|
# }
|
15436
15439
|
#
|
15437
|
-
# @example Example: To upload an object and specify
|
15440
|
+
# @example Example: To upload an object and specify canned ACL.
|
15438
15441
|
#
|
15439
|
-
# # The following example uploads
|
15440
|
-
# #
|
15442
|
+
# # The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ
|
15443
|
+
# # access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
|
15441
15444
|
#
|
15442
15445
|
# resp = client.put_object({
|
15446
|
+
# acl: "authenticated-read",
|
15443
15447
|
# body: "filetoupload",
|
15444
15448
|
# bucket: "examplebucket",
|
15445
15449
|
# key: "exampleobject",
|
15446
|
-
# server_side_encryption: "AES256",
|
15447
|
-
# tagging: "key1=value1&key2=value2",
|
15448
15450
|
# })
|
15449
15451
|
#
|
15450
15452
|
# resp.to_h outputs the following:
|
15451
15453
|
# {
|
15452
15454
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
15453
|
-
#
|
15454
|
-
# version_id: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt",
|
15455
|
+
# version_id: "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr",
|
15455
15456
|
# }
|
15456
15457
|
#
|
15457
|
-
# @example Example: To upload an object
|
15458
|
+
# @example Example: To upload an object
|
15458
15459
|
#
|
15459
|
-
# # The following example uploads
|
15460
|
-
# #
|
15460
|
+
# # The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file
|
15461
|
+
# # syntax. S3 returns VersionId of the newly created object.
|
15461
15462
|
#
|
15462
15463
|
# resp = client.put_object({
|
15463
|
-
#
|
15464
|
-
# body: "filetoupload",
|
15464
|
+
# body: "HappyFace.jpg",
|
15465
15465
|
# bucket: "examplebucket",
|
15466
|
-
# key: "
|
15466
|
+
# key: "HappyFace.jpg",
|
15467
15467
|
# })
|
15468
15468
|
#
|
15469
15469
|
# resp.to_h outputs the following:
|
15470
15470
|
# {
|
15471
15471
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
15472
|
-
# version_id: "
|
15472
|
+
# version_id: "tpf3zF08nBplQK1XLOefGskR7mGDwcDk",
|
15473
15473
|
# }
|
15474
15474
|
#
|
15475
15475
|
# @example Streaming a file from disk
|
@@ -18807,7 +18807,7 @@ module Aws::S3
|
|
18807
18807
|
params: params,
|
18808
18808
|
config: config)
|
18809
18809
|
context[:gem_name] = 'aws-sdk-s3'
|
18810
|
-
context[:gem_version] = '1.
|
18810
|
+
context[:gem_version] = '1.142.0'
|
18811
18811
|
Seahorse::Client::Request.new(handlers, context)
|
18812
18812
|
end
|
18813
18813
|
|
data/lib/aws-sdk-s3.rb
CHANGED
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.142.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: 2023-
|
11
|
+
date: 2023-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|