aws-sdk-s3 1.151.0 → 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 +352 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +12 -3
- data/lib/aws-sdk-s3/bucket.rb +358 -109
- data/lib/aws-sdk-s3/bucket_acl.rb +10 -9
- data/lib/aws-sdk-s3/bucket_cors.rb +10 -9
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +11 -6
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +64 -7
- data/lib/aws-sdk-s3/bucket_logging.rb +5 -5
- data/lib/aws-sdk-s3/bucket_notification.rb +3 -3
- data/lib/aws-sdk-s3/bucket_policy.rb +14 -13
- data/lib/aws-sdk-s3/bucket_request_payment.rb +6 -6
- data/lib/aws-sdk-s3/bucket_tagging.rb +7 -7
- data/lib/aws-sdk-s3/bucket_versioning.rb +47 -14
- data/lib/aws-sdk-s3/bucket_website.rb +7 -7
- data/lib/aws-sdk-s3/client.rb +5530 -2075
- data/lib/aws-sdk-s3/client_api.rb +660 -162
- data/lib/aws-sdk-s3/customizations/bucket.rb +1 -1
- data/lib/aws-sdk-s3/customizations/object.rb +87 -91
- data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
- data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
- data/lib/aws-sdk-s3/customizations.rb +28 -39
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +4 -4
- 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 +4 -2
- data/lib/aws-sdk-s3/encryptionV2/client.rb +100 -25
- 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 +10 -2
- 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 +37 -34
- data/lib/aws-sdk-s3/endpoint_provider.rb +572 -277
- data/lib/aws-sdk-s3/endpoints.rb +566 -1612
- data/lib/aws-sdk-s3/errors.rb +58 -0
- data/lib/aws-sdk-s3/file_downloader.rb +192 -146
- data/lib/aws-sdk-s3/file_uploader.rb +10 -14
- 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 +97 -108
- data/lib/aws-sdk-s3/multipart_upload.rb +112 -12
- data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +55 -39
- data/lib/aws-sdk-s3/object.rb +713 -227
- data/lib/aws-sdk-s3/object_acl.rb +15 -9
- data/lib/aws-sdk-s3/object_copier.rb +1 -1
- data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
- data/lib/aws-sdk-s3/object_summary.rb +592 -173
- data/lib/aws-sdk-s3/object_version.rb +102 -17
- data/lib/aws-sdk-s3/plugins/access_grants.rb +75 -5
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +25 -213
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +18 -21
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +55 -18
- 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 +5 -5
- data/lib/aws-sdk-s3/resource.rb +53 -20
- data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
- data/lib/aws-sdk-s3/types.rb +4705 -1528
- data/lib/aws-sdk-s3.rb +35 -31
- data/sig/bucket.rbs +28 -9
- 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 +8 -4
- 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 +322 -72
- data/sig/errors.rbs +10 -0
- data/sig/multipart_upload.rbs +13 -3
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +44 -16
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +29 -16
- data/sig/object_version.rbs +15 -3
- data/sig/resource.rbs +20 -5
- data/sig/types.rbs +403 -66
- data/sig/waiters.rbs +12 -0
- metadata +29 -12
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/client.rbs
CHANGED
|
@@ -17,8 +17,10 @@ module Aws
|
|
|
17
17
|
?access_grants: bool,
|
|
18
18
|
?access_grants_credentials_provider: untyped,
|
|
19
19
|
?access_key_id: String,
|
|
20
|
+
?account_id: String,
|
|
20
21
|
?active_endpoint_cache: bool,
|
|
21
22
|
?adaptive_retry_wait_to_fill: bool,
|
|
23
|
+
?auth_scheme_preference: Array[String],
|
|
22
24
|
?client_side_monitoring: bool,
|
|
23
25
|
?client_side_monitoring_client_id: String,
|
|
24
26
|
?client_side_monitoring_host: String,
|
|
@@ -48,8 +50,10 @@ module Aws
|
|
|
48
50
|
?max_attempts: Integer,
|
|
49
51
|
?output_event_stream_handler: Proc,
|
|
50
52
|
?profile: String,
|
|
53
|
+
?request_checksum_calculation: String,
|
|
51
54
|
?request_min_compression_size_bytes: Integer,
|
|
52
55
|
?require_https_for_sse_cpk: bool,
|
|
56
|
+
?response_checksum_validation: String,
|
|
53
57
|
?retry_backoff: Proc,
|
|
54
58
|
?retry_base_delay: Float,
|
|
55
59
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
@@ -62,7 +66,9 @@ module Aws
|
|
|
62
66
|
?sdk_ua_app_id: String,
|
|
63
67
|
?secret_access_key: String,
|
|
64
68
|
?session_token: String,
|
|
69
|
+
?sigv4a_signing_region_set: Array[String],
|
|
65
70
|
?stub_responses: untyped,
|
|
71
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
66
72
|
?token_provider: untyped,
|
|
67
73
|
?use_accelerate_endpoint: bool,
|
|
68
74
|
?use_dualstack_endpoint: bool,
|
|
@@ -97,7 +103,8 @@ module Aws
|
|
|
97
103
|
key: ::String,
|
|
98
104
|
upload_id: ::String,
|
|
99
105
|
?request_payer: ("requester"),
|
|
100
|
-
?expected_bucket_owner: ::String
|
|
106
|
+
?expected_bucket_owner: ::String,
|
|
107
|
+
?if_match_initiated_time: ::Time
|
|
101
108
|
) -> _AbortMultipartUploadResponseSuccess
|
|
102
109
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AbortMultipartUploadResponseSuccess
|
|
103
110
|
|
|
@@ -110,9 +117,11 @@ module Aws
|
|
|
110
117
|
def etag: () -> ::String
|
|
111
118
|
def checksum_crc32: () -> ::String
|
|
112
119
|
def checksum_crc32c: () -> ::String
|
|
120
|
+
def checksum_crc64nvme: () -> ::String
|
|
113
121
|
def checksum_sha1: () -> ::String
|
|
114
122
|
def checksum_sha256: () -> ::String
|
|
115
|
-
def
|
|
123
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
124
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
116
125
|
def version_id: () -> ::String
|
|
117
126
|
def ssekms_key_id: () -> ::String
|
|
118
127
|
def bucket_key_enabled: () -> bool
|
|
@@ -128,6 +137,7 @@ module Aws
|
|
|
128
137
|
etag: ::String?,
|
|
129
138
|
checksum_crc32: ::String?,
|
|
130
139
|
checksum_crc32c: ::String?,
|
|
140
|
+
checksum_crc64nvme: ::String?,
|
|
131
141
|
checksum_sha1: ::String?,
|
|
132
142
|
checksum_sha256: ::String?,
|
|
133
143
|
part_number: ::Integer?
|
|
@@ -137,10 +147,15 @@ module Aws
|
|
|
137
147
|
upload_id: ::String,
|
|
138
148
|
?checksum_crc32: ::String,
|
|
139
149
|
?checksum_crc32c: ::String,
|
|
150
|
+
?checksum_crc64nvme: ::String,
|
|
140
151
|
?checksum_sha1: ::String,
|
|
141
152
|
?checksum_sha256: ::String,
|
|
153
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
|
|
154
|
+
?mpu_object_size: ::Integer,
|
|
142
155
|
?request_payer: ("requester"),
|
|
143
156
|
?expected_bucket_owner: ::String,
|
|
157
|
+
?if_match: ::String,
|
|
158
|
+
?if_none_match: ::String,
|
|
144
159
|
?sse_customer_algorithm: ::String,
|
|
145
160
|
?sse_customer_key: ::String,
|
|
146
161
|
?sse_customer_key_md5: ::String
|
|
@@ -153,7 +168,7 @@ module Aws
|
|
|
153
168
|
def expiration: () -> ::String
|
|
154
169
|
def copy_source_version_id: () -> ::String
|
|
155
170
|
def version_id: () -> ::String
|
|
156
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
171
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
157
172
|
def sse_customer_algorithm: () -> ::String
|
|
158
173
|
def sse_customer_key_md5: () -> ::String
|
|
159
174
|
def ssekms_key_id: () -> ::String
|
|
@@ -166,7 +181,7 @@ module Aws
|
|
|
166
181
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
|
|
167
182
|
bucket: ::String,
|
|
168
183
|
?cache_control: ::String,
|
|
169
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
184
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
170
185
|
?content_disposition: ::String,
|
|
171
186
|
?content_encoding: ::String,
|
|
172
187
|
?content_language: ::String,
|
|
@@ -181,12 +196,14 @@ module Aws
|
|
|
181
196
|
?grant_read: ::String,
|
|
182
197
|
?grant_read_acp: ::String,
|
|
183
198
|
?grant_write_acp: ::String,
|
|
199
|
+
?if_match: ::String,
|
|
200
|
+
?if_none_match: ::String,
|
|
184
201
|
key: ::String,
|
|
185
202
|
?metadata: Hash[::String, ::String],
|
|
186
203
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
187
204
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
188
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
189
|
-
?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"),
|
|
190
207
|
?website_redirect_location: ::String,
|
|
191
208
|
?sse_customer_algorithm: ::String,
|
|
192
209
|
?sse_customer_key: ::String,
|
|
@@ -210,21 +227,28 @@ module Aws
|
|
|
210
227
|
interface _CreateBucketResponseSuccess
|
|
211
228
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBucketOutput]
|
|
212
229
|
def location: () -> ::String
|
|
230
|
+
def bucket_arn: () -> ::String
|
|
213
231
|
end
|
|
214
232
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket-instance_method
|
|
215
233
|
def create_bucket: (
|
|
216
234
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
|
|
217
235
|
bucket: ::String,
|
|
218
236
|
?create_bucket_configuration: {
|
|
219
|
-
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")?,
|
|
220
238
|
location: {
|
|
221
|
-
type: ("AvailabilityZone")?,
|
|
239
|
+
type: ("AvailabilityZone" | "LocalZone")?,
|
|
222
240
|
name: ::String?
|
|
223
241
|
}?,
|
|
224
242
|
bucket: {
|
|
225
|
-
data_redundancy: ("SingleAvailabilityZone")?,
|
|
243
|
+
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
|
226
244
|
type: ("Directory")?
|
|
227
|
-
}
|
|
245
|
+
}?,
|
|
246
|
+
tags: Array[
|
|
247
|
+
{
|
|
248
|
+
key: ::String,
|
|
249
|
+
value: ::String
|
|
250
|
+
},
|
|
251
|
+
]?
|
|
228
252
|
},
|
|
229
253
|
?grant_full_control: ::String,
|
|
230
254
|
?grant_read: ::String,
|
|
@@ -236,6 +260,49 @@ module Aws
|
|
|
236
260
|
) -> _CreateBucketResponseSuccess
|
|
237
261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
|
|
238
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
|
+
|
|
291
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_table_configuration-instance_method
|
|
292
|
+
def create_bucket_metadata_table_configuration: (
|
|
293
|
+
bucket: ::String,
|
|
294
|
+
?content_md5: ::String,
|
|
295
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
296
|
+
metadata_table_configuration: {
|
|
297
|
+
s3_tables_destination: {
|
|
298
|
+
table_bucket_arn: ::String,
|
|
299
|
+
table_name: ::String
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
?expected_bucket_owner: ::String
|
|
303
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
304
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
305
|
+
|
|
239
306
|
interface _CreateMultipartUploadResponseSuccess
|
|
240
307
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultipartUploadOutput]
|
|
241
308
|
def abort_date: () -> ::Time
|
|
@@ -243,14 +310,15 @@ module Aws
|
|
|
243
310
|
def bucket: () -> ::String
|
|
244
311
|
def key: () -> ::String
|
|
245
312
|
def upload_id: () -> ::String
|
|
246
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
313
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
247
314
|
def sse_customer_algorithm: () -> ::String
|
|
248
315
|
def sse_customer_key_md5: () -> ::String
|
|
249
316
|
def ssekms_key_id: () -> ::String
|
|
250
317
|
def ssekms_encryption_context: () -> ::String
|
|
251
318
|
def bucket_key_enabled: () -> bool
|
|
252
319
|
def request_charged: () -> ("requester")
|
|
253
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
320
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
321
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
254
322
|
end
|
|
255
323
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
|
|
256
324
|
def create_multipart_upload: (
|
|
@@ -268,8 +336,8 @@ module Aws
|
|
|
268
336
|
?grant_write_acp: ::String,
|
|
269
337
|
key: ::String,
|
|
270
338
|
?metadata: Hash[::String, ::String],
|
|
271
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
272
|
-
?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"),
|
|
273
341
|
?website_redirect_location: ::String,
|
|
274
342
|
?sse_customer_algorithm: ::String,
|
|
275
343
|
?sse_customer_key: ::String,
|
|
@@ -283,18 +351,27 @@ module Aws
|
|
|
283
351
|
?object_lock_retain_until_date: ::Time,
|
|
284
352
|
?object_lock_legal_hold_status: ("ON" | "OFF"),
|
|
285
353
|
?expected_bucket_owner: ::String,
|
|
286
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
354
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
355
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
287
356
|
) -> _CreateMultipartUploadResponseSuccess
|
|
288
357
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
|
|
289
358
|
|
|
290
359
|
interface _CreateSessionResponseSuccess
|
|
291
360
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionOutput]
|
|
361
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
362
|
+
def ssekms_key_id: () -> ::String
|
|
363
|
+
def ssekms_encryption_context: () -> ::String
|
|
364
|
+
def bucket_key_enabled: () -> bool
|
|
292
365
|
def credentials: () -> Types::SessionCredentials
|
|
293
366
|
end
|
|
294
367
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_session-instance_method
|
|
295
368
|
def create_session: (
|
|
296
369
|
?session_mode: ("ReadOnly" | "ReadWrite"),
|
|
297
|
-
bucket: ::String
|
|
370
|
+
bucket: ::String,
|
|
371
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
372
|
+
?ssekms_key_id: ::String,
|
|
373
|
+
?ssekms_encryption_context: ::String,
|
|
374
|
+
?bucket_key_enabled: bool
|
|
298
375
|
) -> _CreateSessionResponseSuccess
|
|
299
376
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionResponseSuccess
|
|
300
377
|
|
|
@@ -330,7 +407,8 @@ module Aws
|
|
|
330
407
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_intelligent_tiering_configuration-instance_method
|
|
331
408
|
def delete_bucket_intelligent_tiering_configuration: (
|
|
332
409
|
bucket: ::String,
|
|
333
|
-
id: ::String
|
|
410
|
+
id: ::String,
|
|
411
|
+
?expected_bucket_owner: ::String
|
|
334
412
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
335
413
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
336
414
|
|
|
@@ -349,6 +427,20 @@ module Aws
|
|
|
349
427
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
350
428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
351
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
|
+
|
|
437
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_table_configuration-instance_method
|
|
438
|
+
def delete_bucket_metadata_table_configuration: (
|
|
439
|
+
bucket: ::String,
|
|
440
|
+
?expected_bucket_owner: ::String
|
|
441
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
442
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
443
|
+
|
|
352
444
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metrics_configuration-instance_method
|
|
353
445
|
def delete_bucket_metrics_configuration: (
|
|
354
446
|
bucket: ::String,
|
|
@@ -406,7 +498,10 @@ module Aws
|
|
|
406
498
|
?version_id: ::String,
|
|
407
499
|
?request_payer: ("requester"),
|
|
408
500
|
?bypass_governance_retention: bool,
|
|
409
|
-
?expected_bucket_owner: ::String
|
|
501
|
+
?expected_bucket_owner: ::String,
|
|
502
|
+
?if_match: ::String,
|
|
503
|
+
?if_match_last_modified_time: ::Time,
|
|
504
|
+
?if_match_size: ::Integer
|
|
410
505
|
) -> _DeleteObjectResponseSuccess
|
|
411
506
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectResponseSuccess
|
|
412
507
|
|
|
@@ -436,7 +531,10 @@ module Aws
|
|
|
436
531
|
objects: Array[
|
|
437
532
|
{
|
|
438
533
|
key: ::String,
|
|
439
|
-
version_id: ::String
|
|
534
|
+
version_id: ::String?,
|
|
535
|
+
etag: ::String?,
|
|
536
|
+
last_modified_time: ::Time?,
|
|
537
|
+
size: ::Integer?
|
|
440
538
|
},
|
|
441
539
|
],
|
|
442
540
|
quiet: bool?
|
|
@@ -445,7 +543,7 @@ module Aws
|
|
|
445
543
|
?request_payer: ("requester"),
|
|
446
544
|
?bypass_governance_retention: bool,
|
|
447
545
|
?expected_bucket_owner: ::String,
|
|
448
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
546
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
449
547
|
) -> _DeleteObjectsResponseSuccess
|
|
450
548
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
|
|
451
549
|
|
|
@@ -456,6 +554,17 @@ module Aws
|
|
|
456
554
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
457
555
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
458
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
|
+
|
|
459
568
|
interface _GetBucketAccelerateConfigurationResponseSuccess
|
|
460
569
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAccelerateConfigurationOutput]
|
|
461
570
|
def status: () -> ("Enabled" | "Suspended")
|
|
@@ -522,7 +631,8 @@ module Aws
|
|
|
522
631
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_intelligent_tiering_configuration-instance_method
|
|
523
632
|
def get_bucket_intelligent_tiering_configuration: (
|
|
524
633
|
bucket: ::String,
|
|
525
|
-
id: ::String
|
|
634
|
+
id: ::String,
|
|
635
|
+
?expected_bucket_owner: ::String
|
|
526
636
|
) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
|
|
527
637
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
|
|
528
638
|
|
|
@@ -552,6 +662,7 @@ module Aws
|
|
|
552
662
|
interface _GetBucketLifecycleConfigurationResponseSuccess
|
|
553
663
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLifecycleConfigurationOutput]
|
|
554
664
|
def rules: () -> ::Array[Types::LifecycleRule]
|
|
665
|
+
def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
555
666
|
end
|
|
556
667
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_lifecycle_configuration-instance_method
|
|
557
668
|
def get_bucket_lifecycle_configuration: (
|
|
@@ -562,7 +673,7 @@ module Aws
|
|
|
562
673
|
|
|
563
674
|
interface _GetBucketLocationResponseSuccess
|
|
564
675
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLocationOutput]
|
|
565
|
-
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")
|
|
566
677
|
end
|
|
567
678
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_location-instance_method
|
|
568
679
|
def get_bucket_location: (
|
|
@@ -582,6 +693,28 @@ module Aws
|
|
|
582
693
|
) -> _GetBucketLoggingResponseSuccess
|
|
583
694
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
|
|
584
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
|
+
|
|
707
|
+
interface _GetBucketMetadataTableConfigurationResponseSuccess
|
|
708
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataTableConfigurationOutput]
|
|
709
|
+
def get_bucket_metadata_table_configuration_result: () -> Types::GetBucketMetadataTableConfigurationResult
|
|
710
|
+
end
|
|
711
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_table_configuration-instance_method
|
|
712
|
+
def get_bucket_metadata_table_configuration: (
|
|
713
|
+
bucket: ::String,
|
|
714
|
+
?expected_bucket_owner: ::String
|
|
715
|
+
) -> _GetBucketMetadataTableConfigurationResponseSuccess
|
|
716
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataTableConfigurationResponseSuccess
|
|
717
|
+
|
|
585
718
|
interface _GetBucketMetricsConfigurationResponseSuccess
|
|
586
719
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetricsConfigurationOutput]
|
|
587
720
|
def metrics_configuration: () -> Types::MetricsConfiguration
|
|
@@ -725,8 +858,10 @@ module Aws
|
|
|
725
858
|
def etag: () -> ::String
|
|
726
859
|
def checksum_crc32: () -> ::String
|
|
727
860
|
def checksum_crc32c: () -> ::String
|
|
861
|
+
def checksum_crc64nvme: () -> ::String
|
|
728
862
|
def checksum_sha1: () -> ::String
|
|
729
863
|
def checksum_sha256: () -> ::String
|
|
864
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
730
865
|
def missing_meta: () -> ::Integer
|
|
731
866
|
def version_id: () -> ::String
|
|
732
867
|
def cache_control: () -> ::String
|
|
@@ -738,13 +873,13 @@ module Aws
|
|
|
738
873
|
def expires: () -> ::Time
|
|
739
874
|
def expires_string: () -> ::String
|
|
740
875
|
def website_redirect_location: () -> ::String
|
|
741
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
876
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
742
877
|
def metadata: () -> ::Hash[::String, ::String]
|
|
743
878
|
def sse_customer_algorithm: () -> ::String
|
|
744
879
|
def sse_customer_key_md5: () -> ::String
|
|
745
880
|
def ssekms_key_id: () -> ::String
|
|
746
881
|
def bucket_key_enabled: () -> bool
|
|
747
|
-
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")
|
|
748
883
|
def request_charged: () -> ("requester")
|
|
749
884
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
750
885
|
def parts_count: () -> ::Integer
|
|
@@ -804,7 +939,7 @@ module Aws
|
|
|
804
939
|
def etag: () -> ::String
|
|
805
940
|
def checksum: () -> Types::Checksum
|
|
806
941
|
def object_parts: () -> Types::GetObjectAttributesParts
|
|
807
|
-
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")
|
|
808
943
|
def object_size: () -> ::Integer
|
|
809
944
|
end
|
|
810
945
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
|
|
@@ -904,7 +1039,8 @@ module Aws
|
|
|
904
1039
|
|
|
905
1040
|
interface _HeadBucketResponseSuccess
|
|
906
1041
|
include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
|
|
907
|
-
def
|
|
1042
|
+
def bucket_arn: () -> ::String
|
|
1043
|
+
def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
|
|
908
1044
|
def bucket_location_name: () -> ::String
|
|
909
1045
|
def bucket_region: () -> ::String
|
|
910
1046
|
def access_point_alias: () -> bool
|
|
@@ -927,8 +1063,10 @@ module Aws
|
|
|
927
1063
|
def content_length: () -> ::Integer
|
|
928
1064
|
def checksum_crc32: () -> ::String
|
|
929
1065
|
def checksum_crc32c: () -> ::String
|
|
1066
|
+
def checksum_crc64nvme: () -> ::String
|
|
930
1067
|
def checksum_sha1: () -> ::String
|
|
931
1068
|
def checksum_sha256: () -> ::String
|
|
1069
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
932
1070
|
def etag: () -> ::String
|
|
933
1071
|
def missing_meta: () -> ::Integer
|
|
934
1072
|
def version_id: () -> ::String
|
|
@@ -937,19 +1075,21 @@ module Aws
|
|
|
937
1075
|
def content_encoding: () -> ::String
|
|
938
1076
|
def content_language: () -> ::String
|
|
939
1077
|
def content_type: () -> ::String
|
|
1078
|
+
def content_range: () -> ::String
|
|
940
1079
|
def expires: () -> ::Time
|
|
941
1080
|
def expires_string: () -> ::String
|
|
942
1081
|
def website_redirect_location: () -> ::String
|
|
943
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
1082
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
944
1083
|
def metadata: () -> ::Hash[::String, ::String]
|
|
945
1084
|
def sse_customer_algorithm: () -> ::String
|
|
946
1085
|
def sse_customer_key_md5: () -> ::String
|
|
947
1086
|
def ssekms_key_id: () -> ::String
|
|
948
1087
|
def bucket_key_enabled: () -> bool
|
|
949
|
-
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")
|
|
950
1089
|
def request_charged: () -> ("requester")
|
|
951
1090
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
952
1091
|
def parts_count: () -> ::Integer
|
|
1092
|
+
def tag_count: () -> ::Integer
|
|
953
1093
|
def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
|
|
954
1094
|
def object_lock_retain_until_date: () -> ::Time
|
|
955
1095
|
def object_lock_legal_hold_status: () -> ("ON" | "OFF")
|
|
@@ -963,6 +1103,12 @@ module Aws
|
|
|
963
1103
|
?if_unmodified_since: ::Time,
|
|
964
1104
|
key: ::String,
|
|
965
1105
|
?range: ::String,
|
|
1106
|
+
?response_cache_control: ::String,
|
|
1107
|
+
?response_content_disposition: ::String,
|
|
1108
|
+
?response_content_encoding: ::String,
|
|
1109
|
+
?response_content_language: ::String,
|
|
1110
|
+
?response_content_type: ::String,
|
|
1111
|
+
?response_expires: ::Time,
|
|
966
1112
|
?version_id: ::String,
|
|
967
1113
|
?sse_customer_algorithm: ::String,
|
|
968
1114
|
?sse_customer_key: ::String,
|
|
@@ -999,7 +1145,8 @@ module Aws
|
|
|
999
1145
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_bucket_intelligent_tiering_configurations-instance_method
|
|
1000
1146
|
def list_bucket_intelligent_tiering_configurations: (
|
|
1001
1147
|
bucket: ::String,
|
|
1002
|
-
?continuation_token: ::String
|
|
1148
|
+
?continuation_token: ::String,
|
|
1149
|
+
?expected_bucket_owner: ::String
|
|
1003
1150
|
) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
|
|
1004
1151
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
|
|
1005
1152
|
|
|
@@ -1037,9 +1184,16 @@ module Aws
|
|
|
1037
1184
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBucketsOutput]
|
|
1038
1185
|
def buckets: () -> ::Array[Types::Bucket]
|
|
1039
1186
|
def owner: () -> Types::Owner
|
|
1187
|
+
def continuation_token: () -> ::String
|
|
1188
|
+
def prefix: () -> ::String
|
|
1040
1189
|
end
|
|
1041
1190
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_buckets-instance_method
|
|
1042
|
-
def list_buckets: (
|
|
1191
|
+
def list_buckets: (
|
|
1192
|
+
?max_buckets: ::Integer,
|
|
1193
|
+
?continuation_token: ::String,
|
|
1194
|
+
?prefix: ::String,
|
|
1195
|
+
?bucket_region: ::String
|
|
1196
|
+
) -> _ListBucketsResponseSuccess
|
|
1043
1197
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketsResponseSuccess
|
|
1044
1198
|
|
|
1045
1199
|
interface _ListDirectoryBucketsResponseSuccess
|
|
@@ -1190,9 +1344,10 @@ module Aws
|
|
|
1190
1344
|
def parts: () -> ::Array[Types::Part]
|
|
1191
1345
|
def initiator: () -> Types::Initiator
|
|
1192
1346
|
def owner: () -> Types::Owner
|
|
1193
|
-
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")
|
|
1194
1348
|
def request_charged: () -> ("requester")
|
|
1195
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1349
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1350
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
1196
1351
|
end
|
|
1197
1352
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
|
|
1198
1353
|
def list_parts: (
|
|
@@ -1209,6 +1364,18 @@ module Aws
|
|
|
1209
1364
|
) -> _ListPartsResponseSuccess
|
|
1210
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartsResponseSuccess
|
|
1211
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
|
+
|
|
1212
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_accelerate_configuration-instance_method
|
|
1213
1380
|
def put_bucket_accelerate_configuration: (
|
|
1214
1381
|
bucket: ::String,
|
|
@@ -1216,7 +1383,7 @@ module Aws
|
|
|
1216
1383
|
status: ("Enabled" | "Suspended")?
|
|
1217
1384
|
},
|
|
1218
1385
|
?expected_bucket_owner: ::String,
|
|
1219
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1386
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1220
1387
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1221
1388
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1222
1389
|
|
|
@@ -1243,7 +1410,7 @@ module Aws
|
|
|
1243
1410
|
},
|
|
1244
1411
|
bucket: ::String,
|
|
1245
1412
|
?content_md5: ::String,
|
|
1246
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1413
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1247
1414
|
?grant_full_control: ::String,
|
|
1248
1415
|
?grant_read: ::String,
|
|
1249
1416
|
?grant_read_acp: ::String,
|
|
@@ -1309,7 +1476,7 @@ module Aws
|
|
|
1309
1476
|
]
|
|
1310
1477
|
},
|
|
1311
1478
|
?content_md5: ::String,
|
|
1312
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1479
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1313
1480
|
?expected_bucket_owner: ::String
|
|
1314
1481
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1315
1482
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -1318,15 +1485,18 @@ module Aws
|
|
|
1318
1485
|
def put_bucket_encryption: (
|
|
1319
1486
|
bucket: ::String,
|
|
1320
1487
|
?content_md5: ::String,
|
|
1321
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1488
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1322
1489
|
server_side_encryption_configuration: {
|
|
1323
1490
|
rules: Array[
|
|
1324
1491
|
{
|
|
1325
1492
|
apply_server_side_encryption_by_default: {
|
|
1326
|
-
sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
1493
|
+
sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
1327
1494
|
kms_master_key_id: ::String?
|
|
1328
1495
|
}?,
|
|
1329
|
-
bucket_key_enabled: bool
|
|
1496
|
+
bucket_key_enabled: bool?,
|
|
1497
|
+
blocked_encryption_types: {
|
|
1498
|
+
encryption_type: Array[("NONE" | "SSE-C")]?
|
|
1499
|
+
}?
|
|
1330
1500
|
},
|
|
1331
1501
|
]
|
|
1332
1502
|
},
|
|
@@ -1338,6 +1508,7 @@ module Aws
|
|
|
1338
1508
|
def put_bucket_intelligent_tiering_configuration: (
|
|
1339
1509
|
bucket: ::String,
|
|
1340
1510
|
id: ::String,
|
|
1511
|
+
?expected_bucket_owner: ::String,
|
|
1341
1512
|
intelligent_tiering_configuration: {
|
|
1342
1513
|
id: ::String,
|
|
1343
1514
|
filter: {
|
|
@@ -1393,7 +1564,7 @@ module Aws
|
|
|
1393
1564
|
}?,
|
|
1394
1565
|
id: ::String,
|
|
1395
1566
|
included_object_versions: ("All" | "Current"),
|
|
1396
|
-
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")]?,
|
|
1397
1568
|
schedule: {
|
|
1398
1569
|
frequency: ("Daily" | "Weekly")
|
|
1399
1570
|
}
|
|
@@ -1406,7 +1577,7 @@ module Aws
|
|
|
1406
1577
|
def put_bucket_lifecycle: (
|
|
1407
1578
|
bucket: ::String,
|
|
1408
1579
|
?content_md5: ::String,
|
|
1409
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1580
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1410
1581
|
?lifecycle_configuration: {
|
|
1411
1582
|
rules: Array[
|
|
1412
1583
|
{
|
|
@@ -1442,10 +1613,14 @@ module Aws
|
|
|
1442
1613
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1443
1614
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1444
1615
|
|
|
1616
|
+
interface _PutBucketLifecycleConfigurationResponseSuccess
|
|
1617
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutBucketLifecycleConfigurationOutput]
|
|
1618
|
+
def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
1619
|
+
end
|
|
1445
1620
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
|
|
1446
1621
|
def put_bucket_lifecycle_configuration: (
|
|
1447
1622
|
bucket: ::String,
|
|
1448
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1623
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1449
1624
|
?lifecycle_configuration: {
|
|
1450
1625
|
rules: Array[
|
|
1451
1626
|
{
|
|
@@ -1501,9 +1676,10 @@ module Aws
|
|
|
1501
1676
|
},
|
|
1502
1677
|
]
|
|
1503
1678
|
},
|
|
1504
|
-
?expected_bucket_owner: ::String
|
|
1505
|
-
|
|
1506
|
-
|
|
1679
|
+
?expected_bucket_owner: ::String,
|
|
1680
|
+
?transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
1681
|
+
) -> _PutBucketLifecycleConfigurationResponseSuccess
|
|
1682
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutBucketLifecycleConfigurationResponseSuccess
|
|
1507
1683
|
|
|
1508
1684
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_logging-instance_method
|
|
1509
1685
|
def put_bucket_logging: (
|
|
@@ -1534,7 +1710,7 @@ module Aws
|
|
|
1534
1710
|
}?
|
|
1535
1711
|
},
|
|
1536
1712
|
?content_md5: ::String,
|
|
1537
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1713
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1538
1714
|
?expected_bucket_owner: ::String
|
|
1539
1715
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1540
1716
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -1572,7 +1748,7 @@ module Aws
|
|
|
1572
1748
|
def put_bucket_notification: (
|
|
1573
1749
|
bucket: ::String,
|
|
1574
1750
|
?content_md5: ::String,
|
|
1575
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1751
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1576
1752
|
notification_configuration: {
|
|
1577
1753
|
topic_configuration: {
|
|
1578
1754
|
id: ::String?,
|
|
@@ -1672,7 +1848,8 @@ module Aws
|
|
|
1672
1848
|
object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
|
|
1673
1849
|
},
|
|
1674
1850
|
]
|
|
1675
|
-
}
|
|
1851
|
+
},
|
|
1852
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1676
1853
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1677
1854
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1678
1855
|
|
|
@@ -1680,7 +1857,7 @@ module Aws
|
|
|
1680
1857
|
def put_bucket_policy: (
|
|
1681
1858
|
bucket: ::String,
|
|
1682
1859
|
?content_md5: ::String,
|
|
1683
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1860
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1684
1861
|
?confirm_remove_self_bucket_access: bool,
|
|
1685
1862
|
policy: ::String,
|
|
1686
1863
|
?expected_bucket_owner: ::String
|
|
@@ -1691,7 +1868,7 @@ module Aws
|
|
|
1691
1868
|
def put_bucket_replication: (
|
|
1692
1869
|
bucket: ::String,
|
|
1693
1870
|
?content_md5: ::String,
|
|
1694
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1871
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1695
1872
|
replication_configuration: {
|
|
1696
1873
|
role: ::String,
|
|
1697
1874
|
rules: Array[
|
|
@@ -1730,7 +1907,7 @@ module Aws
|
|
|
1730
1907
|
destination: {
|
|
1731
1908
|
bucket: ::String,
|
|
1732
1909
|
account: ::String?,
|
|
1733
|
-
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")?,
|
|
1734
1911
|
access_control_translation: {
|
|
1735
1912
|
owner: ("Destination")
|
|
1736
1913
|
}?,
|
|
@@ -1765,7 +1942,7 @@ module Aws
|
|
|
1765
1942
|
def put_bucket_request_payment: (
|
|
1766
1943
|
bucket: ::String,
|
|
1767
1944
|
?content_md5: ::String,
|
|
1768
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1945
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1769
1946
|
request_payment_configuration: {
|
|
1770
1947
|
payer: ("Requester" | "BucketOwner")
|
|
1771
1948
|
},
|
|
@@ -1777,7 +1954,7 @@ module Aws
|
|
|
1777
1954
|
def put_bucket_tagging: (
|
|
1778
1955
|
bucket: ::String,
|
|
1779
1956
|
?content_md5: ::String,
|
|
1780
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1957
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1781
1958
|
tagging: {
|
|
1782
1959
|
tag_set: Array[
|
|
1783
1960
|
{
|
|
@@ -1794,7 +1971,7 @@ module Aws
|
|
|
1794
1971
|
def put_bucket_versioning: (
|
|
1795
1972
|
bucket: ::String,
|
|
1796
1973
|
?content_md5: ::String,
|
|
1797
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1974
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1798
1975
|
?mfa: ::String,
|
|
1799
1976
|
versioning_configuration: {
|
|
1800
1977
|
mfa_delete: ("Enabled" | "Disabled")?,
|
|
@@ -1808,7 +1985,7 @@ module Aws
|
|
|
1808
1985
|
def put_bucket_website: (
|
|
1809
1986
|
bucket: ::String,
|
|
1810
1987
|
?content_md5: ::String,
|
|
1811
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1988
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1812
1989
|
website_configuration: {
|
|
1813
1990
|
error_document: {
|
|
1814
1991
|
key: ::String
|
|
@@ -1846,15 +2023,18 @@ module Aws
|
|
|
1846
2023
|
def etag: () -> ::String
|
|
1847
2024
|
def checksum_crc32: () -> ::String
|
|
1848
2025
|
def checksum_crc32c: () -> ::String
|
|
2026
|
+
def checksum_crc64nvme: () -> ::String
|
|
1849
2027
|
def checksum_sha1: () -> ::String
|
|
1850
2028
|
def checksum_sha256: () -> ::String
|
|
1851
|
-
def
|
|
2029
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
2030
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
1852
2031
|
def version_id: () -> ::String
|
|
1853
2032
|
def sse_customer_algorithm: () -> ::String
|
|
1854
2033
|
def sse_customer_key_md5: () -> ::String
|
|
1855
2034
|
def ssekms_key_id: () -> ::String
|
|
1856
2035
|
def ssekms_encryption_context: () -> ::String
|
|
1857
2036
|
def bucket_key_enabled: () -> bool
|
|
2037
|
+
def size: () -> ::Integer
|
|
1858
2038
|
def request_charged: () -> ("requester")
|
|
1859
2039
|
end
|
|
1860
2040
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_object-instance_method
|
|
@@ -1869,20 +2049,24 @@ module Aws
|
|
|
1869
2049
|
?content_length: ::Integer,
|
|
1870
2050
|
?content_md5: ::String,
|
|
1871
2051
|
?content_type: ::String,
|
|
1872
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2052
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1873
2053
|
?checksum_crc32: ::String,
|
|
1874
2054
|
?checksum_crc32c: ::String,
|
|
2055
|
+
?checksum_crc64nvme: ::String,
|
|
1875
2056
|
?checksum_sha1: ::String,
|
|
1876
2057
|
?checksum_sha256: ::String,
|
|
1877
2058
|
?expires: ::Time,
|
|
2059
|
+
?if_match: ::String,
|
|
2060
|
+
?if_none_match: ::String,
|
|
1878
2061
|
?grant_full_control: ::String,
|
|
1879
2062
|
?grant_read: ::String,
|
|
1880
2063
|
?grant_read_acp: ::String,
|
|
1881
2064
|
?grant_write_acp: ::String,
|
|
1882
2065
|
key: ::String,
|
|
2066
|
+
?write_offset_bytes: ::Integer,
|
|
1883
2067
|
?metadata: Hash[::String, ::String],
|
|
1884
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
1885
|
-
?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"),
|
|
1886
2070
|
?website_redirect_location: ::String,
|
|
1887
2071
|
?sse_customer_algorithm: ::String,
|
|
1888
2072
|
?sse_customer_key: ::String,
|
|
@@ -1926,7 +2110,7 @@ module Aws
|
|
|
1926
2110
|
},
|
|
1927
2111
|
bucket: ::String,
|
|
1928
2112
|
?content_md5: ::String,
|
|
1929
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2113
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1930
2114
|
?grant_full_control: ::String,
|
|
1931
2115
|
?grant_read: ::String,
|
|
1932
2116
|
?grant_read_acp: ::String,
|
|
@@ -1953,7 +2137,7 @@ module Aws
|
|
|
1953
2137
|
?request_payer: ("requester"),
|
|
1954
2138
|
?version_id: ::String,
|
|
1955
2139
|
?content_md5: ::String,
|
|
1956
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2140
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1957
2141
|
?expected_bucket_owner: ::String
|
|
1958
2142
|
) -> _PutObjectLegalHoldResponseSuccess
|
|
1959
2143
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
|
|
@@ -1978,7 +2162,7 @@ module Aws
|
|
|
1978
2162
|
?request_payer: ("requester"),
|
|
1979
2163
|
?token: ::String,
|
|
1980
2164
|
?content_md5: ::String,
|
|
1981
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2165
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1982
2166
|
?expected_bucket_owner: ::String
|
|
1983
2167
|
) -> _PutObjectLockConfigurationResponseSuccess
|
|
1984
2168
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
|
|
@@ -1999,7 +2183,7 @@ module Aws
|
|
|
1999
2183
|
?version_id: ::String,
|
|
2000
2184
|
?bypass_governance_retention: bool,
|
|
2001
2185
|
?content_md5: ::String,
|
|
2002
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2186
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2003
2187
|
?expected_bucket_owner: ::String
|
|
2004
2188
|
) -> _PutObjectRetentionResponseSuccess
|
|
2005
2189
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
|
|
@@ -2014,7 +2198,7 @@ module Aws
|
|
|
2014
2198
|
key: ::String,
|
|
2015
2199
|
?version_id: ::String,
|
|
2016
2200
|
?content_md5: ::String,
|
|
2017
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2201
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2018
2202
|
tagging: {
|
|
2019
2203
|
tag_set: Array[
|
|
2020
2204
|
{
|
|
@@ -2032,7 +2216,7 @@ module Aws
|
|
|
2032
2216
|
def put_public_access_block: (
|
|
2033
2217
|
bucket: ::String,
|
|
2034
2218
|
?content_md5: ::String,
|
|
2035
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2219
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2036
2220
|
public_access_block_configuration: {
|
|
2037
2221
|
block_public_acls: bool?,
|
|
2038
2222
|
ignore_public_acls: bool?,
|
|
@@ -2043,6 +2227,26 @@ module Aws
|
|
|
2043
2227
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2044
2228
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2045
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
|
+
|
|
2046
2250
|
interface _RestoreObjectResponseSuccess
|
|
2047
2251
|
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreObjectOutput]
|
|
2048
2252
|
def request_charged: () -> ("requester")
|
|
@@ -2099,7 +2303,7 @@ module Aws
|
|
|
2099
2303
|
bucket_name: ::String,
|
|
2100
2304
|
prefix: ::String,
|
|
2101
2305
|
encryption: {
|
|
2102
|
-
encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
2306
|
+
encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2103
2307
|
kms_key_id: ::String?,
|
|
2104
2308
|
kms_context: ::String?
|
|
2105
2309
|
}?,
|
|
@@ -2130,12 +2334,12 @@ module Aws
|
|
|
2130
2334
|
value: ::String?
|
|
2131
2335
|
},
|
|
2132
2336
|
]?,
|
|
2133
|
-
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")?
|
|
2134
2338
|
}?
|
|
2135
2339
|
}?
|
|
2136
2340
|
},
|
|
2137
2341
|
?request_payer: ("requester"),
|
|
2138
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2342
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2139
2343
|
?expected_bucket_owner: ::String
|
|
2140
2344
|
) -> _RestoreObjectResponseSuccess
|
|
2141
2345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
|
|
@@ -2193,12 +2397,44 @@ module Aws
|
|
|
2193
2397
|
) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2194
2398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2195
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
|
+
|
|
2196
2431
|
interface _UploadPartResponseSuccess
|
|
2197
2432
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartOutput]
|
|
2198
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2433
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2199
2434
|
def etag: () -> ::String
|
|
2200
2435
|
def checksum_crc32: () -> ::String
|
|
2201
2436
|
def checksum_crc32c: () -> ::String
|
|
2437
|
+
def checksum_crc64nvme: () -> ::String
|
|
2202
2438
|
def checksum_sha1: () -> ::String
|
|
2203
2439
|
def checksum_sha256: () -> ::String
|
|
2204
2440
|
def sse_customer_algorithm: () -> ::String
|
|
@@ -2213,9 +2449,10 @@ module Aws
|
|
|
2213
2449
|
bucket: ::String,
|
|
2214
2450
|
?content_length: ::Integer,
|
|
2215
2451
|
?content_md5: ::String,
|
|
2216
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2452
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2217
2453
|
?checksum_crc32: ::String,
|
|
2218
2454
|
?checksum_crc32c: ::String,
|
|
2455
|
+
?checksum_crc64nvme: ::String,
|
|
2219
2456
|
?checksum_sha1: ::String,
|
|
2220
2457
|
?checksum_sha256: ::String,
|
|
2221
2458
|
key: ::String,
|
|
@@ -2233,7 +2470,7 @@ module Aws
|
|
|
2233
2470
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartCopyOutput]
|
|
2234
2471
|
def copy_source_version_id: () -> ::String
|
|
2235
2472
|
def copy_part_result: () -> Types::CopyPartResult
|
|
2236
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2473
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2237
2474
|
def sse_customer_algorithm: () -> ::String
|
|
2238
2475
|
def sse_customer_key_md5: () -> ::String
|
|
2239
2476
|
def ssekms_key_id: () -> ::String
|
|
@@ -2282,6 +2519,7 @@ module Aws
|
|
|
2282
2519
|
?content_type: ::String,
|
|
2283
2520
|
?checksum_crc32: ::String,
|
|
2284
2521
|
?checksum_crc32c: ::String,
|
|
2522
|
+
?checksum_crc64nvme: ::String,
|
|
2285
2523
|
?checksum_sha1: ::String,
|
|
2286
2524
|
?checksum_sha256: ::String,
|
|
2287
2525
|
?delete_marker: bool,
|
|
@@ -2298,11 +2536,11 @@ module Aws
|
|
|
2298
2536
|
?replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED"),
|
|
2299
2537
|
?request_charged: ("requester"),
|
|
2300
2538
|
?restore: ::String,
|
|
2301
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
2539
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2302
2540
|
?sse_customer_algorithm: ::String,
|
|
2303
2541
|
?ssekms_key_id: ::String,
|
|
2304
2542
|
?sse_customer_key_md5: ::String,
|
|
2305
|
-
?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"),
|
|
2306
2544
|
?tag_count: ::Integer,
|
|
2307
2545
|
?version_id: ::String,
|
|
2308
2546
|
?bucket_key_enabled: bool
|
|
@@ -2328,6 +2566,12 @@ module Aws
|
|
|
2328
2566
|
?if_unmodified_since: ::Time,
|
|
2329
2567
|
key: ::String,
|
|
2330
2568
|
?range: ::String,
|
|
2569
|
+
?response_cache_control: ::String,
|
|
2570
|
+
?response_content_disposition: ::String,
|
|
2571
|
+
?response_content_encoding: ::String,
|
|
2572
|
+
?response_content_language: ::String,
|
|
2573
|
+
?response_content_type: ::String,
|
|
2574
|
+
?response_expires: ::Time,
|
|
2331
2575
|
?version_id: ::String,
|
|
2332
2576
|
?sse_customer_algorithm: ::String,
|
|
2333
2577
|
?sse_customer_key: ::String,
|
|
@@ -2346,6 +2590,12 @@ module Aws
|
|
|
2346
2590
|
?if_unmodified_since: ::Time,
|
|
2347
2591
|
key: ::String,
|
|
2348
2592
|
?range: ::String,
|
|
2593
|
+
?response_cache_control: ::String,
|
|
2594
|
+
?response_content_disposition: ::String,
|
|
2595
|
+
?response_content_encoding: ::String,
|
|
2596
|
+
?response_content_language: ::String,
|
|
2597
|
+
?response_content_type: ::String,
|
|
2598
|
+
?response_expires: ::Time,
|
|
2349
2599
|
?version_id: ::String,
|
|
2350
2600
|
?sse_customer_algorithm: ::String,
|
|
2351
2601
|
?sse_customer_key: ::String,
|