aws-sdk-s3 1.176.1 → 1.208.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 +202 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +86 -35
- data/lib/aws-sdk-s3/bucket_acl.rb +7 -6
- data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +2 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +3 -3
- data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_policy.rb +6 -5
- data/lib/aws-sdk-s3/bucket_request_payment.rb +3 -3
- data/lib/aws-sdk-s3/bucket_tagging.rb +3 -3
- data/lib/aws-sdk-s3/bucket_versioning.rb +42 -9
- data/lib/aws-sdk-s3/bucket_website.rb +3 -3
- data/lib/aws-sdk-s3/client.rb +3038 -1226
- data/lib/aws-sdk-s3/client_api.rb +492 -164
- data/lib/aws-sdk-s3/customizations/object.rb +76 -86
- data/lib/aws-sdk-s3/customizations.rb +4 -1
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +2 -2
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +98 -23
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
- data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +8 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
- data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
- data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
- data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
- data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
- data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
- data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
- data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +17 -17
- data/lib/aws-sdk-s3/endpoint_provider.rb +562 -304
- data/lib/aws-sdk-s3/endpoints.rb +110 -0
- data/lib/aws-sdk-s3/errors.rb +11 -0
- data/lib/aws-sdk-s3/file_downloader.rb +189 -143
- data/lib/aws-sdk-s3/file_uploader.rb +9 -13
- data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
- data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +105 -102
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +96 -107
- data/lib/aws-sdk-s3/multipart_upload.rb +50 -6
- data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
- data/lib/aws-sdk-s3/object.rb +264 -137
- data/lib/aws-sdk-s3/object_acl.rb +12 -6
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
- data/lib/aws-sdk-s3/object_summary.rb +179 -103
- data/lib/aws-sdk-s3/object_version.rb +25 -23
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
- 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/plugins/streaming_retry.rb +5 -7
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
- data/lib/aws-sdk-s3/presigner.rb +4 -5
- data/lib/aws-sdk-s3/resource.rb +7 -1
- data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
- data/lib/aws-sdk-s3/types.rb +2907 -1059
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +16 -6
- 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 +226 -64
- data/sig/errors.rbs +2 -0
- data/sig/multipart_upload.rbs +9 -2
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +31 -15
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +22 -15
- data/sig/object_version.rbs +5 -2
- data/sig/resource.rbs +11 -2
- data/sig/types.rbs +281 -64
- metadata +26 -10
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/client.rbs
CHANGED
|
@@ -20,6 +20,7 @@ module Aws
|
|
|
20
20
|
?account_id: String,
|
|
21
21
|
?active_endpoint_cache: bool,
|
|
22
22
|
?adaptive_retry_wait_to_fill: bool,
|
|
23
|
+
?auth_scheme_preference: Array[String],
|
|
23
24
|
?client_side_monitoring: bool,
|
|
24
25
|
?client_side_monitoring_client_id: String,
|
|
25
26
|
?client_side_monitoring_host: String,
|
|
@@ -49,8 +50,10 @@ module Aws
|
|
|
49
50
|
?max_attempts: Integer,
|
|
50
51
|
?output_event_stream_handler: Proc,
|
|
51
52
|
?profile: String,
|
|
53
|
+
?request_checksum_calculation: String,
|
|
52
54
|
?request_min_compression_size_bytes: Integer,
|
|
53
55
|
?require_https_for_sse_cpk: bool,
|
|
56
|
+
?response_checksum_validation: String,
|
|
54
57
|
?retry_backoff: Proc,
|
|
55
58
|
?retry_base_delay: Float,
|
|
56
59
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
@@ -114,9 +117,11 @@ module Aws
|
|
|
114
117
|
def etag: () -> ::String
|
|
115
118
|
def checksum_crc32: () -> ::String
|
|
116
119
|
def checksum_crc32c: () -> ::String
|
|
120
|
+
def checksum_crc64nvme: () -> ::String
|
|
117
121
|
def checksum_sha1: () -> ::String
|
|
118
122
|
def checksum_sha256: () -> ::String
|
|
119
|
-
def
|
|
123
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
124
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
120
125
|
def version_id: () -> ::String
|
|
121
126
|
def ssekms_key_id: () -> ::String
|
|
122
127
|
def bucket_key_enabled: () -> bool
|
|
@@ -132,6 +137,7 @@ module Aws
|
|
|
132
137
|
etag: ::String?,
|
|
133
138
|
checksum_crc32: ::String?,
|
|
134
139
|
checksum_crc32c: ::String?,
|
|
140
|
+
checksum_crc64nvme: ::String?,
|
|
135
141
|
checksum_sha1: ::String?,
|
|
136
142
|
checksum_sha256: ::String?,
|
|
137
143
|
part_number: ::Integer?
|
|
@@ -141,8 +147,11 @@ module Aws
|
|
|
141
147
|
upload_id: ::String,
|
|
142
148
|
?checksum_crc32: ::String,
|
|
143
149
|
?checksum_crc32c: ::String,
|
|
150
|
+
?checksum_crc64nvme: ::String,
|
|
144
151
|
?checksum_sha1: ::String,
|
|
145
152
|
?checksum_sha256: ::String,
|
|
153
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
|
|
154
|
+
?mpu_object_size: ::Integer,
|
|
146
155
|
?request_payer: ("requester"),
|
|
147
156
|
?expected_bucket_owner: ::String,
|
|
148
157
|
?if_match: ::String,
|
|
@@ -159,7 +168,7 @@ module Aws
|
|
|
159
168
|
def expiration: () -> ::String
|
|
160
169
|
def copy_source_version_id: () -> ::String
|
|
161
170
|
def version_id: () -> ::String
|
|
162
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
171
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
163
172
|
def sse_customer_algorithm: () -> ::String
|
|
164
173
|
def sse_customer_key_md5: () -> ::String
|
|
165
174
|
def ssekms_key_id: () -> ::String
|
|
@@ -172,7 +181,7 @@ module Aws
|
|
|
172
181
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
|
|
173
182
|
bucket: ::String,
|
|
174
183
|
?cache_control: ::String,
|
|
175
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
184
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
176
185
|
?content_disposition: ::String,
|
|
177
186
|
?content_encoding: ::String,
|
|
178
187
|
?content_language: ::String,
|
|
@@ -187,12 +196,14 @@ module Aws
|
|
|
187
196
|
?grant_read: ::String,
|
|
188
197
|
?grant_read_acp: ::String,
|
|
189
198
|
?grant_write_acp: ::String,
|
|
199
|
+
?if_match: ::String,
|
|
200
|
+
?if_none_match: ::String,
|
|
190
201
|
key: ::String,
|
|
191
202
|
?metadata: Hash[::String, ::String],
|
|
192
203
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
193
204
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
194
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
195
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
|
205
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
206
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
196
207
|
?website_redirect_location: ::String,
|
|
197
208
|
?sse_customer_algorithm: ::String,
|
|
198
209
|
?sse_customer_key: ::String,
|
|
@@ -216,13 +227,14 @@ module Aws
|
|
|
216
227
|
interface _CreateBucketResponseSuccess
|
|
217
228
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBucketOutput]
|
|
218
229
|
def location: () -> ::String
|
|
230
|
+
def bucket_arn: () -> ::String
|
|
219
231
|
end
|
|
220
232
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket-instance_method
|
|
221
233
|
def create_bucket: (
|
|
222
234
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
|
|
223
235
|
bucket: ::String,
|
|
224
236
|
?create_bucket_configuration: {
|
|
225
|
-
location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
|
|
237
|
+
location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
|
|
226
238
|
location: {
|
|
227
239
|
type: ("AvailabilityZone" | "LocalZone")?,
|
|
228
240
|
name: ::String?
|
|
@@ -230,7 +242,13 @@ module Aws
|
|
|
230
242
|
bucket: {
|
|
231
243
|
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
|
232
244
|
type: ("Directory")?
|
|
233
|
-
}
|
|
245
|
+
}?,
|
|
246
|
+
tags: Array[
|
|
247
|
+
{
|
|
248
|
+
key: ::String,
|
|
249
|
+
value: ::String
|
|
250
|
+
},
|
|
251
|
+
]?
|
|
234
252
|
},
|
|
235
253
|
?grant_full_control: ::String,
|
|
236
254
|
?grant_read: ::String,
|
|
@@ -242,11 +260,39 @@ module Aws
|
|
|
242
260
|
) -> _CreateBucketResponseSuccess
|
|
243
261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
|
|
244
262
|
|
|
263
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_configuration-instance_method
|
|
264
|
+
def create_bucket_metadata_configuration: (
|
|
265
|
+
bucket: ::String,
|
|
266
|
+
?content_md5: ::String,
|
|
267
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
268
|
+
metadata_configuration: {
|
|
269
|
+
journal_table_configuration: {
|
|
270
|
+
record_expiration: {
|
|
271
|
+
expiration: ("ENABLED" | "DISABLED"),
|
|
272
|
+
days: ::Integer?
|
|
273
|
+
},
|
|
274
|
+
encryption_configuration: {
|
|
275
|
+
sse_algorithm: ("aws:kms" | "AES256"),
|
|
276
|
+
kms_key_arn: ::String?
|
|
277
|
+
}?
|
|
278
|
+
},
|
|
279
|
+
inventory_table_configuration: {
|
|
280
|
+
configuration_state: ("ENABLED" | "DISABLED"),
|
|
281
|
+
encryption_configuration: {
|
|
282
|
+
sse_algorithm: ("aws:kms" | "AES256"),
|
|
283
|
+
kms_key_arn: ::String?
|
|
284
|
+
}?
|
|
285
|
+
}?
|
|
286
|
+
},
|
|
287
|
+
?expected_bucket_owner: ::String
|
|
288
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
289
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
290
|
+
|
|
245
291
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_table_configuration-instance_method
|
|
246
292
|
def create_bucket_metadata_table_configuration: (
|
|
247
293
|
bucket: ::String,
|
|
248
294
|
?content_md5: ::String,
|
|
249
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
295
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
250
296
|
metadata_table_configuration: {
|
|
251
297
|
s3_tables_destination: {
|
|
252
298
|
table_bucket_arn: ::String,
|
|
@@ -264,14 +310,15 @@ module Aws
|
|
|
264
310
|
def bucket: () -> ::String
|
|
265
311
|
def key: () -> ::String
|
|
266
312
|
def upload_id: () -> ::String
|
|
267
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
313
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
268
314
|
def sse_customer_algorithm: () -> ::String
|
|
269
315
|
def sse_customer_key_md5: () -> ::String
|
|
270
316
|
def ssekms_key_id: () -> ::String
|
|
271
317
|
def ssekms_encryption_context: () -> ::String
|
|
272
318
|
def bucket_key_enabled: () -> bool
|
|
273
319
|
def request_charged: () -> ("requester")
|
|
274
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
320
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
321
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
275
322
|
end
|
|
276
323
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
|
|
277
324
|
def create_multipart_upload: (
|
|
@@ -289,8 +336,8 @@ module Aws
|
|
|
289
336
|
?grant_write_acp: ::String,
|
|
290
337
|
key: ::String,
|
|
291
338
|
?metadata: Hash[::String, ::String],
|
|
292
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
293
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
|
339
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
340
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
294
341
|
?website_redirect_location: ::String,
|
|
295
342
|
?sse_customer_algorithm: ::String,
|
|
296
343
|
?sse_customer_key: ::String,
|
|
@@ -304,13 +351,14 @@ module Aws
|
|
|
304
351
|
?object_lock_retain_until_date: ::Time,
|
|
305
352
|
?object_lock_legal_hold_status: ("ON" | "OFF"),
|
|
306
353
|
?expected_bucket_owner: ::String,
|
|
307
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
354
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
355
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
308
356
|
) -> _CreateMultipartUploadResponseSuccess
|
|
309
357
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
|
|
310
358
|
|
|
311
359
|
interface _CreateSessionResponseSuccess
|
|
312
360
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionOutput]
|
|
313
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
361
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
314
362
|
def ssekms_key_id: () -> ::String
|
|
315
363
|
def ssekms_encryption_context: () -> ::String
|
|
316
364
|
def bucket_key_enabled: () -> bool
|
|
@@ -320,7 +368,7 @@ module Aws
|
|
|
320
368
|
def create_session: (
|
|
321
369
|
?session_mode: ("ReadOnly" | "ReadWrite"),
|
|
322
370
|
bucket: ::String,
|
|
323
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
371
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
324
372
|
?ssekms_key_id: ::String,
|
|
325
373
|
?ssekms_encryption_context: ::String,
|
|
326
374
|
?bucket_key_enabled: bool
|
|
@@ -359,7 +407,8 @@ module Aws
|
|
|
359
407
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_intelligent_tiering_configuration-instance_method
|
|
360
408
|
def delete_bucket_intelligent_tiering_configuration: (
|
|
361
409
|
bucket: ::String,
|
|
362
|
-
id: ::String
|
|
410
|
+
id: ::String,
|
|
411
|
+
?expected_bucket_owner: ::String
|
|
363
412
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
364
413
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
365
414
|
|
|
@@ -378,6 +427,13 @@ module Aws
|
|
|
378
427
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
379
428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
380
429
|
|
|
430
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_configuration-instance_method
|
|
431
|
+
def delete_bucket_metadata_configuration: (
|
|
432
|
+
bucket: ::String,
|
|
433
|
+
?expected_bucket_owner: ::String
|
|
434
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
435
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
436
|
+
|
|
381
437
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_table_configuration-instance_method
|
|
382
438
|
def delete_bucket_metadata_table_configuration: (
|
|
383
439
|
bucket: ::String,
|
|
@@ -487,7 +543,7 @@ module Aws
|
|
|
487
543
|
?request_payer: ("requester"),
|
|
488
544
|
?bypass_governance_retention: bool,
|
|
489
545
|
?expected_bucket_owner: ::String,
|
|
490
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
546
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
491
547
|
) -> _DeleteObjectsResponseSuccess
|
|
492
548
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
|
|
493
549
|
|
|
@@ -498,6 +554,17 @@ module Aws
|
|
|
498
554
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
499
555
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
500
556
|
|
|
557
|
+
interface _GetBucketAbacResponseSuccess
|
|
558
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAbacOutput]
|
|
559
|
+
def abac_status: () -> Types::AbacStatus
|
|
560
|
+
end
|
|
561
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_abac-instance_method
|
|
562
|
+
def get_bucket_abac: (
|
|
563
|
+
bucket: ::String,
|
|
564
|
+
?expected_bucket_owner: ::String
|
|
565
|
+
) -> _GetBucketAbacResponseSuccess
|
|
566
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketAbacResponseSuccess
|
|
567
|
+
|
|
501
568
|
interface _GetBucketAccelerateConfigurationResponseSuccess
|
|
502
569
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAccelerateConfigurationOutput]
|
|
503
570
|
def status: () -> ("Enabled" | "Suspended")
|
|
@@ -564,7 +631,8 @@ module Aws
|
|
|
564
631
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_intelligent_tiering_configuration-instance_method
|
|
565
632
|
def get_bucket_intelligent_tiering_configuration: (
|
|
566
633
|
bucket: ::String,
|
|
567
|
-
id: ::String
|
|
634
|
+
id: ::String,
|
|
635
|
+
?expected_bucket_owner: ::String
|
|
568
636
|
) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
|
|
569
637
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
|
|
570
638
|
|
|
@@ -605,7 +673,7 @@ module Aws
|
|
|
605
673
|
|
|
606
674
|
interface _GetBucketLocationResponseSuccess
|
|
607
675
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLocationOutput]
|
|
608
|
-
def location_constraint: () -> ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
|
676
|
+
def location_constraint: () -> ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
|
609
677
|
end
|
|
610
678
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_location-instance_method
|
|
611
679
|
def get_bucket_location: (
|
|
@@ -625,6 +693,17 @@ module Aws
|
|
|
625
693
|
) -> _GetBucketLoggingResponseSuccess
|
|
626
694
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
|
|
627
695
|
|
|
696
|
+
interface _GetBucketMetadataConfigurationResponseSuccess
|
|
697
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataConfigurationOutput]
|
|
698
|
+
def get_bucket_metadata_configuration_result: () -> Types::GetBucketMetadataConfigurationResult
|
|
699
|
+
end
|
|
700
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_configuration-instance_method
|
|
701
|
+
def get_bucket_metadata_configuration: (
|
|
702
|
+
bucket: ::String,
|
|
703
|
+
?expected_bucket_owner: ::String
|
|
704
|
+
) -> _GetBucketMetadataConfigurationResponseSuccess
|
|
705
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataConfigurationResponseSuccess
|
|
706
|
+
|
|
628
707
|
interface _GetBucketMetadataTableConfigurationResponseSuccess
|
|
629
708
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataTableConfigurationOutput]
|
|
630
709
|
def get_bucket_metadata_table_configuration_result: () -> Types::GetBucketMetadataTableConfigurationResult
|
|
@@ -779,8 +858,10 @@ module Aws
|
|
|
779
858
|
def etag: () -> ::String
|
|
780
859
|
def checksum_crc32: () -> ::String
|
|
781
860
|
def checksum_crc32c: () -> ::String
|
|
861
|
+
def checksum_crc64nvme: () -> ::String
|
|
782
862
|
def checksum_sha1: () -> ::String
|
|
783
863
|
def checksum_sha256: () -> ::String
|
|
864
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
784
865
|
def missing_meta: () -> ::Integer
|
|
785
866
|
def version_id: () -> ::String
|
|
786
867
|
def cache_control: () -> ::String
|
|
@@ -792,13 +873,13 @@ module Aws
|
|
|
792
873
|
def expires: () -> ::Time
|
|
793
874
|
def expires_string: () -> ::String
|
|
794
875
|
def website_redirect_location: () -> ::String
|
|
795
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
876
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
796
877
|
def metadata: () -> ::Hash[::String, ::String]
|
|
797
878
|
def sse_customer_algorithm: () -> ::String
|
|
798
879
|
def sse_customer_key_md5: () -> ::String
|
|
799
880
|
def ssekms_key_id: () -> ::String
|
|
800
881
|
def bucket_key_enabled: () -> bool
|
|
801
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
882
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
802
883
|
def request_charged: () -> ("requester")
|
|
803
884
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
804
885
|
def parts_count: () -> ::Integer
|
|
@@ -858,7 +939,7 @@ module Aws
|
|
|
858
939
|
def etag: () -> ::String
|
|
859
940
|
def checksum: () -> Types::Checksum
|
|
860
941
|
def object_parts: () -> Types::GetObjectAttributesParts
|
|
861
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
942
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
862
943
|
def object_size: () -> ::Integer
|
|
863
944
|
end
|
|
864
945
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
|
|
@@ -958,6 +1039,7 @@ module Aws
|
|
|
958
1039
|
|
|
959
1040
|
interface _HeadBucketResponseSuccess
|
|
960
1041
|
include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
|
|
1042
|
+
def bucket_arn: () -> ::String
|
|
961
1043
|
def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
|
|
962
1044
|
def bucket_location_name: () -> ::String
|
|
963
1045
|
def bucket_region: () -> ::String
|
|
@@ -981,8 +1063,10 @@ module Aws
|
|
|
981
1063
|
def content_length: () -> ::Integer
|
|
982
1064
|
def checksum_crc32: () -> ::String
|
|
983
1065
|
def checksum_crc32c: () -> ::String
|
|
1066
|
+
def checksum_crc64nvme: () -> ::String
|
|
984
1067
|
def checksum_sha1: () -> ::String
|
|
985
1068
|
def checksum_sha256: () -> ::String
|
|
1069
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
986
1070
|
def etag: () -> ::String
|
|
987
1071
|
def missing_meta: () -> ::Integer
|
|
988
1072
|
def version_id: () -> ::String
|
|
@@ -991,19 +1075,21 @@ module Aws
|
|
|
991
1075
|
def content_encoding: () -> ::String
|
|
992
1076
|
def content_language: () -> ::String
|
|
993
1077
|
def content_type: () -> ::String
|
|
1078
|
+
def content_range: () -> ::String
|
|
994
1079
|
def expires: () -> ::Time
|
|
995
1080
|
def expires_string: () -> ::String
|
|
996
1081
|
def website_redirect_location: () -> ::String
|
|
997
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
1082
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
998
1083
|
def metadata: () -> ::Hash[::String, ::String]
|
|
999
1084
|
def sse_customer_algorithm: () -> ::String
|
|
1000
1085
|
def sse_customer_key_md5: () -> ::String
|
|
1001
1086
|
def ssekms_key_id: () -> ::String
|
|
1002
1087
|
def bucket_key_enabled: () -> bool
|
|
1003
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1088
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1004
1089
|
def request_charged: () -> ("requester")
|
|
1005
1090
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1006
1091
|
def parts_count: () -> ::Integer
|
|
1092
|
+
def tag_count: () -> ::Integer
|
|
1007
1093
|
def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
|
|
1008
1094
|
def object_lock_retain_until_date: () -> ::Time
|
|
1009
1095
|
def object_lock_legal_hold_status: () -> ("ON" | "OFF")
|
|
@@ -1059,7 +1145,8 @@ module Aws
|
|
|
1059
1145
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_bucket_intelligent_tiering_configurations-instance_method
|
|
1060
1146
|
def list_bucket_intelligent_tiering_configurations: (
|
|
1061
1147
|
bucket: ::String,
|
|
1062
|
-
?continuation_token: ::String
|
|
1148
|
+
?continuation_token: ::String,
|
|
1149
|
+
?expected_bucket_owner: ::String
|
|
1063
1150
|
) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
|
|
1064
1151
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
|
|
1065
1152
|
|
|
@@ -1257,9 +1344,10 @@ module Aws
|
|
|
1257
1344
|
def parts: () -> ::Array[Types::Part]
|
|
1258
1345
|
def initiator: () -> Types::Initiator
|
|
1259
1346
|
def owner: () -> Types::Owner
|
|
1260
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
|
1347
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1261
1348
|
def request_charged: () -> ("requester")
|
|
1262
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1349
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1350
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
1263
1351
|
end
|
|
1264
1352
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
|
|
1265
1353
|
def list_parts: (
|
|
@@ -1276,6 +1364,18 @@ module Aws
|
|
|
1276
1364
|
) -> _ListPartsResponseSuccess
|
|
1277
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartsResponseSuccess
|
|
1278
1366
|
|
|
1367
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_abac-instance_method
|
|
1368
|
+
def put_bucket_abac: (
|
|
1369
|
+
bucket: ::String,
|
|
1370
|
+
?content_md5: ::String,
|
|
1371
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1372
|
+
?expected_bucket_owner: ::String,
|
|
1373
|
+
abac_status: {
|
|
1374
|
+
status: ("Enabled" | "Disabled")?
|
|
1375
|
+
}
|
|
1376
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1377
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1378
|
+
|
|
1279
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_accelerate_configuration-instance_method
|
|
1280
1380
|
def put_bucket_accelerate_configuration: (
|
|
1281
1381
|
bucket: ::String,
|
|
@@ -1283,7 +1383,7 @@ module Aws
|
|
|
1283
1383
|
status: ("Enabled" | "Suspended")?
|
|
1284
1384
|
},
|
|
1285
1385
|
?expected_bucket_owner: ::String,
|
|
1286
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1386
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1287
1387
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1288
1388
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1289
1389
|
|
|
@@ -1310,7 +1410,7 @@ module Aws
|
|
|
1310
1410
|
},
|
|
1311
1411
|
bucket: ::String,
|
|
1312
1412
|
?content_md5: ::String,
|
|
1313
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1413
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1314
1414
|
?grant_full_control: ::String,
|
|
1315
1415
|
?grant_read: ::String,
|
|
1316
1416
|
?grant_read_acp: ::String,
|
|
@@ -1376,7 +1476,7 @@ module Aws
|
|
|
1376
1476
|
]
|
|
1377
1477
|
},
|
|
1378
1478
|
?content_md5: ::String,
|
|
1379
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1479
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1380
1480
|
?expected_bucket_owner: ::String
|
|
1381
1481
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1382
1482
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -1385,15 +1485,18 @@ module Aws
|
|
|
1385
1485
|
def put_bucket_encryption: (
|
|
1386
1486
|
bucket: ::String,
|
|
1387
1487
|
?content_md5: ::String,
|
|
1388
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1488
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1389
1489
|
server_side_encryption_configuration: {
|
|
1390
1490
|
rules: Array[
|
|
1391
1491
|
{
|
|
1392
1492
|
apply_server_side_encryption_by_default: {
|
|
1393
|
-
sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
1493
|
+
sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
1394
1494
|
kms_master_key_id: ::String?
|
|
1395
1495
|
}?,
|
|
1396
|
-
bucket_key_enabled: bool
|
|
1496
|
+
bucket_key_enabled: bool?,
|
|
1497
|
+
blocked_encryption_types: {
|
|
1498
|
+
encryption_type: Array[("NONE" | "SSE-C")]?
|
|
1499
|
+
}?
|
|
1397
1500
|
},
|
|
1398
1501
|
]
|
|
1399
1502
|
},
|
|
@@ -1405,6 +1508,7 @@ module Aws
|
|
|
1405
1508
|
def put_bucket_intelligent_tiering_configuration: (
|
|
1406
1509
|
bucket: ::String,
|
|
1407
1510
|
id: ::String,
|
|
1511
|
+
?expected_bucket_owner: ::String,
|
|
1408
1512
|
intelligent_tiering_configuration: {
|
|
1409
1513
|
id: ::String,
|
|
1410
1514
|
filter: {
|
|
@@ -1460,7 +1564,7 @@ module Aws
|
|
|
1460
1564
|
}?,
|
|
1461
1565
|
id: ::String,
|
|
1462
1566
|
included_object_versions: ("All" | "Current"),
|
|
1463
|
-
optional_fields: Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")]?,
|
|
1567
|
+
optional_fields: Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")]?,
|
|
1464
1568
|
schedule: {
|
|
1465
1569
|
frequency: ("Daily" | "Weekly")
|
|
1466
1570
|
}
|
|
@@ -1473,7 +1577,7 @@ module Aws
|
|
|
1473
1577
|
def put_bucket_lifecycle: (
|
|
1474
1578
|
bucket: ::String,
|
|
1475
1579
|
?content_md5: ::String,
|
|
1476
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1580
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1477
1581
|
?lifecycle_configuration: {
|
|
1478
1582
|
rules: Array[
|
|
1479
1583
|
{
|
|
@@ -1516,7 +1620,7 @@ module Aws
|
|
|
1516
1620
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
|
|
1517
1621
|
def put_bucket_lifecycle_configuration: (
|
|
1518
1622
|
bucket: ::String,
|
|
1519
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1623
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1520
1624
|
?lifecycle_configuration: {
|
|
1521
1625
|
rules: Array[
|
|
1522
1626
|
{
|
|
@@ -1606,7 +1710,7 @@ module Aws
|
|
|
1606
1710
|
}?
|
|
1607
1711
|
},
|
|
1608
1712
|
?content_md5: ::String,
|
|
1609
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1713
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1610
1714
|
?expected_bucket_owner: ::String
|
|
1611
1715
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1612
1716
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -1644,7 +1748,7 @@ module Aws
|
|
|
1644
1748
|
def put_bucket_notification: (
|
|
1645
1749
|
bucket: ::String,
|
|
1646
1750
|
?content_md5: ::String,
|
|
1647
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1751
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1648
1752
|
notification_configuration: {
|
|
1649
1753
|
topic_configuration: {
|
|
1650
1754
|
id: ::String?,
|
|
@@ -1744,7 +1848,8 @@ module Aws
|
|
|
1744
1848
|
object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
|
|
1745
1849
|
},
|
|
1746
1850
|
]
|
|
1747
|
-
}
|
|
1851
|
+
},
|
|
1852
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1748
1853
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1749
1854
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1750
1855
|
|
|
@@ -1752,7 +1857,7 @@ module Aws
|
|
|
1752
1857
|
def put_bucket_policy: (
|
|
1753
1858
|
bucket: ::String,
|
|
1754
1859
|
?content_md5: ::String,
|
|
1755
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1860
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1756
1861
|
?confirm_remove_self_bucket_access: bool,
|
|
1757
1862
|
policy: ::String,
|
|
1758
1863
|
?expected_bucket_owner: ::String
|
|
@@ -1763,7 +1868,7 @@ module Aws
|
|
|
1763
1868
|
def put_bucket_replication: (
|
|
1764
1869
|
bucket: ::String,
|
|
1765
1870
|
?content_md5: ::String,
|
|
1766
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1871
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1767
1872
|
replication_configuration: {
|
|
1768
1873
|
role: ::String,
|
|
1769
1874
|
rules: Array[
|
|
@@ -1802,7 +1907,7 @@ module Aws
|
|
|
1802
1907
|
destination: {
|
|
1803
1908
|
bucket: ::String,
|
|
1804
1909
|
account: ::String?,
|
|
1805
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?,
|
|
1910
|
+
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?,
|
|
1806
1911
|
access_control_translation: {
|
|
1807
1912
|
owner: ("Destination")
|
|
1808
1913
|
}?,
|
|
@@ -1837,7 +1942,7 @@ module Aws
|
|
|
1837
1942
|
def put_bucket_request_payment: (
|
|
1838
1943
|
bucket: ::String,
|
|
1839
1944
|
?content_md5: ::String,
|
|
1840
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1945
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1841
1946
|
request_payment_configuration: {
|
|
1842
1947
|
payer: ("Requester" | "BucketOwner")
|
|
1843
1948
|
},
|
|
@@ -1849,7 +1954,7 @@ module Aws
|
|
|
1849
1954
|
def put_bucket_tagging: (
|
|
1850
1955
|
bucket: ::String,
|
|
1851
1956
|
?content_md5: ::String,
|
|
1852
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1957
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1853
1958
|
tagging: {
|
|
1854
1959
|
tag_set: Array[
|
|
1855
1960
|
{
|
|
@@ -1866,7 +1971,7 @@ module Aws
|
|
|
1866
1971
|
def put_bucket_versioning: (
|
|
1867
1972
|
bucket: ::String,
|
|
1868
1973
|
?content_md5: ::String,
|
|
1869
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1974
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1870
1975
|
?mfa: ::String,
|
|
1871
1976
|
versioning_configuration: {
|
|
1872
1977
|
mfa_delete: ("Enabled" | "Disabled")?,
|
|
@@ -1880,7 +1985,7 @@ module Aws
|
|
|
1880
1985
|
def put_bucket_website: (
|
|
1881
1986
|
bucket: ::String,
|
|
1882
1987
|
?content_md5: ::String,
|
|
1883
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1988
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1884
1989
|
website_configuration: {
|
|
1885
1990
|
error_document: {
|
|
1886
1991
|
key: ::String
|
|
@@ -1918,9 +2023,11 @@ module Aws
|
|
|
1918
2023
|
def etag: () -> ::String
|
|
1919
2024
|
def checksum_crc32: () -> ::String
|
|
1920
2025
|
def checksum_crc32c: () -> ::String
|
|
2026
|
+
def checksum_crc64nvme: () -> ::String
|
|
1921
2027
|
def checksum_sha1: () -> ::String
|
|
1922
2028
|
def checksum_sha256: () -> ::String
|
|
1923
|
-
def
|
|
2029
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
2030
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
1924
2031
|
def version_id: () -> ::String
|
|
1925
2032
|
def sse_customer_algorithm: () -> ::String
|
|
1926
2033
|
def sse_customer_key_md5: () -> ::String
|
|
@@ -1942,9 +2049,10 @@ module Aws
|
|
|
1942
2049
|
?content_length: ::Integer,
|
|
1943
2050
|
?content_md5: ::String,
|
|
1944
2051
|
?content_type: ::String,
|
|
1945
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2052
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1946
2053
|
?checksum_crc32: ::String,
|
|
1947
2054
|
?checksum_crc32c: ::String,
|
|
2055
|
+
?checksum_crc64nvme: ::String,
|
|
1948
2056
|
?checksum_sha1: ::String,
|
|
1949
2057
|
?checksum_sha256: ::String,
|
|
1950
2058
|
?expires: ::Time,
|
|
@@ -1957,8 +2065,8 @@ module Aws
|
|
|
1957
2065
|
key: ::String,
|
|
1958
2066
|
?write_offset_bytes: ::Integer,
|
|
1959
2067
|
?metadata: Hash[::String, ::String],
|
|
1960
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
1961
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
|
2068
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2069
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
1962
2070
|
?website_redirect_location: ::String,
|
|
1963
2071
|
?sse_customer_algorithm: ::String,
|
|
1964
2072
|
?sse_customer_key: ::String,
|
|
@@ -2002,7 +2110,7 @@ module Aws
|
|
|
2002
2110
|
},
|
|
2003
2111
|
bucket: ::String,
|
|
2004
2112
|
?content_md5: ::String,
|
|
2005
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2113
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2006
2114
|
?grant_full_control: ::String,
|
|
2007
2115
|
?grant_read: ::String,
|
|
2008
2116
|
?grant_read_acp: ::String,
|
|
@@ -2029,7 +2137,7 @@ module Aws
|
|
|
2029
2137
|
?request_payer: ("requester"),
|
|
2030
2138
|
?version_id: ::String,
|
|
2031
2139
|
?content_md5: ::String,
|
|
2032
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2140
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2033
2141
|
?expected_bucket_owner: ::String
|
|
2034
2142
|
) -> _PutObjectLegalHoldResponseSuccess
|
|
2035
2143
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
|
|
@@ -2054,7 +2162,7 @@ module Aws
|
|
|
2054
2162
|
?request_payer: ("requester"),
|
|
2055
2163
|
?token: ::String,
|
|
2056
2164
|
?content_md5: ::String,
|
|
2057
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2165
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2058
2166
|
?expected_bucket_owner: ::String
|
|
2059
2167
|
) -> _PutObjectLockConfigurationResponseSuccess
|
|
2060
2168
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
|
|
@@ -2075,7 +2183,7 @@ module Aws
|
|
|
2075
2183
|
?version_id: ::String,
|
|
2076
2184
|
?bypass_governance_retention: bool,
|
|
2077
2185
|
?content_md5: ::String,
|
|
2078
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2186
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2079
2187
|
?expected_bucket_owner: ::String
|
|
2080
2188
|
) -> _PutObjectRetentionResponseSuccess
|
|
2081
2189
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
|
|
@@ -2090,7 +2198,7 @@ module Aws
|
|
|
2090
2198
|
key: ::String,
|
|
2091
2199
|
?version_id: ::String,
|
|
2092
2200
|
?content_md5: ::String,
|
|
2093
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2201
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2094
2202
|
tagging: {
|
|
2095
2203
|
tag_set: Array[
|
|
2096
2204
|
{
|
|
@@ -2108,7 +2216,7 @@ module Aws
|
|
|
2108
2216
|
def put_public_access_block: (
|
|
2109
2217
|
bucket: ::String,
|
|
2110
2218
|
?content_md5: ::String,
|
|
2111
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2219
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2112
2220
|
public_access_block_configuration: {
|
|
2113
2221
|
block_public_acls: bool?,
|
|
2114
2222
|
ignore_public_acls: bool?,
|
|
@@ -2119,6 +2227,26 @@ module Aws
|
|
|
2119
2227
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2120
2228
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2121
2229
|
|
|
2230
|
+
interface _RenameObjectResponseSuccess
|
|
2231
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RenameObjectOutput]
|
|
2232
|
+
end
|
|
2233
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#rename_object-instance_method
|
|
2234
|
+
def rename_object: (
|
|
2235
|
+
bucket: ::String,
|
|
2236
|
+
key: ::String,
|
|
2237
|
+
rename_source: ::String,
|
|
2238
|
+
?destination_if_match: ::String,
|
|
2239
|
+
?destination_if_none_match: ::String,
|
|
2240
|
+
?destination_if_modified_since: ::Time,
|
|
2241
|
+
?destination_if_unmodified_since: ::Time,
|
|
2242
|
+
?source_if_match: ::String,
|
|
2243
|
+
?source_if_none_match: ::String,
|
|
2244
|
+
?source_if_modified_since: ::Time,
|
|
2245
|
+
?source_if_unmodified_since: ::Time,
|
|
2246
|
+
?client_token: ::String
|
|
2247
|
+
) -> _RenameObjectResponseSuccess
|
|
2248
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RenameObjectResponseSuccess
|
|
2249
|
+
|
|
2122
2250
|
interface _RestoreObjectResponseSuccess
|
|
2123
2251
|
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreObjectOutput]
|
|
2124
2252
|
def request_charged: () -> ("requester")
|
|
@@ -2175,7 +2303,7 @@ module Aws
|
|
|
2175
2303
|
bucket_name: ::String,
|
|
2176
2304
|
prefix: ::String,
|
|
2177
2305
|
encryption: {
|
|
2178
|
-
encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
2306
|
+
encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2179
2307
|
kms_key_id: ::String?,
|
|
2180
2308
|
kms_context: ::String?
|
|
2181
2309
|
}?,
|
|
@@ -2206,12 +2334,12 @@ module Aws
|
|
|
2206
2334
|
value: ::String?
|
|
2207
2335
|
},
|
|
2208
2336
|
]?,
|
|
2209
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?
|
|
2337
|
+
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?
|
|
2210
2338
|
}?
|
|
2211
2339
|
}?
|
|
2212
2340
|
},
|
|
2213
2341
|
?request_payer: ("requester"),
|
|
2214
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2342
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2215
2343
|
?expected_bucket_owner: ::String
|
|
2216
2344
|
) -> _RestoreObjectResponseSuccess
|
|
2217
2345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
|
|
@@ -2269,12 +2397,44 @@ module Aws
|
|
|
2269
2397
|
) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2270
2398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2271
2399
|
|
|
2400
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_inventory_table_configuration-instance_method
|
|
2401
|
+
def update_bucket_metadata_inventory_table_configuration: (
|
|
2402
|
+
bucket: ::String,
|
|
2403
|
+
?content_md5: ::String,
|
|
2404
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2405
|
+
inventory_table_configuration: {
|
|
2406
|
+
configuration_state: ("ENABLED" | "DISABLED"),
|
|
2407
|
+
encryption_configuration: {
|
|
2408
|
+
sse_algorithm: ("aws:kms" | "AES256"),
|
|
2409
|
+
kms_key_arn: ::String?
|
|
2410
|
+
}?
|
|
2411
|
+
},
|
|
2412
|
+
?expected_bucket_owner: ::String
|
|
2413
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2414
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2415
|
+
|
|
2416
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_journal_table_configuration-instance_method
|
|
2417
|
+
def update_bucket_metadata_journal_table_configuration: (
|
|
2418
|
+
bucket: ::String,
|
|
2419
|
+
?content_md5: ::String,
|
|
2420
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2421
|
+
journal_table_configuration: {
|
|
2422
|
+
record_expiration: {
|
|
2423
|
+
expiration: ("ENABLED" | "DISABLED"),
|
|
2424
|
+
days: ::Integer?
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2427
|
+
?expected_bucket_owner: ::String
|
|
2428
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2429
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2430
|
+
|
|
2272
2431
|
interface _UploadPartResponseSuccess
|
|
2273
2432
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartOutput]
|
|
2274
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2433
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2275
2434
|
def etag: () -> ::String
|
|
2276
2435
|
def checksum_crc32: () -> ::String
|
|
2277
2436
|
def checksum_crc32c: () -> ::String
|
|
2437
|
+
def checksum_crc64nvme: () -> ::String
|
|
2278
2438
|
def checksum_sha1: () -> ::String
|
|
2279
2439
|
def checksum_sha256: () -> ::String
|
|
2280
2440
|
def sse_customer_algorithm: () -> ::String
|
|
@@ -2289,9 +2449,10 @@ module Aws
|
|
|
2289
2449
|
bucket: ::String,
|
|
2290
2450
|
?content_length: ::Integer,
|
|
2291
2451
|
?content_md5: ::String,
|
|
2292
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2452
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2293
2453
|
?checksum_crc32: ::String,
|
|
2294
2454
|
?checksum_crc32c: ::String,
|
|
2455
|
+
?checksum_crc64nvme: ::String,
|
|
2295
2456
|
?checksum_sha1: ::String,
|
|
2296
2457
|
?checksum_sha256: ::String,
|
|
2297
2458
|
key: ::String,
|
|
@@ -2309,7 +2470,7 @@ module Aws
|
|
|
2309
2470
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartCopyOutput]
|
|
2310
2471
|
def copy_source_version_id: () -> ::String
|
|
2311
2472
|
def copy_part_result: () -> Types::CopyPartResult
|
|
2312
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2473
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2313
2474
|
def sse_customer_algorithm: () -> ::String
|
|
2314
2475
|
def sse_customer_key_md5: () -> ::String
|
|
2315
2476
|
def ssekms_key_id: () -> ::String
|
|
@@ -2358,6 +2519,7 @@ module Aws
|
|
|
2358
2519
|
?content_type: ::String,
|
|
2359
2520
|
?checksum_crc32: ::String,
|
|
2360
2521
|
?checksum_crc32c: ::String,
|
|
2522
|
+
?checksum_crc64nvme: ::String,
|
|
2361
2523
|
?checksum_sha1: ::String,
|
|
2362
2524
|
?checksum_sha256: ::String,
|
|
2363
2525
|
?delete_marker: bool,
|
|
@@ -2374,11 +2536,11 @@ module Aws
|
|
|
2374
2536
|
?replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED"),
|
|
2375
2537
|
?request_charged: ("requester"),
|
|
2376
2538
|
?restore: ::String,
|
|
2377
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
2539
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2378
2540
|
?sse_customer_algorithm: ::String,
|
|
2379
2541
|
?ssekms_key_id: ::String,
|
|
2380
2542
|
?sse_customer_key_md5: ::String,
|
|
2381
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
|
2543
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
2382
2544
|
?tag_count: ::Integer,
|
|
2383
2545
|
?version_id: ::String,
|
|
2384
2546
|
?bucket_key_enabled: bool
|