aws-sdk-s3 1.177.0 → 1.178.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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +38 -24
- data/lib/aws-sdk-s3/bucket_acl.rb +5 -4
- data/lib/aws-sdk-s3/bucket_cors.rb +5 -4
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +1 -1
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +2 -2
- data/lib/aws-sdk-s3/bucket_logging.rb +1 -1
- data/lib/aws-sdk-s3/bucket_policy.rb +9 -8
- data/lib/aws-sdk-s3/bucket_request_payment.rb +2 -2
- data/lib/aws-sdk-s3/bucket_tagging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_versioning.rb +6 -6
- data/lib/aws-sdk-s3/bucket_website.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +379 -237
- data/lib/aws-sdk-s3/client_api.rb +34 -2
- data/lib/aws-sdk-s3/file_downloader.rb +4 -21
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
- data/lib/aws-sdk-s3/multipart_upload.rb +48 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +52 -36
- data/lib/aws-sdk-s3/object.rb +108 -58
- data/lib/aws-sdk-s3/object_acl.rb +4 -4
- data/lib/aws-sdk-s3/object_summary.rb +63 -28
- data/lib/aws-sdk-s3/object_version.rb +21 -8
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
- data/lib/aws-sdk-s3/presigner.rb +4 -5
- data/lib/aws-sdk-s3/types.rb +734 -416
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +3 -2
- data/sig/bucket_acl.rbs +1 -1
- data/sig/bucket_cors.rbs +1 -1
- data/sig/bucket_lifecycle.rbs +1 -1
- data/sig/bucket_lifecycle_configuration.rbs +1 -1
- data/sig/bucket_logging.rbs +1 -1
- data/sig/bucket_policy.rbs +1 -1
- data/sig/bucket_request_payment.rbs +1 -1
- data/sig/bucket_tagging.rbs +1 -1
- data/sig/bucket_versioning.rbs +3 -3
- data/sig/bucket_website.rbs +1 -1
- data/sig/client.rbs +50 -29
- data/sig/multipart_upload.rbs +8 -1
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +13 -5
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +11 -6
- data/sig/object_version.rbs +5 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +61 -32
- metadata +5 -5
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
CHANGED
@@ -92,7 +92,7 @@ module Aws
|
|
92
92
|
?request_payer: ("requester"),
|
93
93
|
?bypass_governance_retention: bool,
|
94
94
|
?expected_bucket_owner: ::String,
|
95
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
95
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
96
96
|
) -> Types::DeleteObjectsOutput
|
97
97
|
| (?Hash[Symbol, untyped]) -> Types::DeleteObjectsOutput
|
98
98
|
|
@@ -107,9 +107,10 @@ module Aws
|
|
107
107
|
?content_length: ::Integer,
|
108
108
|
?content_md5: ::String,
|
109
109
|
?content_type: ::String,
|
110
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
110
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
111
111
|
?checksum_crc32: ::String,
|
112
112
|
?checksum_crc32c: ::String,
|
113
|
+
?checksum_crc64nvme: ::String,
|
113
114
|
?checksum_sha1: ::String,
|
114
115
|
?checksum_sha256: ::String,
|
115
116
|
?expires: ::Time,
|
data/sig/bucket_acl.rbs
CHANGED
@@ -58,7 +58,7 @@ module Aws
|
|
58
58
|
}?
|
59
59
|
},
|
60
60
|
?content_md5: ::String,
|
61
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
61
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
62
62
|
?grant_full_control: ::String,
|
63
63
|
?grant_read: ::String,
|
64
64
|
?grant_read_acp: ::String,
|
data/sig/bucket_cors.rbs
CHANGED
@@ -54,7 +54,7 @@ module Aws
|
|
54
54
|
]
|
55
55
|
},
|
56
56
|
?content_md5: ::String,
|
57
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
57
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
58
58
|
?expected_bucket_owner: ::String
|
59
59
|
) -> ::Aws::EmptyStructure
|
60
60
|
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
data/sig/bucket_lifecycle.rbs
CHANGED
@@ -42,7 +42,7 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#put-instance_method
|
43
43
|
def put: (
|
44
44
|
?content_md5: ::String,
|
45
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
45
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
46
46
|
?lifecycle_configuration: {
|
47
47
|
rules: Array[
|
48
48
|
{
|
@@ -44,7 +44,7 @@ module Aws
|
|
44
44
|
|
45
45
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#put-instance_method
|
46
46
|
def put: (
|
47
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
47
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
48
48
|
?lifecycle_configuration: {
|
49
49
|
rules: Array[
|
50
50
|
{
|
data/sig/bucket_logging.rbs
CHANGED
@@ -61,7 +61,7 @@ module Aws
|
|
61
61
|
}?
|
62
62
|
},
|
63
63
|
?content_md5: ::String,
|
64
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
64
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
65
65
|
?expected_bucket_owner: ::String
|
66
66
|
) -> ::Aws::EmptyStructure
|
67
67
|
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
data/sig/bucket_policy.rbs
CHANGED
@@ -42,7 +42,7 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketPolicy.html#put-instance_method
|
43
43
|
def put: (
|
44
44
|
?content_md5: ::String,
|
45
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
45
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
46
46
|
?confirm_remove_self_bucket_access: bool,
|
47
47
|
policy: ::String,
|
48
48
|
?expected_bucket_owner: ::String
|
@@ -36,7 +36,7 @@ module Aws
|
|
36
36
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketRequestPayment.html#put-instance_method
|
37
37
|
def put: (
|
38
38
|
?content_md5: ::String,
|
39
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
39
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
40
40
|
request_payment_configuration: {
|
41
41
|
payer: ("Requester" | "BucketOwner")
|
42
42
|
},
|
data/sig/bucket_tagging.rbs
CHANGED
@@ -42,7 +42,7 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketTagging.html#put-instance_method
|
43
43
|
def put: (
|
44
44
|
?content_md5: ::String,
|
45
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
45
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
46
46
|
tagging: {
|
47
47
|
tag_set: Array[
|
48
48
|
{
|
data/sig/bucket_versioning.rbs
CHANGED
@@ -39,7 +39,7 @@ module Aws
|
|
39
39
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#enable-instance_method
|
40
40
|
def enable: (
|
41
41
|
?content_md5: ::String,
|
42
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
42
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
43
43
|
?mfa: ::String,
|
44
44
|
?expected_bucket_owner: ::String
|
45
45
|
) -> ::Aws::EmptyStructure
|
@@ -48,7 +48,7 @@ module Aws
|
|
48
48
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#put-instance_method
|
49
49
|
def put: (
|
50
50
|
?content_md5: ::String,
|
51
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
51
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
52
52
|
?mfa: ::String,
|
53
53
|
versioning_configuration: {
|
54
54
|
mfa_delete: ("Enabled" | "Disabled")?,
|
@@ -61,7 +61,7 @@ module Aws
|
|
61
61
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#suspend-instance_method
|
62
62
|
def suspend: (
|
63
63
|
?content_md5: ::String,
|
64
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
64
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
65
65
|
?mfa: ::String,
|
66
66
|
?expected_bucket_owner: ::String
|
67
67
|
) -> ::Aws::EmptyStructure
|
data/sig/bucket_website.rbs
CHANGED
@@ -51,7 +51,7 @@ module Aws
|
|
51
51
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketWebsite.html#put-instance_method
|
52
52
|
def put: (
|
53
53
|
?content_md5: ::String,
|
54
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
54
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
55
55
|
website_configuration: {
|
56
56
|
error_document: {
|
57
57
|
key: ::String
|
data/sig/client.rbs
CHANGED
@@ -49,8 +49,10 @@ module Aws
|
|
49
49
|
?max_attempts: Integer,
|
50
50
|
?output_event_stream_handler: Proc,
|
51
51
|
?profile: String,
|
52
|
+
?request_checksum_calculation: String,
|
52
53
|
?request_min_compression_size_bytes: Integer,
|
53
54
|
?require_https_for_sse_cpk: bool,
|
55
|
+
?response_checksum_validation: String,
|
54
56
|
?retry_backoff: Proc,
|
55
57
|
?retry_base_delay: Float,
|
56
58
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -114,8 +116,10 @@ module Aws
|
|
114
116
|
def etag: () -> ::String
|
115
117
|
def checksum_crc32: () -> ::String
|
116
118
|
def checksum_crc32c: () -> ::String
|
119
|
+
def checksum_crc64nvme: () -> ::String
|
117
120
|
def checksum_sha1: () -> ::String
|
118
121
|
def checksum_sha256: () -> ::String
|
122
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
119
123
|
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
120
124
|
def version_id: () -> ::String
|
121
125
|
def ssekms_key_id: () -> ::String
|
@@ -132,6 +136,7 @@ module Aws
|
|
132
136
|
etag: ::String?,
|
133
137
|
checksum_crc32: ::String?,
|
134
138
|
checksum_crc32c: ::String?,
|
139
|
+
checksum_crc64nvme: ::String?,
|
135
140
|
checksum_sha1: ::String?,
|
136
141
|
checksum_sha256: ::String?,
|
137
142
|
part_number: ::Integer?
|
@@ -141,8 +146,11 @@ module Aws
|
|
141
146
|
upload_id: ::String,
|
142
147
|
?checksum_crc32: ::String,
|
143
148
|
?checksum_crc32c: ::String,
|
149
|
+
?checksum_crc64nvme: ::String,
|
144
150
|
?checksum_sha1: ::String,
|
145
151
|
?checksum_sha256: ::String,
|
152
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
|
153
|
+
?mpu_object_size: ::Integer,
|
146
154
|
?request_payer: ("requester"),
|
147
155
|
?expected_bucket_owner: ::String,
|
148
156
|
?if_match: ::String,
|
@@ -172,7 +180,7 @@ module Aws
|
|
172
180
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
|
173
181
|
bucket: ::String,
|
174
182
|
?cache_control: ::String,
|
175
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
183
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
176
184
|
?content_disposition: ::String,
|
177
185
|
?content_encoding: ::String,
|
178
186
|
?content_language: ::String,
|
@@ -246,7 +254,7 @@ module Aws
|
|
246
254
|
def create_bucket_metadata_table_configuration: (
|
247
255
|
bucket: ::String,
|
248
256
|
?content_md5: ::String,
|
249
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
257
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
250
258
|
metadata_table_configuration: {
|
251
259
|
s3_tables_destination: {
|
252
260
|
table_bucket_arn: ::String,
|
@@ -271,7 +279,8 @@ module Aws
|
|
271
279
|
def ssekms_encryption_context: () -> ::String
|
272
280
|
def bucket_key_enabled: () -> bool
|
273
281
|
def request_charged: () -> ("requester")
|
274
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
282
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
283
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
275
284
|
end
|
276
285
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
|
277
286
|
def create_multipart_upload: (
|
@@ -304,7 +313,8 @@ module Aws
|
|
304
313
|
?object_lock_retain_until_date: ::Time,
|
305
314
|
?object_lock_legal_hold_status: ("ON" | "OFF"),
|
306
315
|
?expected_bucket_owner: ::String,
|
307
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
316
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
317
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
308
318
|
) -> _CreateMultipartUploadResponseSuccess
|
309
319
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
|
310
320
|
|
@@ -487,7 +497,7 @@ module Aws
|
|
487
497
|
?request_payer: ("requester"),
|
488
498
|
?bypass_governance_retention: bool,
|
489
499
|
?expected_bucket_owner: ::String,
|
490
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
500
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
491
501
|
) -> _DeleteObjectsResponseSuccess
|
492
502
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
|
493
503
|
|
@@ -779,8 +789,10 @@ module Aws
|
|
779
789
|
def etag: () -> ::String
|
780
790
|
def checksum_crc32: () -> ::String
|
781
791
|
def checksum_crc32c: () -> ::String
|
792
|
+
def checksum_crc64nvme: () -> ::String
|
782
793
|
def checksum_sha1: () -> ::String
|
783
794
|
def checksum_sha256: () -> ::String
|
795
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
784
796
|
def missing_meta: () -> ::Integer
|
785
797
|
def version_id: () -> ::String
|
786
798
|
def cache_control: () -> ::String
|
@@ -981,8 +993,10 @@ module Aws
|
|
981
993
|
def content_length: () -> ::Integer
|
982
994
|
def checksum_crc32: () -> ::String
|
983
995
|
def checksum_crc32c: () -> ::String
|
996
|
+
def checksum_crc64nvme: () -> ::String
|
984
997
|
def checksum_sha1: () -> ::String
|
985
998
|
def checksum_sha256: () -> ::String
|
999
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
986
1000
|
def etag: () -> ::String
|
987
1001
|
def missing_meta: () -> ::Integer
|
988
1002
|
def version_id: () -> ::String
|
@@ -1259,7 +1273,8 @@ module Aws
|
|
1259
1273
|
def owner: () -> Types::Owner
|
1260
1274
|
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1261
1275
|
def request_charged: () -> ("requester")
|
1262
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1276
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1277
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
1263
1278
|
end
|
1264
1279
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
|
1265
1280
|
def list_parts: (
|
@@ -1283,7 +1298,7 @@ module Aws
|
|
1283
1298
|
status: ("Enabled" | "Suspended")?
|
1284
1299
|
},
|
1285
1300
|
?expected_bucket_owner: ::String,
|
1286
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1301
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1287
1302
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1288
1303
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1289
1304
|
|
@@ -1310,7 +1325,7 @@ module Aws
|
|
1310
1325
|
},
|
1311
1326
|
bucket: ::String,
|
1312
1327
|
?content_md5: ::String,
|
1313
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1328
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1314
1329
|
?grant_full_control: ::String,
|
1315
1330
|
?grant_read: ::String,
|
1316
1331
|
?grant_read_acp: ::String,
|
@@ -1376,7 +1391,7 @@ module Aws
|
|
1376
1391
|
]
|
1377
1392
|
},
|
1378
1393
|
?content_md5: ::String,
|
1379
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1394
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1380
1395
|
?expected_bucket_owner: ::String
|
1381
1396
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1382
1397
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -1385,7 +1400,7 @@ module Aws
|
|
1385
1400
|
def put_bucket_encryption: (
|
1386
1401
|
bucket: ::String,
|
1387
1402
|
?content_md5: ::String,
|
1388
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1403
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1389
1404
|
server_side_encryption_configuration: {
|
1390
1405
|
rules: Array[
|
1391
1406
|
{
|
@@ -1473,7 +1488,7 @@ module Aws
|
|
1473
1488
|
def put_bucket_lifecycle: (
|
1474
1489
|
bucket: ::String,
|
1475
1490
|
?content_md5: ::String,
|
1476
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1491
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1477
1492
|
?lifecycle_configuration: {
|
1478
1493
|
rules: Array[
|
1479
1494
|
{
|
@@ -1516,7 +1531,7 @@ module Aws
|
|
1516
1531
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
|
1517
1532
|
def put_bucket_lifecycle_configuration: (
|
1518
1533
|
bucket: ::String,
|
1519
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1534
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1520
1535
|
?lifecycle_configuration: {
|
1521
1536
|
rules: Array[
|
1522
1537
|
{
|
@@ -1606,7 +1621,7 @@ module Aws
|
|
1606
1621
|
}?
|
1607
1622
|
},
|
1608
1623
|
?content_md5: ::String,
|
1609
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1624
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1610
1625
|
?expected_bucket_owner: ::String
|
1611
1626
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1612
1627
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -1644,7 +1659,7 @@ module Aws
|
|
1644
1659
|
def put_bucket_notification: (
|
1645
1660
|
bucket: ::String,
|
1646
1661
|
?content_md5: ::String,
|
1647
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1662
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1648
1663
|
notification_configuration: {
|
1649
1664
|
topic_configuration: {
|
1650
1665
|
id: ::String?,
|
@@ -1752,7 +1767,7 @@ module Aws
|
|
1752
1767
|
def put_bucket_policy: (
|
1753
1768
|
bucket: ::String,
|
1754
1769
|
?content_md5: ::String,
|
1755
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1770
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1756
1771
|
?confirm_remove_self_bucket_access: bool,
|
1757
1772
|
policy: ::String,
|
1758
1773
|
?expected_bucket_owner: ::String
|
@@ -1763,7 +1778,7 @@ module Aws
|
|
1763
1778
|
def put_bucket_replication: (
|
1764
1779
|
bucket: ::String,
|
1765
1780
|
?content_md5: ::String,
|
1766
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1781
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1767
1782
|
replication_configuration: {
|
1768
1783
|
role: ::String,
|
1769
1784
|
rules: Array[
|
@@ -1837,7 +1852,7 @@ module Aws
|
|
1837
1852
|
def put_bucket_request_payment: (
|
1838
1853
|
bucket: ::String,
|
1839
1854
|
?content_md5: ::String,
|
1840
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1855
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1841
1856
|
request_payment_configuration: {
|
1842
1857
|
payer: ("Requester" | "BucketOwner")
|
1843
1858
|
},
|
@@ -1849,7 +1864,7 @@ module Aws
|
|
1849
1864
|
def put_bucket_tagging: (
|
1850
1865
|
bucket: ::String,
|
1851
1866
|
?content_md5: ::String,
|
1852
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1867
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1853
1868
|
tagging: {
|
1854
1869
|
tag_set: Array[
|
1855
1870
|
{
|
@@ -1866,7 +1881,7 @@ module Aws
|
|
1866
1881
|
def put_bucket_versioning: (
|
1867
1882
|
bucket: ::String,
|
1868
1883
|
?content_md5: ::String,
|
1869
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1884
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1870
1885
|
?mfa: ::String,
|
1871
1886
|
versioning_configuration: {
|
1872
1887
|
mfa_delete: ("Enabled" | "Disabled")?,
|
@@ -1880,7 +1895,7 @@ module Aws
|
|
1880
1895
|
def put_bucket_website: (
|
1881
1896
|
bucket: ::String,
|
1882
1897
|
?content_md5: ::String,
|
1883
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1898
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1884
1899
|
website_configuration: {
|
1885
1900
|
error_document: {
|
1886
1901
|
key: ::String
|
@@ -1918,8 +1933,10 @@ module Aws
|
|
1918
1933
|
def etag: () -> ::String
|
1919
1934
|
def checksum_crc32: () -> ::String
|
1920
1935
|
def checksum_crc32c: () -> ::String
|
1936
|
+
def checksum_crc64nvme: () -> ::String
|
1921
1937
|
def checksum_sha1: () -> ::String
|
1922
1938
|
def checksum_sha256: () -> ::String
|
1939
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
1923
1940
|
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1924
1941
|
def version_id: () -> ::String
|
1925
1942
|
def sse_customer_algorithm: () -> ::String
|
@@ -1942,9 +1959,10 @@ module Aws
|
|
1942
1959
|
?content_length: ::Integer,
|
1943
1960
|
?content_md5: ::String,
|
1944
1961
|
?content_type: ::String,
|
1945
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
1962
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
1946
1963
|
?checksum_crc32: ::String,
|
1947
1964
|
?checksum_crc32c: ::String,
|
1965
|
+
?checksum_crc64nvme: ::String,
|
1948
1966
|
?checksum_sha1: ::String,
|
1949
1967
|
?checksum_sha256: ::String,
|
1950
1968
|
?expires: ::Time,
|
@@ -2002,7 +2020,7 @@ module Aws
|
|
2002
2020
|
},
|
2003
2021
|
bucket: ::String,
|
2004
2022
|
?content_md5: ::String,
|
2005
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2023
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2006
2024
|
?grant_full_control: ::String,
|
2007
2025
|
?grant_read: ::String,
|
2008
2026
|
?grant_read_acp: ::String,
|
@@ -2029,7 +2047,7 @@ module Aws
|
|
2029
2047
|
?request_payer: ("requester"),
|
2030
2048
|
?version_id: ::String,
|
2031
2049
|
?content_md5: ::String,
|
2032
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2050
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2033
2051
|
?expected_bucket_owner: ::String
|
2034
2052
|
) -> _PutObjectLegalHoldResponseSuccess
|
2035
2053
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
|
@@ -2054,7 +2072,7 @@ module Aws
|
|
2054
2072
|
?request_payer: ("requester"),
|
2055
2073
|
?token: ::String,
|
2056
2074
|
?content_md5: ::String,
|
2057
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2075
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2058
2076
|
?expected_bucket_owner: ::String
|
2059
2077
|
) -> _PutObjectLockConfigurationResponseSuccess
|
2060
2078
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
|
@@ -2075,7 +2093,7 @@ module Aws
|
|
2075
2093
|
?version_id: ::String,
|
2076
2094
|
?bypass_governance_retention: bool,
|
2077
2095
|
?content_md5: ::String,
|
2078
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2096
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2079
2097
|
?expected_bucket_owner: ::String
|
2080
2098
|
) -> _PutObjectRetentionResponseSuccess
|
2081
2099
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
|
@@ -2090,7 +2108,7 @@ module Aws
|
|
2090
2108
|
key: ::String,
|
2091
2109
|
?version_id: ::String,
|
2092
2110
|
?content_md5: ::String,
|
2093
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2111
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2094
2112
|
tagging: {
|
2095
2113
|
tag_set: Array[
|
2096
2114
|
{
|
@@ -2108,7 +2126,7 @@ module Aws
|
|
2108
2126
|
def put_public_access_block: (
|
2109
2127
|
bucket: ::String,
|
2110
2128
|
?content_md5: ::String,
|
2111
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2129
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2112
2130
|
public_access_block_configuration: {
|
2113
2131
|
block_public_acls: bool?,
|
2114
2132
|
ignore_public_acls: bool?,
|
@@ -2211,7 +2229,7 @@ module Aws
|
|
2211
2229
|
}?
|
2212
2230
|
},
|
2213
2231
|
?request_payer: ("requester"),
|
2214
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2232
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2215
2233
|
?expected_bucket_owner: ::String
|
2216
2234
|
) -> _RestoreObjectResponseSuccess
|
2217
2235
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
|
@@ -2275,6 +2293,7 @@ module Aws
|
|
2275
2293
|
def etag: () -> ::String
|
2276
2294
|
def checksum_crc32: () -> ::String
|
2277
2295
|
def checksum_crc32c: () -> ::String
|
2296
|
+
def checksum_crc64nvme: () -> ::String
|
2278
2297
|
def checksum_sha1: () -> ::String
|
2279
2298
|
def checksum_sha256: () -> ::String
|
2280
2299
|
def sse_customer_algorithm: () -> ::String
|
@@ -2289,9 +2308,10 @@ module Aws
|
|
2289
2308
|
bucket: ::String,
|
2290
2309
|
?content_length: ::Integer,
|
2291
2310
|
?content_md5: ::String,
|
2292
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
2311
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
2293
2312
|
?checksum_crc32: ::String,
|
2294
2313
|
?checksum_crc32c: ::String,
|
2314
|
+
?checksum_crc64nvme: ::String,
|
2295
2315
|
?checksum_sha1: ::String,
|
2296
2316
|
?checksum_sha256: ::String,
|
2297
2317
|
key: ::String,
|
@@ -2358,6 +2378,7 @@ module Aws
|
|
2358
2378
|
?content_type: ::String,
|
2359
2379
|
?checksum_crc32: ::String,
|
2360
2380
|
?checksum_crc32c: ::String,
|
2381
|
+
?checksum_crc64nvme: ::String,
|
2361
2382
|
?checksum_sha1: ::String,
|
2362
2383
|
?checksum_sha256: ::String,
|
2363
2384
|
?delete_marker: bool,
|
data/sig/multipart_upload.rbs
CHANGED
@@ -42,7 +42,10 @@ module Aws
|
|
42
42
|
def initiator: () -> Types::Initiator
|
43
43
|
|
44
44
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#checksum_algorithm-instance_method
|
45
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
45
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
46
|
+
|
47
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#checksum_type-instance_method
|
48
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
46
49
|
|
47
50
|
def client: () -> Client
|
48
51
|
|
@@ -70,6 +73,7 @@ module Aws
|
|
70
73
|
etag: ::String?,
|
71
74
|
checksum_crc32: ::String?,
|
72
75
|
checksum_crc32c: ::String?,
|
76
|
+
checksum_crc64nvme: ::String?,
|
73
77
|
checksum_sha1: ::String?,
|
74
78
|
checksum_sha256: ::String?,
|
75
79
|
part_number: ::Integer?
|
@@ -78,8 +82,11 @@ module Aws
|
|
78
82
|
},
|
79
83
|
?checksum_crc32: ::String,
|
80
84
|
?checksum_crc32c: ::String,
|
85
|
+
?checksum_crc64nvme: ::String,
|
81
86
|
?checksum_sha1: ::String,
|
82
87
|
?checksum_sha256: ::String,
|
88
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
|
89
|
+
?mpu_object_size: ::Integer,
|
83
90
|
?request_payer: ("requester"),
|
84
91
|
?expected_bucket_owner: ::String,
|
85
92
|
?if_match: ::String,
|
@@ -41,6 +41,9 @@ module Aws
|
|
41
41
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_crc32c-instance_method
|
42
42
|
def checksum_crc32c: () -> ::String
|
43
43
|
|
44
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_crc64nvme-instance_method
|
45
|
+
def checksum_crc64nvme: () -> ::String
|
46
|
+
|
44
47
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_sha1-instance_method
|
45
48
|
def checksum_sha1: () -> ::String
|
46
49
|
|
@@ -82,9 +85,10 @@ module Aws
|
|
82
85
|
?body: ::String | ::StringIO | ::File,
|
83
86
|
?content_length: ::Integer,
|
84
87
|
?content_md5: ::String,
|
85
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
88
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
86
89
|
?checksum_crc32: ::String,
|
87
90
|
?checksum_crc32c: ::String,
|
91
|
+
?checksum_crc64nvme: ::String,
|
88
92
|
?checksum_sha1: ::String,
|
89
93
|
?checksum_sha256: ::String,
|
90
94
|
?sse_customer_algorithm: ::String,
|
data/sig/object.rbs
CHANGED
@@ -47,12 +47,18 @@ module Aws
|
|
47
47
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#checksum_crc32c-instance_method
|
48
48
|
def checksum_crc32c: () -> ::String
|
49
49
|
|
50
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#checksum_crc64nvme-instance_method
|
51
|
+
def checksum_crc64nvme: () -> ::String
|
52
|
+
|
50
53
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#checksum_sha1-instance_method
|
51
54
|
def checksum_sha1: () -> ::String
|
52
55
|
|
53
56
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#checksum_sha256-instance_method
|
54
57
|
def checksum_sha256: () -> ::String
|
55
58
|
|
59
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#checksum_type-instance_method
|
60
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
61
|
+
|
56
62
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#etag-instance_method
|
57
63
|
def etag: () -> ::String
|
58
64
|
|
@@ -153,7 +159,7 @@ module Aws
|
|
153
159
|
def copy_from: (
|
154
160
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
|
155
161
|
?cache_control: ::String,
|
156
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
162
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
157
163
|
?content_disposition: ::String,
|
158
164
|
?content_encoding: ::String,
|
159
165
|
?content_language: ::String,
|
@@ -259,7 +265,8 @@ module Aws
|
|
259
265
|
?object_lock_retain_until_date: ::Time,
|
260
266
|
?object_lock_legal_hold_status: ("ON" | "OFF"),
|
261
267
|
?expected_bucket_owner: ::String,
|
262
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
268
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
269
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
263
270
|
) -> MultipartUpload
|
264
271
|
| (?Hash[Symbol, untyped]) -> MultipartUpload
|
265
272
|
|
@@ -274,9 +281,10 @@ module Aws
|
|
274
281
|
?content_length: ::Integer,
|
275
282
|
?content_md5: ::String,
|
276
283
|
?content_type: ::String,
|
277
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
284
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
278
285
|
?checksum_crc32: ::String,
|
279
286
|
?checksum_crc32c: ::String,
|
287
|
+
?checksum_crc64nvme: ::String,
|
280
288
|
?checksum_sha1: ::String,
|
281
289
|
?checksum_sha256: ::String,
|
282
290
|
?expires: ::Time,
|
@@ -391,7 +399,7 @@ module Aws
|
|
391
399
|
}?
|
392
400
|
},
|
393
401
|
?request_payer: ("requester"),
|
394
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
402
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
395
403
|
?expected_bucket_owner: ::String
|
396
404
|
) -> Types::RestoreObjectOutput
|
397
405
|
| (?Hash[Symbol, untyped]) -> Types::RestoreObjectOutput
|
@@ -439,7 +447,7 @@ module Aws
|
|
439
447
|
?request_payer: ("requester"),
|
440
448
|
?bypass_governance_retention: bool,
|
441
449
|
?expected_bucket_owner: ::String,
|
442
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
450
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
443
451
|
) -> void
|
444
452
|
| (?Hash[Symbol, untyped]) -> void
|
445
453
|
end
|
data/sig/object_acl.rbs
CHANGED
@@ -64,7 +64,7 @@ module Aws
|
|
64
64
|
}?
|
65
65
|
},
|
66
66
|
?content_md5: ::String,
|
67
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
67
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
68
68
|
?grant_full_control: ::String,
|
69
69
|
?grant_read: ::String,
|
70
70
|
?grant_read_acp: ::String,
|