aws-sdk-s3 1.86.2 → 1.87.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/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +104 -104
- data/lib/aws-sdk-s3/client_api.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: 11cd48be59fc8922aabfe4d29d601706183fc5d5ce0b1fb201ae2f59c6f281ab
|
4
|
+
data.tar.gz: 546d8a92a9a561d94d205908d52c005edb5a49d336751ee7954936f9449d7138
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16a5af91aba1ce6e9b4f3d121cbc427e1534a2fb80edb553a7e5e62e5a937877174581ad169c4abd46dd3d32dfdf765d9161f7bc4c907b5f0cf158d44dbd81e3
|
7
|
+
data.tar.gz: 995720b6753b4add059e235f37dea7fe49dbe19038e495260023aa380bfe2544cdb9873dafab1a2c685d9eae3f1eeeacb290480ac149d6624f475ba584519c57
|
data/lib/aws-sdk-s3.rb
CHANGED
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -1418,33 +1418,33 @@ module Aws::S3
|
|
1418
1418
|
# * {Types::CreateBucketOutput#location #location} => String
|
1419
1419
|
#
|
1420
1420
|
#
|
1421
|
-
# @example Example: To create a bucket
|
1421
|
+
# @example Example: To create a bucket
|
1422
1422
|
#
|
1423
|
-
# # The following example creates a bucket.
|
1423
|
+
# # The following example creates a bucket.
|
1424
1424
|
#
|
1425
1425
|
# resp = client.create_bucket({
|
1426
1426
|
# bucket: "examplebucket",
|
1427
|
-
# create_bucket_configuration: {
|
1428
|
-
# location_constraint: "eu-west-1",
|
1429
|
-
# },
|
1430
1427
|
# })
|
1431
1428
|
#
|
1432
1429
|
# resp.to_h outputs the following:
|
1433
1430
|
# {
|
1434
|
-
# location: "
|
1431
|
+
# location: "/examplebucket",
|
1435
1432
|
# }
|
1436
1433
|
#
|
1437
|
-
# @example Example: To create a bucket
|
1434
|
+
# @example Example: To create a bucket in a specific region
|
1438
1435
|
#
|
1439
|
-
# # The following example creates a bucket.
|
1436
|
+
# # The following example creates a bucket. The request specifies an AWS region where to create the bucket.
|
1440
1437
|
#
|
1441
1438
|
# resp = client.create_bucket({
|
1442
1439
|
# bucket: "examplebucket",
|
1440
|
+
# create_bucket_configuration: {
|
1441
|
+
# location_constraint: "eu-west-1",
|
1442
|
+
# },
|
1443
1443
|
# })
|
1444
1444
|
#
|
1445
1445
|
# resp.to_h outputs the following:
|
1446
1446
|
# {
|
1447
|
-
# location: "/
|
1447
|
+
# location: "http://examplebucket.<Region>.s3.amazonaws.com/",
|
1448
1448
|
# }
|
1449
1449
|
#
|
1450
1450
|
# @example Request syntax with placeholder values
|
@@ -2954,35 +2954,35 @@ module Aws::S3
|
|
2954
2954
|
# * {Types::DeleteObjectTaggingOutput#version_id #version_id} => String
|
2955
2955
|
#
|
2956
2956
|
#
|
2957
|
-
# @example Example: To remove tag set from an object
|
2957
|
+
# @example Example: To remove tag set from an object version
|
2958
2958
|
#
|
2959
|
-
# # The following example removes tag set associated with the specified object.
|
2960
|
-
# #
|
2959
|
+
# # The following example removes tag set associated with the specified object version. The request specifies both the
|
2960
|
+
# # object key and object version.
|
2961
2961
|
#
|
2962
2962
|
# resp = client.delete_object_tagging({
|
2963
2963
|
# bucket: "examplebucket",
|
2964
2964
|
# key: "HappyFace.jpg",
|
2965
|
+
# version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
|
2965
2966
|
# })
|
2966
2967
|
#
|
2967
2968
|
# resp.to_h outputs the following:
|
2968
2969
|
# {
|
2969
|
-
# version_id: "
|
2970
|
+
# version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
|
2970
2971
|
# }
|
2971
2972
|
#
|
2972
|
-
# @example Example: To remove tag set from an object
|
2973
|
+
# @example Example: To remove tag set from an object
|
2973
2974
|
#
|
2974
|
-
# # The following example removes tag set associated with the specified object
|
2975
|
-
# #
|
2975
|
+
# # The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the
|
2976
|
+
# # operation removes tag set from the latest object version.
|
2976
2977
|
#
|
2977
2978
|
# resp = client.delete_object_tagging({
|
2978
2979
|
# bucket: "examplebucket",
|
2979
2980
|
# key: "HappyFace.jpg",
|
2980
|
-
# version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
|
2981
2981
|
# })
|
2982
2982
|
#
|
2983
2983
|
# resp.to_h outputs the following:
|
2984
2984
|
# {
|
2985
|
-
# version_id: "
|
2985
|
+
# version_id: "null",
|
2986
2986
|
# }
|
2987
2987
|
#
|
2988
2988
|
# @example Request syntax with placeholder values
|
@@ -3122,20 +3122,22 @@ module Aws::S3
|
|
3122
3122
|
# * {Types::DeleteObjectsOutput#errors #errors} => Array<Types::Error>
|
3123
3123
|
#
|
3124
3124
|
#
|
3125
|
-
# @example Example: To delete multiple
|
3125
|
+
# @example Example: To delete multiple object versions from a versioned bucket
|
3126
3126
|
#
|
3127
|
-
# # The following example deletes objects from a bucket. The
|
3128
|
-
# #
|
3127
|
+
# # The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object
|
3128
|
+
# # versions and returns the key and versions of deleted objects in the response.
|
3129
3129
|
#
|
3130
3130
|
# resp = client.delete_objects({
|
3131
3131
|
# bucket: "examplebucket",
|
3132
3132
|
# delete: {
|
3133
3133
|
# objects: [
|
3134
3134
|
# {
|
3135
|
-
# key: "
|
3135
|
+
# key: "HappyFace.jpg",
|
3136
|
+
# version_id: "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b",
|
3136
3137
|
# },
|
3137
3138
|
# {
|
3138
|
-
# key: "
|
3139
|
+
# key: "HappyFace.jpg",
|
3140
|
+
# version_id: "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd",
|
3139
3141
|
# },
|
3140
3142
|
# ],
|
3141
3143
|
# quiet: false,
|
@@ -3146,34 +3148,30 @@ module Aws::S3
|
|
3146
3148
|
# {
|
3147
3149
|
# deleted: [
|
3148
3150
|
# {
|
3149
|
-
#
|
3150
|
-
#
|
3151
|
-
# key: "objectkey1",
|
3151
|
+
# key: "HappyFace.jpg",
|
3152
|
+
# version_id: "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd",
|
3152
3153
|
# },
|
3153
3154
|
# {
|
3154
|
-
#
|
3155
|
-
#
|
3156
|
-
# key: "objectkey2",
|
3155
|
+
# key: "HappyFace.jpg",
|
3156
|
+
# version_id: "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b",
|
3157
3157
|
# },
|
3158
3158
|
# ],
|
3159
3159
|
# }
|
3160
3160
|
#
|
3161
|
-
# @example Example: To delete multiple
|
3161
|
+
# @example Example: To delete multiple objects from a versioned bucket
|
3162
3162
|
#
|
3163
|
-
# # The following example deletes objects from a bucket. The
|
3164
|
-
# #
|
3163
|
+
# # The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the
|
3164
|
+
# # object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.
|
3165
3165
|
#
|
3166
3166
|
# resp = client.delete_objects({
|
3167
3167
|
# bucket: "examplebucket",
|
3168
3168
|
# delete: {
|
3169
3169
|
# objects: [
|
3170
3170
|
# {
|
3171
|
-
# key: "
|
3172
|
-
# version_id: "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b",
|
3171
|
+
# key: "objectkey1",
|
3173
3172
|
# },
|
3174
3173
|
# {
|
3175
|
-
# key: "
|
3176
|
-
# version_id: "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd",
|
3174
|
+
# key: "objectkey2",
|
3177
3175
|
# },
|
3178
3176
|
# ],
|
3179
3177
|
# quiet: false,
|
@@ -3184,12 +3182,14 @@ module Aws::S3
|
|
3184
3182
|
# {
|
3185
3183
|
# deleted: [
|
3186
3184
|
# {
|
3187
|
-
#
|
3188
|
-
#
|
3185
|
+
# delete_marker: true,
|
3186
|
+
# delete_marker_version_id: "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
|
3187
|
+
# key: "objectkey1",
|
3189
3188
|
# },
|
3190
3189
|
# {
|
3191
|
-
#
|
3192
|
-
#
|
3190
|
+
# delete_marker: true,
|
3191
|
+
# delete_marker_version_id: "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
|
3192
|
+
# key: "objectkey2",
|
3193
3193
|
# },
|
3194
3194
|
# ],
|
3195
3195
|
# }
|
@@ -5371,49 +5371,49 @@ module Aws::S3
|
|
5371
5371
|
# * {Types::GetObjectOutput#object_lock_legal_hold_status #object_lock_legal_hold_status} => String
|
5372
5372
|
#
|
5373
5373
|
#
|
5374
|
-
# @example Example: To retrieve an object
|
5374
|
+
# @example Example: To retrieve a byte range of an object
|
5375
5375
|
#
|
5376
|
-
# # The following example retrieves an object for an S3 bucket.
|
5376
|
+
# # The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a
|
5377
|
+
# # specific byte range.
|
5377
5378
|
#
|
5378
5379
|
# resp = client.get_object({
|
5379
5380
|
# bucket: "examplebucket",
|
5380
|
-
# key: "
|
5381
|
+
# key: "SampleFile.txt",
|
5382
|
+
# range: "bytes=0-9",
|
5381
5383
|
# })
|
5382
5384
|
#
|
5383
5385
|
# resp.to_h outputs the following:
|
5384
5386
|
# {
|
5385
5387
|
# accept_ranges: "bytes",
|
5386
|
-
# content_length:
|
5387
|
-
#
|
5388
|
-
#
|
5389
|
-
#
|
5388
|
+
# content_length: 10,
|
5389
|
+
# content_range: "bytes 0-9/43",
|
5390
|
+
# content_type: "text/plain",
|
5391
|
+
# etag: "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
|
5392
|
+
# last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
|
5390
5393
|
# metadata: {
|
5391
5394
|
# },
|
5392
|
-
# tag_count: 2,
|
5393
5395
|
# version_id: "null",
|
5394
5396
|
# }
|
5395
5397
|
#
|
5396
|
-
# @example Example: To retrieve
|
5398
|
+
# @example Example: To retrieve an object
|
5397
5399
|
#
|
5398
|
-
# # The following example retrieves an object for an S3 bucket.
|
5399
|
-
# # specific byte range.
|
5400
|
+
# # The following example retrieves an object for an S3 bucket.
|
5400
5401
|
#
|
5401
5402
|
# resp = client.get_object({
|
5402
5403
|
# bucket: "examplebucket",
|
5403
|
-
# key: "
|
5404
|
-
# range: "bytes=0-9",
|
5404
|
+
# key: "HappyFace.jpg",
|
5405
5405
|
# })
|
5406
5406
|
#
|
5407
5407
|
# resp.to_h outputs the following:
|
5408
5408
|
# {
|
5409
5409
|
# accept_ranges: "bytes",
|
5410
|
-
# content_length:
|
5411
|
-
#
|
5412
|
-
#
|
5413
|
-
#
|
5414
|
-
# last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
|
5410
|
+
# content_length: 3191,
|
5411
|
+
# content_type: "image/jpeg",
|
5412
|
+
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
5413
|
+
# last_modified: Time.parse("Thu, 15 Dec 2016 01:19:41 GMT"),
|
5415
5414
|
# metadata: {
|
5416
5415
|
# },
|
5416
|
+
# tag_count: 2,
|
5417
5417
|
# version_id: "null",
|
5418
5418
|
# }
|
5419
5419
|
#
|
@@ -11013,134 +11013,134 @@ module Aws::S3
|
|
11013
11013
|
# * {Types::PutObjectOutput#request_charged #request_charged} => String
|
11014
11014
|
#
|
11015
11015
|
#
|
11016
|
-
# @example Example: To upload an object
|
11016
|
+
# @example Example: To upload an object and specify server-side encryption and object tags
|
11017
11017
|
#
|
11018
|
-
# # The following example uploads
|
11019
|
-
# #
|
11018
|
+
# # The following example uploads and object. The request specifies the optional server-side encryption option. The request
|
11019
|
+
# # also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
|
11020
11020
|
#
|
11021
11021
|
# resp = client.put_object({
|
11022
|
-
# body: "
|
11022
|
+
# body: "filetoupload",
|
11023
11023
|
# bucket: "examplebucket",
|
11024
|
-
# key: "
|
11024
|
+
# key: "exampleobject",
|
11025
|
+
# server_side_encryption: "AES256",
|
11026
|
+
# tagging: "key1=value1&key2=value2",
|
11025
11027
|
# })
|
11026
11028
|
#
|
11027
11029
|
# resp.to_h outputs the following:
|
11028
11030
|
# {
|
11029
11031
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
11030
|
-
#
|
11032
|
+
# server_side_encryption: "AES256",
|
11033
|
+
# version_id: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt",
|
11031
11034
|
# }
|
11032
11035
|
#
|
11033
|
-
# @example Example: To
|
11036
|
+
# @example Example: To create an object.
|
11034
11037
|
#
|
11035
|
-
# # The following example
|
11036
|
-
# # access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
|
11038
|
+
# # The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
|
11037
11039
|
#
|
11038
11040
|
# resp = client.put_object({
|
11039
|
-
# acl: "authenticated-read",
|
11040
11041
|
# body: "filetoupload",
|
11041
11042
|
# bucket: "examplebucket",
|
11042
|
-
# key: "
|
11043
|
+
# key: "objectkey",
|
11043
11044
|
# })
|
11044
11045
|
#
|
11045
11046
|
# resp.to_h outputs the following:
|
11046
11047
|
# {
|
11047
11048
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
11048
|
-
# version_id: "
|
11049
|
+
# version_id: "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ",
|
11049
11050
|
# }
|
11050
11051
|
#
|
11051
|
-
# @example Example: To upload an object
|
11052
|
+
# @example Example: To upload an object and specify optional tags
|
11052
11053
|
#
|
11053
|
-
# # The following example uploads an object. The request specifies optional
|
11054
|
-
# #
|
11054
|
+
# # The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore
|
11055
|
+
# # S3 returns version ID of the newly created object.
|
11055
11056
|
#
|
11056
11057
|
# resp = client.put_object({
|
11057
|
-
# body: "HappyFace.jpg",
|
11058
|
+
# body: "c:\\HappyFace.jpg",
|
11058
11059
|
# bucket: "examplebucket",
|
11059
11060
|
# key: "HappyFace.jpg",
|
11060
|
-
#
|
11061
|
-
# storage_class: "STANDARD_IA",
|
11061
|
+
# tagging: "key1=value1&key2=value2",
|
11062
11062
|
# })
|
11063
11063
|
#
|
11064
11064
|
# resp.to_h outputs the following:
|
11065
11065
|
# {
|
11066
11066
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
11067
|
-
#
|
11068
|
-
# version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
|
11067
|
+
# version_id: "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a",
|
11069
11068
|
# }
|
11070
11069
|
#
|
11071
|
-
# @example Example: To upload an object
|
11070
|
+
# @example Example: To upload an object (specify optional headers)
|
11072
11071
|
#
|
11073
|
-
# # The following example uploads
|
11074
|
-
# #
|
11072
|
+
# # The following example uploads an object. The request specifies optional request headers to directs S3 to use specific
|
11073
|
+
# # storage class and use server-side encryption.
|
11075
11074
|
#
|
11076
11075
|
# resp = client.put_object({
|
11077
|
-
# body: "
|
11076
|
+
# body: "HappyFace.jpg",
|
11078
11077
|
# bucket: "examplebucket",
|
11079
|
-
# key: "
|
11078
|
+
# key: "HappyFace.jpg",
|
11080
11079
|
# server_side_encryption: "AES256",
|
11081
|
-
#
|
11080
|
+
# storage_class: "STANDARD_IA",
|
11082
11081
|
# })
|
11083
11082
|
#
|
11084
11083
|
# resp.to_h outputs the following:
|
11085
11084
|
# {
|
11086
11085
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
11087
11086
|
# server_side_encryption: "AES256",
|
11088
|
-
# version_id: "
|
11087
|
+
# version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
|
11089
11088
|
# }
|
11090
11089
|
#
|
11091
|
-
# @example Example: To
|
11090
|
+
# @example Example: To upload object and specify user-defined metadata
|
11092
11091
|
#
|
11093
|
-
# # The following example creates an object.
|
11092
|
+
# # The following example creates an object. The request also specifies optional metadata. If the bucket is versioning
|
11093
|
+
# # enabled, S3 returns version ID in response.
|
11094
11094
|
#
|
11095
11095
|
# resp = client.put_object({
|
11096
11096
|
# body: "filetoupload",
|
11097
11097
|
# bucket: "examplebucket",
|
11098
|
-
# key: "
|
11098
|
+
# key: "exampleobject",
|
11099
|
+
# metadata: {
|
11100
|
+
# "metadata1" => "value1",
|
11101
|
+
# "metadata2" => "value2",
|
11102
|
+
# },
|
11099
11103
|
# })
|
11100
11104
|
#
|
11101
11105
|
# resp.to_h outputs the following:
|
11102
11106
|
# {
|
11103
11107
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
11104
|
-
# version_id: "
|
11108
|
+
# version_id: "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0",
|
11105
11109
|
# }
|
11106
11110
|
#
|
11107
|
-
# @example Example: To upload object and specify
|
11111
|
+
# @example Example: To upload an object and specify canned ACL.
|
11108
11112
|
#
|
11109
|
-
# # The following example
|
11110
|
-
# # enabled, S3 returns version ID in response.
|
11113
|
+
# # The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ
|
11114
|
+
# # access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
|
11111
11115
|
#
|
11112
11116
|
# resp = client.put_object({
|
11117
|
+
# acl: "authenticated-read",
|
11113
11118
|
# body: "filetoupload",
|
11114
11119
|
# bucket: "examplebucket",
|
11115
11120
|
# key: "exampleobject",
|
11116
|
-
# metadata: {
|
11117
|
-
# "metadata1" => "value1",
|
11118
|
-
# "metadata2" => "value2",
|
11119
|
-
# },
|
11120
11121
|
# })
|
11121
11122
|
#
|
11122
11123
|
# resp.to_h outputs the following:
|
11123
11124
|
# {
|
11124
11125
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
11125
|
-
# version_id: "
|
11126
|
+
# version_id: "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr",
|
11126
11127
|
# }
|
11127
11128
|
#
|
11128
|
-
# @example Example: To upload an object
|
11129
|
+
# @example Example: To upload an object
|
11129
11130
|
#
|
11130
|
-
# # The following example uploads an object
|
11131
|
-
# # S3 returns
|
11131
|
+
# # The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file
|
11132
|
+
# # syntax. S3 returns VersionId of the newly created object.
|
11132
11133
|
#
|
11133
11134
|
# resp = client.put_object({
|
11134
|
-
# body: "
|
11135
|
+
# body: "HappyFace.jpg",
|
11135
11136
|
# bucket: "examplebucket",
|
11136
11137
|
# key: "HappyFace.jpg",
|
11137
|
-
# tagging: "key1=value1&key2=value2",
|
11138
11138
|
# })
|
11139
11139
|
#
|
11140
11140
|
# resp.to_h outputs the following:
|
11141
11141
|
# {
|
11142
11142
|
# etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
|
11143
|
-
# version_id: "
|
11143
|
+
# version_id: "tpf3zF08nBplQK1XLOefGskR7mGDwcDk",
|
11144
11144
|
# }
|
11145
11145
|
#
|
11146
11146
|
# @example Streaming a file from disk
|
@@ -13566,7 +13566,7 @@ module Aws::S3
|
|
13566
13566
|
params: params,
|
13567
13567
|
config: config)
|
13568
13568
|
context[:gem_name] = 'aws-sdk-s3'
|
13569
|
-
context[:gem_version] = '1.
|
13569
|
+
context[:gem_version] = '1.87.0'
|
13570
13570
|
Seahorse::Client::Request.new(handlers, context)
|
13571
13571
|
end
|
13572
13572
|
|
@@ -480,7 +480,7 @@ module Aws::S3
|
|
480
480
|
ResponseContentEncoding = Shapes::StringShape.new(name: 'ResponseContentEncoding')
|
481
481
|
ResponseContentLanguage = Shapes::StringShape.new(name: 'ResponseContentLanguage')
|
482
482
|
ResponseContentType = Shapes::StringShape.new(name: 'ResponseContentType')
|
483
|
-
ResponseExpires = Shapes::TimestampShape.new(name: 'ResponseExpires')
|
483
|
+
ResponseExpires = Shapes::TimestampShape.new(name: 'ResponseExpires', timestampFormat: "rfc822")
|
484
484
|
Restore = Shapes::StringShape.new(name: 'Restore')
|
485
485
|
RestoreObjectOutput = Shapes::StructureShape.new(name: 'RestoreObjectOutput')
|
486
486
|
RestoreObjectRequest = Shapes::StructureShape.new(name: 'RestoreObjectRequest')
|
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.87.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-12-
|
11
|
+
date: 2020-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1
|
19
|
+
version: '1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1
|
26
|
+
version: '1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|