aws-sdk-s3 1.143.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 +412 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/access_grants_credentials.rb +57 -0
- data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +250 -0
- data/lib/aws-sdk-s3/bucket.rb +358 -106
- 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_region_cache.rb +9 -5
- 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 +5671 -2195
- data/lib/aws-sdk-s3/client_api.rb +665 -166
- data/lib/aws-sdk-s3/customizations/bucket.rb +1 -1
- data/lib/aws-sdk-s3/customizations/errors.rb +15 -2
- 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 -36
- 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/express_credentials_provider.rb +27 -4
- 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 +106 -102
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +99 -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 +12 -9
- 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 +178 -0
- 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/s3_signer.rb +7 -2
- 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 +7 -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 +4738 -1542
- 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 +324 -72
- data/sig/customizations/bucket.rbs +19 -0
- data/sig/customizations/object.rbs +38 -0
- data/sig/customizations/object_summary.rbs +35 -0
- 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 +22 -5
- data/sig/types.rbs +403 -66
- data/sig/waiters.rbs +12 -0
- metadata +35 -13
- data/lib/aws-sdk-s3/express_credentials_cache.rb +0 -30
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/client.rbs
CHANGED
|
@@ -14,9 +14,13 @@ module Aws
|
|
|
14
14
|
def self.new: (
|
|
15
15
|
?credentials: untyped,
|
|
16
16
|
?region: String,
|
|
17
|
+
?access_grants: bool,
|
|
18
|
+
?access_grants_credentials_provider: untyped,
|
|
17
19
|
?access_key_id: String,
|
|
20
|
+
?account_id: String,
|
|
18
21
|
?active_endpoint_cache: bool,
|
|
19
22
|
?adaptive_retry_wait_to_fill: bool,
|
|
23
|
+
?auth_scheme_preference: Array[String],
|
|
20
24
|
?client_side_monitoring: bool,
|
|
21
25
|
?client_side_monitoring_client_id: String,
|
|
22
26
|
?client_side_monitoring_host: String,
|
|
@@ -46,8 +50,10 @@ module Aws
|
|
|
46
50
|
?max_attempts: Integer,
|
|
47
51
|
?output_event_stream_handler: Proc,
|
|
48
52
|
?profile: String,
|
|
53
|
+
?request_checksum_calculation: String,
|
|
49
54
|
?request_min_compression_size_bytes: Integer,
|
|
50
55
|
?require_https_for_sse_cpk: bool,
|
|
56
|
+
?response_checksum_validation: String,
|
|
51
57
|
?retry_backoff: Proc,
|
|
52
58
|
?retry_base_delay: Float,
|
|
53
59
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
@@ -60,7 +66,9 @@ module Aws
|
|
|
60
66
|
?sdk_ua_app_id: String,
|
|
61
67
|
?secret_access_key: String,
|
|
62
68
|
?session_token: String,
|
|
69
|
+
?sigv4a_signing_region_set: Array[String],
|
|
63
70
|
?stub_responses: untyped,
|
|
71
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
64
72
|
?token_provider: untyped,
|
|
65
73
|
?use_accelerate_endpoint: bool,
|
|
66
74
|
?use_dualstack_endpoint: bool,
|
|
@@ -95,7 +103,8 @@ module Aws
|
|
|
95
103
|
key: ::String,
|
|
96
104
|
upload_id: ::String,
|
|
97
105
|
?request_payer: ("requester"),
|
|
98
|
-
?expected_bucket_owner: ::String
|
|
106
|
+
?expected_bucket_owner: ::String,
|
|
107
|
+
?if_match_initiated_time: ::Time
|
|
99
108
|
) -> _AbortMultipartUploadResponseSuccess
|
|
100
109
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AbortMultipartUploadResponseSuccess
|
|
101
110
|
|
|
@@ -108,9 +117,11 @@ module Aws
|
|
|
108
117
|
def etag: () -> ::String
|
|
109
118
|
def checksum_crc32: () -> ::String
|
|
110
119
|
def checksum_crc32c: () -> ::String
|
|
120
|
+
def checksum_crc64nvme: () -> ::String
|
|
111
121
|
def checksum_sha1: () -> ::String
|
|
112
122
|
def checksum_sha256: () -> ::String
|
|
113
|
-
def
|
|
123
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
124
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
114
125
|
def version_id: () -> ::String
|
|
115
126
|
def ssekms_key_id: () -> ::String
|
|
116
127
|
def bucket_key_enabled: () -> bool
|
|
@@ -126,6 +137,7 @@ module Aws
|
|
|
126
137
|
etag: ::String?,
|
|
127
138
|
checksum_crc32: ::String?,
|
|
128
139
|
checksum_crc32c: ::String?,
|
|
140
|
+
checksum_crc64nvme: ::String?,
|
|
129
141
|
checksum_sha1: ::String?,
|
|
130
142
|
checksum_sha256: ::String?,
|
|
131
143
|
part_number: ::Integer?
|
|
@@ -135,10 +147,15 @@ module Aws
|
|
|
135
147
|
upload_id: ::String,
|
|
136
148
|
?checksum_crc32: ::String,
|
|
137
149
|
?checksum_crc32c: ::String,
|
|
150
|
+
?checksum_crc64nvme: ::String,
|
|
138
151
|
?checksum_sha1: ::String,
|
|
139
152
|
?checksum_sha256: ::String,
|
|
153
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
|
|
154
|
+
?mpu_object_size: ::Integer,
|
|
140
155
|
?request_payer: ("requester"),
|
|
141
156
|
?expected_bucket_owner: ::String,
|
|
157
|
+
?if_match: ::String,
|
|
158
|
+
?if_none_match: ::String,
|
|
142
159
|
?sse_customer_algorithm: ::String,
|
|
143
160
|
?sse_customer_key: ::String,
|
|
144
161
|
?sse_customer_key_md5: ::String
|
|
@@ -151,7 +168,7 @@ module Aws
|
|
|
151
168
|
def expiration: () -> ::String
|
|
152
169
|
def copy_source_version_id: () -> ::String
|
|
153
170
|
def version_id: () -> ::String
|
|
154
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
171
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
155
172
|
def sse_customer_algorithm: () -> ::String
|
|
156
173
|
def sse_customer_key_md5: () -> ::String
|
|
157
174
|
def ssekms_key_id: () -> ::String
|
|
@@ -164,7 +181,7 @@ module Aws
|
|
|
164
181
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
|
|
165
182
|
bucket: ::String,
|
|
166
183
|
?cache_control: ::String,
|
|
167
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
184
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
168
185
|
?content_disposition: ::String,
|
|
169
186
|
?content_encoding: ::String,
|
|
170
187
|
?content_language: ::String,
|
|
@@ -179,12 +196,14 @@ module Aws
|
|
|
179
196
|
?grant_read: ::String,
|
|
180
197
|
?grant_read_acp: ::String,
|
|
181
198
|
?grant_write_acp: ::String,
|
|
199
|
+
?if_match: ::String,
|
|
200
|
+
?if_none_match: ::String,
|
|
182
201
|
key: ::String,
|
|
183
202
|
?metadata: Hash[::String, ::String],
|
|
184
203
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
185
204
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
186
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
187
|
-
?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"),
|
|
188
207
|
?website_redirect_location: ::String,
|
|
189
208
|
?sse_customer_algorithm: ::String,
|
|
190
209
|
?sse_customer_key: ::String,
|
|
@@ -208,21 +227,28 @@ module Aws
|
|
|
208
227
|
interface _CreateBucketResponseSuccess
|
|
209
228
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBucketOutput]
|
|
210
229
|
def location: () -> ::String
|
|
230
|
+
def bucket_arn: () -> ::String
|
|
211
231
|
end
|
|
212
232
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket-instance_method
|
|
213
233
|
def create_bucket: (
|
|
214
234
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
|
|
215
235
|
bucket: ::String,
|
|
216
236
|
?create_bucket_configuration: {
|
|
217
|
-
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")?,
|
|
218
238
|
location: {
|
|
219
|
-
type: ("AvailabilityZone")?,
|
|
239
|
+
type: ("AvailabilityZone" | "LocalZone")?,
|
|
220
240
|
name: ::String?
|
|
221
241
|
}?,
|
|
222
242
|
bucket: {
|
|
223
|
-
data_redundancy: ("SingleAvailabilityZone")?,
|
|
243
|
+
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
|
224
244
|
type: ("Directory")?
|
|
225
|
-
}
|
|
245
|
+
}?,
|
|
246
|
+
tags: Array[
|
|
247
|
+
{
|
|
248
|
+
key: ::String,
|
|
249
|
+
value: ::String
|
|
250
|
+
},
|
|
251
|
+
]?
|
|
226
252
|
},
|
|
227
253
|
?grant_full_control: ::String,
|
|
228
254
|
?grant_read: ::String,
|
|
@@ -234,6 +260,49 @@ module Aws
|
|
|
234
260
|
) -> _CreateBucketResponseSuccess
|
|
235
261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
|
|
236
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
|
+
|
|
237
306
|
interface _CreateMultipartUploadResponseSuccess
|
|
238
307
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultipartUploadOutput]
|
|
239
308
|
def abort_date: () -> ::Time
|
|
@@ -241,14 +310,15 @@ module Aws
|
|
|
241
310
|
def bucket: () -> ::String
|
|
242
311
|
def key: () -> ::String
|
|
243
312
|
def upload_id: () -> ::String
|
|
244
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
313
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
245
314
|
def sse_customer_algorithm: () -> ::String
|
|
246
315
|
def sse_customer_key_md5: () -> ::String
|
|
247
316
|
def ssekms_key_id: () -> ::String
|
|
248
317
|
def ssekms_encryption_context: () -> ::String
|
|
249
318
|
def bucket_key_enabled: () -> bool
|
|
250
319
|
def request_charged: () -> ("requester")
|
|
251
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
320
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
321
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
252
322
|
end
|
|
253
323
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
|
|
254
324
|
def create_multipart_upload: (
|
|
@@ -266,8 +336,8 @@ module Aws
|
|
|
266
336
|
?grant_write_acp: ::String,
|
|
267
337
|
key: ::String,
|
|
268
338
|
?metadata: Hash[::String, ::String],
|
|
269
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
270
|
-
?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"),
|
|
271
341
|
?website_redirect_location: ::String,
|
|
272
342
|
?sse_customer_algorithm: ::String,
|
|
273
343
|
?sse_customer_key: ::String,
|
|
@@ -281,18 +351,27 @@ module Aws
|
|
|
281
351
|
?object_lock_retain_until_date: ::Time,
|
|
282
352
|
?object_lock_legal_hold_status: ("ON" | "OFF"),
|
|
283
353
|
?expected_bucket_owner: ::String,
|
|
284
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
354
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
355
|
+
?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
285
356
|
) -> _CreateMultipartUploadResponseSuccess
|
|
286
357
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
|
|
287
358
|
|
|
288
359
|
interface _CreateSessionResponseSuccess
|
|
289
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
|
|
290
365
|
def credentials: () -> Types::SessionCredentials
|
|
291
366
|
end
|
|
292
367
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_session-instance_method
|
|
293
368
|
def create_session: (
|
|
294
369
|
?session_mode: ("ReadOnly" | "ReadWrite"),
|
|
295
|
-
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
|
|
296
375
|
) -> _CreateSessionResponseSuccess
|
|
297
376
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionResponseSuccess
|
|
298
377
|
|
|
@@ -328,7 +407,8 @@ module Aws
|
|
|
328
407
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_intelligent_tiering_configuration-instance_method
|
|
329
408
|
def delete_bucket_intelligent_tiering_configuration: (
|
|
330
409
|
bucket: ::String,
|
|
331
|
-
id: ::String
|
|
410
|
+
id: ::String,
|
|
411
|
+
?expected_bucket_owner: ::String
|
|
332
412
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
333
413
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
334
414
|
|
|
@@ -347,6 +427,20 @@ module Aws
|
|
|
347
427
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
348
428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
349
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
|
+
|
|
350
444
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metrics_configuration-instance_method
|
|
351
445
|
def delete_bucket_metrics_configuration: (
|
|
352
446
|
bucket: ::String,
|
|
@@ -404,7 +498,10 @@ module Aws
|
|
|
404
498
|
?version_id: ::String,
|
|
405
499
|
?request_payer: ("requester"),
|
|
406
500
|
?bypass_governance_retention: bool,
|
|
407
|
-
?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
|
|
408
505
|
) -> _DeleteObjectResponseSuccess
|
|
409
506
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectResponseSuccess
|
|
410
507
|
|
|
@@ -434,7 +531,10 @@ module Aws
|
|
|
434
531
|
objects: Array[
|
|
435
532
|
{
|
|
436
533
|
key: ::String,
|
|
437
|
-
version_id: ::String
|
|
534
|
+
version_id: ::String?,
|
|
535
|
+
etag: ::String?,
|
|
536
|
+
last_modified_time: ::Time?,
|
|
537
|
+
size: ::Integer?
|
|
438
538
|
},
|
|
439
539
|
],
|
|
440
540
|
quiet: bool?
|
|
@@ -443,7 +543,7 @@ module Aws
|
|
|
443
543
|
?request_payer: ("requester"),
|
|
444
544
|
?bypass_governance_retention: bool,
|
|
445
545
|
?expected_bucket_owner: ::String,
|
|
446
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
546
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
447
547
|
) -> _DeleteObjectsResponseSuccess
|
|
448
548
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
|
|
449
549
|
|
|
@@ -454,6 +554,17 @@ module Aws
|
|
|
454
554
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
455
555
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
456
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
|
+
|
|
457
568
|
interface _GetBucketAccelerateConfigurationResponseSuccess
|
|
458
569
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAccelerateConfigurationOutput]
|
|
459
570
|
def status: () -> ("Enabled" | "Suspended")
|
|
@@ -520,7 +631,8 @@ module Aws
|
|
|
520
631
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_intelligent_tiering_configuration-instance_method
|
|
521
632
|
def get_bucket_intelligent_tiering_configuration: (
|
|
522
633
|
bucket: ::String,
|
|
523
|
-
id: ::String
|
|
634
|
+
id: ::String,
|
|
635
|
+
?expected_bucket_owner: ::String
|
|
524
636
|
) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
|
|
525
637
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
|
|
526
638
|
|
|
@@ -550,6 +662,7 @@ module Aws
|
|
|
550
662
|
interface _GetBucketLifecycleConfigurationResponseSuccess
|
|
551
663
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLifecycleConfigurationOutput]
|
|
552
664
|
def rules: () -> ::Array[Types::LifecycleRule]
|
|
665
|
+
def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
|
|
553
666
|
end
|
|
554
667
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_lifecycle_configuration-instance_method
|
|
555
668
|
def get_bucket_lifecycle_configuration: (
|
|
@@ -560,7 +673,7 @@ module Aws
|
|
|
560
673
|
|
|
561
674
|
interface _GetBucketLocationResponseSuccess
|
|
562
675
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLocationOutput]
|
|
563
|
-
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")
|
|
564
677
|
end
|
|
565
678
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_location-instance_method
|
|
566
679
|
def get_bucket_location: (
|
|
@@ -580,6 +693,28 @@ module Aws
|
|
|
580
693
|
) -> _GetBucketLoggingResponseSuccess
|
|
581
694
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
|
|
582
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
|
+
|
|
583
718
|
interface _GetBucketMetricsConfigurationResponseSuccess
|
|
584
719
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetricsConfigurationOutput]
|
|
585
720
|
def metrics_configuration: () -> Types::MetricsConfiguration
|
|
@@ -723,8 +858,10 @@ module Aws
|
|
|
723
858
|
def etag: () -> ::String
|
|
724
859
|
def checksum_crc32: () -> ::String
|
|
725
860
|
def checksum_crc32c: () -> ::String
|
|
861
|
+
def checksum_crc64nvme: () -> ::String
|
|
726
862
|
def checksum_sha1: () -> ::String
|
|
727
863
|
def checksum_sha256: () -> ::String
|
|
864
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
728
865
|
def missing_meta: () -> ::Integer
|
|
729
866
|
def version_id: () -> ::String
|
|
730
867
|
def cache_control: () -> ::String
|
|
@@ -736,13 +873,13 @@ module Aws
|
|
|
736
873
|
def expires: () -> ::Time
|
|
737
874
|
def expires_string: () -> ::String
|
|
738
875
|
def website_redirect_location: () -> ::String
|
|
739
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
876
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
740
877
|
def metadata: () -> ::Hash[::String, ::String]
|
|
741
878
|
def sse_customer_algorithm: () -> ::String
|
|
742
879
|
def sse_customer_key_md5: () -> ::String
|
|
743
880
|
def ssekms_key_id: () -> ::String
|
|
744
881
|
def bucket_key_enabled: () -> bool
|
|
745
|
-
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")
|
|
746
883
|
def request_charged: () -> ("requester")
|
|
747
884
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
748
885
|
def parts_count: () -> ::Integer
|
|
@@ -802,7 +939,7 @@ module Aws
|
|
|
802
939
|
def etag: () -> ::String
|
|
803
940
|
def checksum: () -> Types::Checksum
|
|
804
941
|
def object_parts: () -> Types::GetObjectAttributesParts
|
|
805
|
-
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")
|
|
806
943
|
def object_size: () -> ::Integer
|
|
807
944
|
end
|
|
808
945
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
|
|
@@ -902,7 +1039,8 @@ module Aws
|
|
|
902
1039
|
|
|
903
1040
|
interface _HeadBucketResponseSuccess
|
|
904
1041
|
include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
|
|
905
|
-
def
|
|
1042
|
+
def bucket_arn: () -> ::String
|
|
1043
|
+
def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
|
|
906
1044
|
def bucket_location_name: () -> ::String
|
|
907
1045
|
def bucket_region: () -> ::String
|
|
908
1046
|
def access_point_alias: () -> bool
|
|
@@ -925,8 +1063,10 @@ module Aws
|
|
|
925
1063
|
def content_length: () -> ::Integer
|
|
926
1064
|
def checksum_crc32: () -> ::String
|
|
927
1065
|
def checksum_crc32c: () -> ::String
|
|
1066
|
+
def checksum_crc64nvme: () -> ::String
|
|
928
1067
|
def checksum_sha1: () -> ::String
|
|
929
1068
|
def checksum_sha256: () -> ::String
|
|
1069
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
930
1070
|
def etag: () -> ::String
|
|
931
1071
|
def missing_meta: () -> ::Integer
|
|
932
1072
|
def version_id: () -> ::String
|
|
@@ -935,19 +1075,21 @@ module Aws
|
|
|
935
1075
|
def content_encoding: () -> ::String
|
|
936
1076
|
def content_language: () -> ::String
|
|
937
1077
|
def content_type: () -> ::String
|
|
1078
|
+
def content_range: () -> ::String
|
|
938
1079
|
def expires: () -> ::Time
|
|
939
1080
|
def expires_string: () -> ::String
|
|
940
1081
|
def website_redirect_location: () -> ::String
|
|
941
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
1082
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
942
1083
|
def metadata: () -> ::Hash[::String, ::String]
|
|
943
1084
|
def sse_customer_algorithm: () -> ::String
|
|
944
1085
|
def sse_customer_key_md5: () -> ::String
|
|
945
1086
|
def ssekms_key_id: () -> ::String
|
|
946
1087
|
def bucket_key_enabled: () -> bool
|
|
947
|
-
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")
|
|
948
1089
|
def request_charged: () -> ("requester")
|
|
949
1090
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
950
1091
|
def parts_count: () -> ::Integer
|
|
1092
|
+
def tag_count: () -> ::Integer
|
|
951
1093
|
def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
|
|
952
1094
|
def object_lock_retain_until_date: () -> ::Time
|
|
953
1095
|
def object_lock_legal_hold_status: () -> ("ON" | "OFF")
|
|
@@ -961,6 +1103,12 @@ module Aws
|
|
|
961
1103
|
?if_unmodified_since: ::Time,
|
|
962
1104
|
key: ::String,
|
|
963
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,
|
|
964
1112
|
?version_id: ::String,
|
|
965
1113
|
?sse_customer_algorithm: ::String,
|
|
966
1114
|
?sse_customer_key: ::String,
|
|
@@ -997,7 +1145,8 @@ module Aws
|
|
|
997
1145
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_bucket_intelligent_tiering_configurations-instance_method
|
|
998
1146
|
def list_bucket_intelligent_tiering_configurations: (
|
|
999
1147
|
bucket: ::String,
|
|
1000
|
-
?continuation_token: ::String
|
|
1148
|
+
?continuation_token: ::String,
|
|
1149
|
+
?expected_bucket_owner: ::String
|
|
1001
1150
|
) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
|
|
1002
1151
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
|
|
1003
1152
|
|
|
@@ -1035,9 +1184,16 @@ module Aws
|
|
|
1035
1184
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBucketsOutput]
|
|
1036
1185
|
def buckets: () -> ::Array[Types::Bucket]
|
|
1037
1186
|
def owner: () -> Types::Owner
|
|
1187
|
+
def continuation_token: () -> ::String
|
|
1188
|
+
def prefix: () -> ::String
|
|
1038
1189
|
end
|
|
1039
1190
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_buckets-instance_method
|
|
1040
|
-
def list_buckets: (
|
|
1191
|
+
def list_buckets: (
|
|
1192
|
+
?max_buckets: ::Integer,
|
|
1193
|
+
?continuation_token: ::String,
|
|
1194
|
+
?prefix: ::String,
|
|
1195
|
+
?bucket_region: ::String
|
|
1196
|
+
) -> _ListBucketsResponseSuccess
|
|
1041
1197
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketsResponseSuccess
|
|
1042
1198
|
|
|
1043
1199
|
interface _ListDirectoryBucketsResponseSuccess
|
|
@@ -1188,9 +1344,10 @@ module Aws
|
|
|
1188
1344
|
def parts: () -> ::Array[Types::Part]
|
|
1189
1345
|
def initiator: () -> Types::Initiator
|
|
1190
1346
|
def owner: () -> Types::Owner
|
|
1191
|
-
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")
|
|
1192
1348
|
def request_charged: () -> ("requester")
|
|
1193
|
-
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1349
|
+
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1350
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
1194
1351
|
end
|
|
1195
1352
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
|
|
1196
1353
|
def list_parts: (
|
|
@@ -1207,6 +1364,18 @@ module Aws
|
|
|
1207
1364
|
) -> _ListPartsResponseSuccess
|
|
1208
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartsResponseSuccess
|
|
1209
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
|
+
|
|
1210
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_accelerate_configuration-instance_method
|
|
1211
1380
|
def put_bucket_accelerate_configuration: (
|
|
1212
1381
|
bucket: ::String,
|
|
@@ -1214,7 +1383,7 @@ module Aws
|
|
|
1214
1383
|
status: ("Enabled" | "Suspended")?
|
|
1215
1384
|
},
|
|
1216
1385
|
?expected_bucket_owner: ::String,
|
|
1217
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
|
1386
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1218
1387
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1219
1388
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1220
1389
|
|
|
@@ -1241,7 +1410,7 @@ module Aws
|
|
|
1241
1410
|
},
|
|
1242
1411
|
bucket: ::String,
|
|
1243
1412
|
?content_md5: ::String,
|
|
1244
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1413
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1245
1414
|
?grant_full_control: ::String,
|
|
1246
1415
|
?grant_read: ::String,
|
|
1247
1416
|
?grant_read_acp: ::String,
|
|
@@ -1307,7 +1476,7 @@ module Aws
|
|
|
1307
1476
|
]
|
|
1308
1477
|
},
|
|
1309
1478
|
?content_md5: ::String,
|
|
1310
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1479
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1311
1480
|
?expected_bucket_owner: ::String
|
|
1312
1481
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1313
1482
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -1316,15 +1485,18 @@ module Aws
|
|
|
1316
1485
|
def put_bucket_encryption: (
|
|
1317
1486
|
bucket: ::String,
|
|
1318
1487
|
?content_md5: ::String,
|
|
1319
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1488
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1320
1489
|
server_side_encryption_configuration: {
|
|
1321
1490
|
rules: Array[
|
|
1322
1491
|
{
|
|
1323
1492
|
apply_server_side_encryption_by_default: {
|
|
1324
|
-
sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
1493
|
+
sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
1325
1494
|
kms_master_key_id: ::String?
|
|
1326
1495
|
}?,
|
|
1327
|
-
bucket_key_enabled: bool
|
|
1496
|
+
bucket_key_enabled: bool?,
|
|
1497
|
+
blocked_encryption_types: {
|
|
1498
|
+
encryption_type: Array[("NONE" | "SSE-C")]?
|
|
1499
|
+
}?
|
|
1328
1500
|
},
|
|
1329
1501
|
]
|
|
1330
1502
|
},
|
|
@@ -1336,6 +1508,7 @@ module Aws
|
|
|
1336
1508
|
def put_bucket_intelligent_tiering_configuration: (
|
|
1337
1509
|
bucket: ::String,
|
|
1338
1510
|
id: ::String,
|
|
1511
|
+
?expected_bucket_owner: ::String,
|
|
1339
1512
|
intelligent_tiering_configuration: {
|
|
1340
1513
|
id: ::String,
|
|
1341
1514
|
filter: {
|
|
@@ -1391,7 +1564,7 @@ module Aws
|
|
|
1391
1564
|
}?,
|
|
1392
1565
|
id: ::String,
|
|
1393
1566
|
included_object_versions: ("All" | "Current"),
|
|
1394
|
-
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")]?,
|
|
1395
1568
|
schedule: {
|
|
1396
1569
|
frequency: ("Daily" | "Weekly")
|
|
1397
1570
|
}
|
|
@@ -1404,7 +1577,7 @@ module Aws
|
|
|
1404
1577
|
def put_bucket_lifecycle: (
|
|
1405
1578
|
bucket: ::String,
|
|
1406
1579
|
?content_md5: ::String,
|
|
1407
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1580
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1408
1581
|
?lifecycle_configuration: {
|
|
1409
1582
|
rules: Array[
|
|
1410
1583
|
{
|
|
@@ -1440,10 +1613,14 @@ module Aws
|
|
|
1440
1613
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1441
1614
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1442
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
|
|
1443
1620
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
|
|
1444
1621
|
def put_bucket_lifecycle_configuration: (
|
|
1445
1622
|
bucket: ::String,
|
|
1446
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1623
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1447
1624
|
?lifecycle_configuration: {
|
|
1448
1625
|
rules: Array[
|
|
1449
1626
|
{
|
|
@@ -1499,9 +1676,10 @@ module Aws
|
|
|
1499
1676
|
},
|
|
1500
1677
|
]
|
|
1501
1678
|
},
|
|
1502
|
-
?expected_bucket_owner: ::String
|
|
1503
|
-
|
|
1504
|
-
|
|
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
|
|
1505
1683
|
|
|
1506
1684
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_logging-instance_method
|
|
1507
1685
|
def put_bucket_logging: (
|
|
@@ -1532,7 +1710,7 @@ module Aws
|
|
|
1532
1710
|
}?
|
|
1533
1711
|
},
|
|
1534
1712
|
?content_md5: ::String,
|
|
1535
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1713
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1536
1714
|
?expected_bucket_owner: ::String
|
|
1537
1715
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1538
1716
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
@@ -1570,7 +1748,7 @@ module Aws
|
|
|
1570
1748
|
def put_bucket_notification: (
|
|
1571
1749
|
bucket: ::String,
|
|
1572
1750
|
?content_md5: ::String,
|
|
1573
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1751
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1574
1752
|
notification_configuration: {
|
|
1575
1753
|
topic_configuration: {
|
|
1576
1754
|
id: ::String?,
|
|
@@ -1670,7 +1848,8 @@ module Aws
|
|
|
1670
1848
|
object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
|
|
1671
1849
|
},
|
|
1672
1850
|
]
|
|
1673
|
-
}
|
|
1851
|
+
},
|
|
1852
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1674
1853
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1675
1854
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1676
1855
|
|
|
@@ -1678,7 +1857,7 @@ module Aws
|
|
|
1678
1857
|
def put_bucket_policy: (
|
|
1679
1858
|
bucket: ::String,
|
|
1680
1859
|
?content_md5: ::String,
|
|
1681
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1860
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1682
1861
|
?confirm_remove_self_bucket_access: bool,
|
|
1683
1862
|
policy: ::String,
|
|
1684
1863
|
?expected_bucket_owner: ::String
|
|
@@ -1689,7 +1868,7 @@ module Aws
|
|
|
1689
1868
|
def put_bucket_replication: (
|
|
1690
1869
|
bucket: ::String,
|
|
1691
1870
|
?content_md5: ::String,
|
|
1692
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1871
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1693
1872
|
replication_configuration: {
|
|
1694
1873
|
role: ::String,
|
|
1695
1874
|
rules: Array[
|
|
@@ -1728,7 +1907,7 @@ module Aws
|
|
|
1728
1907
|
destination: {
|
|
1729
1908
|
bucket: ::String,
|
|
1730
1909
|
account: ::String?,
|
|
1731
|
-
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")?,
|
|
1732
1911
|
access_control_translation: {
|
|
1733
1912
|
owner: ("Destination")
|
|
1734
1913
|
}?,
|
|
@@ -1763,7 +1942,7 @@ module Aws
|
|
|
1763
1942
|
def put_bucket_request_payment: (
|
|
1764
1943
|
bucket: ::String,
|
|
1765
1944
|
?content_md5: ::String,
|
|
1766
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1945
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1767
1946
|
request_payment_configuration: {
|
|
1768
1947
|
payer: ("Requester" | "BucketOwner")
|
|
1769
1948
|
},
|
|
@@ -1775,7 +1954,7 @@ module Aws
|
|
|
1775
1954
|
def put_bucket_tagging: (
|
|
1776
1955
|
bucket: ::String,
|
|
1777
1956
|
?content_md5: ::String,
|
|
1778
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1957
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1779
1958
|
tagging: {
|
|
1780
1959
|
tag_set: Array[
|
|
1781
1960
|
{
|
|
@@ -1792,7 +1971,7 @@ module Aws
|
|
|
1792
1971
|
def put_bucket_versioning: (
|
|
1793
1972
|
bucket: ::String,
|
|
1794
1973
|
?content_md5: ::String,
|
|
1795
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1974
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1796
1975
|
?mfa: ::String,
|
|
1797
1976
|
versioning_configuration: {
|
|
1798
1977
|
mfa_delete: ("Enabled" | "Disabled")?,
|
|
@@ -1806,7 +1985,7 @@ module Aws
|
|
|
1806
1985
|
def put_bucket_website: (
|
|
1807
1986
|
bucket: ::String,
|
|
1808
1987
|
?content_md5: ::String,
|
|
1809
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
1988
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1810
1989
|
website_configuration: {
|
|
1811
1990
|
error_document: {
|
|
1812
1991
|
key: ::String
|
|
@@ -1844,15 +2023,18 @@ module Aws
|
|
|
1844
2023
|
def etag: () -> ::String
|
|
1845
2024
|
def checksum_crc32: () -> ::String
|
|
1846
2025
|
def checksum_crc32c: () -> ::String
|
|
2026
|
+
def checksum_crc64nvme: () -> ::String
|
|
1847
2027
|
def checksum_sha1: () -> ::String
|
|
1848
2028
|
def checksum_sha256: () -> ::String
|
|
1849
|
-
def
|
|
2029
|
+
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
2030
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
1850
2031
|
def version_id: () -> ::String
|
|
1851
2032
|
def sse_customer_algorithm: () -> ::String
|
|
1852
2033
|
def sse_customer_key_md5: () -> ::String
|
|
1853
2034
|
def ssekms_key_id: () -> ::String
|
|
1854
2035
|
def ssekms_encryption_context: () -> ::String
|
|
1855
2036
|
def bucket_key_enabled: () -> bool
|
|
2037
|
+
def size: () -> ::Integer
|
|
1856
2038
|
def request_charged: () -> ("requester")
|
|
1857
2039
|
end
|
|
1858
2040
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_object-instance_method
|
|
@@ -1867,20 +2049,24 @@ module Aws
|
|
|
1867
2049
|
?content_length: ::Integer,
|
|
1868
2050
|
?content_md5: ::String,
|
|
1869
2051
|
?content_type: ::String,
|
|
1870
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2052
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1871
2053
|
?checksum_crc32: ::String,
|
|
1872
2054
|
?checksum_crc32c: ::String,
|
|
2055
|
+
?checksum_crc64nvme: ::String,
|
|
1873
2056
|
?checksum_sha1: ::String,
|
|
1874
2057
|
?checksum_sha256: ::String,
|
|
1875
2058
|
?expires: ::Time,
|
|
2059
|
+
?if_match: ::String,
|
|
2060
|
+
?if_none_match: ::String,
|
|
1876
2061
|
?grant_full_control: ::String,
|
|
1877
2062
|
?grant_read: ::String,
|
|
1878
2063
|
?grant_read_acp: ::String,
|
|
1879
2064
|
?grant_write_acp: ::String,
|
|
1880
2065
|
key: ::String,
|
|
2066
|
+
?write_offset_bytes: ::Integer,
|
|
1881
2067
|
?metadata: Hash[::String, ::String],
|
|
1882
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
1883
|
-
?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"),
|
|
1884
2070
|
?website_redirect_location: ::String,
|
|
1885
2071
|
?sse_customer_algorithm: ::String,
|
|
1886
2072
|
?sse_customer_key: ::String,
|
|
@@ -1924,7 +2110,7 @@ module Aws
|
|
|
1924
2110
|
},
|
|
1925
2111
|
bucket: ::String,
|
|
1926
2112
|
?content_md5: ::String,
|
|
1927
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2113
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1928
2114
|
?grant_full_control: ::String,
|
|
1929
2115
|
?grant_read: ::String,
|
|
1930
2116
|
?grant_read_acp: ::String,
|
|
@@ -1951,7 +2137,7 @@ module Aws
|
|
|
1951
2137
|
?request_payer: ("requester"),
|
|
1952
2138
|
?version_id: ::String,
|
|
1953
2139
|
?content_md5: ::String,
|
|
1954
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2140
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1955
2141
|
?expected_bucket_owner: ::String
|
|
1956
2142
|
) -> _PutObjectLegalHoldResponseSuccess
|
|
1957
2143
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
|
|
@@ -1976,7 +2162,7 @@ module Aws
|
|
|
1976
2162
|
?request_payer: ("requester"),
|
|
1977
2163
|
?token: ::String,
|
|
1978
2164
|
?content_md5: ::String,
|
|
1979
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2165
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1980
2166
|
?expected_bucket_owner: ::String
|
|
1981
2167
|
) -> _PutObjectLockConfigurationResponseSuccess
|
|
1982
2168
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
|
|
@@ -1997,7 +2183,7 @@ module Aws
|
|
|
1997
2183
|
?version_id: ::String,
|
|
1998
2184
|
?bypass_governance_retention: bool,
|
|
1999
2185
|
?content_md5: ::String,
|
|
2000
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2186
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2001
2187
|
?expected_bucket_owner: ::String
|
|
2002
2188
|
) -> _PutObjectRetentionResponseSuccess
|
|
2003
2189
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
|
|
@@ -2012,7 +2198,7 @@ module Aws
|
|
|
2012
2198
|
key: ::String,
|
|
2013
2199
|
?version_id: ::String,
|
|
2014
2200
|
?content_md5: ::String,
|
|
2015
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2201
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2016
2202
|
tagging: {
|
|
2017
2203
|
tag_set: Array[
|
|
2018
2204
|
{
|
|
@@ -2030,7 +2216,7 @@ module Aws
|
|
|
2030
2216
|
def put_public_access_block: (
|
|
2031
2217
|
bucket: ::String,
|
|
2032
2218
|
?content_md5: ::String,
|
|
2033
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2219
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2034
2220
|
public_access_block_configuration: {
|
|
2035
2221
|
block_public_acls: bool?,
|
|
2036
2222
|
ignore_public_acls: bool?,
|
|
@@ -2041,6 +2227,26 @@ module Aws
|
|
|
2041
2227
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2042
2228
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
2043
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
|
+
|
|
2044
2250
|
interface _RestoreObjectResponseSuccess
|
|
2045
2251
|
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreObjectOutput]
|
|
2046
2252
|
def request_charged: () -> ("requester")
|
|
@@ -2097,7 +2303,7 @@ module Aws
|
|
|
2097
2303
|
bucket_name: ::String,
|
|
2098
2304
|
prefix: ::String,
|
|
2099
2305
|
encryption: {
|
|
2100
|
-
encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
2306
|
+
encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2101
2307
|
kms_key_id: ::String?,
|
|
2102
2308
|
kms_context: ::String?
|
|
2103
2309
|
}?,
|
|
@@ -2128,12 +2334,12 @@ module Aws
|
|
|
2128
2334
|
value: ::String?
|
|
2129
2335
|
},
|
|
2130
2336
|
]?,
|
|
2131
|
-
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")?
|
|
2132
2338
|
}?
|
|
2133
2339
|
}?
|
|
2134
2340
|
},
|
|
2135
2341
|
?request_payer: ("requester"),
|
|
2136
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2342
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2137
2343
|
?expected_bucket_owner: ::String
|
|
2138
2344
|
) -> _RestoreObjectResponseSuccess
|
|
2139
2345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
|
|
@@ -2191,12 +2397,44 @@ module Aws
|
|
|
2191
2397
|
) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2192
2398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2193
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
|
+
|
|
2194
2431
|
interface _UploadPartResponseSuccess
|
|
2195
2432
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartOutput]
|
|
2196
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2433
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2197
2434
|
def etag: () -> ::String
|
|
2198
2435
|
def checksum_crc32: () -> ::String
|
|
2199
2436
|
def checksum_crc32c: () -> ::String
|
|
2437
|
+
def checksum_crc64nvme: () -> ::String
|
|
2200
2438
|
def checksum_sha1: () -> ::String
|
|
2201
2439
|
def checksum_sha256: () -> ::String
|
|
2202
2440
|
def sse_customer_algorithm: () -> ::String
|
|
@@ -2211,9 +2449,10 @@ module Aws
|
|
|
2211
2449
|
bucket: ::String,
|
|
2212
2450
|
?content_length: ::Integer,
|
|
2213
2451
|
?content_md5: ::String,
|
|
2214
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
|
2452
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
2215
2453
|
?checksum_crc32: ::String,
|
|
2216
2454
|
?checksum_crc32c: ::String,
|
|
2455
|
+
?checksum_crc64nvme: ::String,
|
|
2217
2456
|
?checksum_sha1: ::String,
|
|
2218
2457
|
?checksum_sha256: ::String,
|
|
2219
2458
|
key: ::String,
|
|
@@ -2231,7 +2470,7 @@ module Aws
|
|
|
2231
2470
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartCopyOutput]
|
|
2232
2471
|
def copy_source_version_id: () -> ::String
|
|
2233
2472
|
def copy_part_result: () -> Types::CopyPartResult
|
|
2234
|
-
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
|
2473
|
+
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2235
2474
|
def sse_customer_algorithm: () -> ::String
|
|
2236
2475
|
def sse_customer_key_md5: () -> ::String
|
|
2237
2476
|
def ssekms_key_id: () -> ::String
|
|
@@ -2280,6 +2519,7 @@ module Aws
|
|
|
2280
2519
|
?content_type: ::String,
|
|
2281
2520
|
?checksum_crc32: ::String,
|
|
2282
2521
|
?checksum_crc32c: ::String,
|
|
2522
|
+
?checksum_crc64nvme: ::String,
|
|
2283
2523
|
?checksum_sha1: ::String,
|
|
2284
2524
|
?checksum_sha256: ::String,
|
|
2285
2525
|
?delete_marker: bool,
|
|
@@ -2296,11 +2536,11 @@ module Aws
|
|
|
2296
2536
|
?replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED"),
|
|
2297
2537
|
?request_charged: ("requester"),
|
|
2298
2538
|
?restore: ::String,
|
|
2299
|
-
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
|
2539
|
+
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2300
2540
|
?sse_customer_algorithm: ::String,
|
|
2301
2541
|
?ssekms_key_id: ::String,
|
|
2302
2542
|
?sse_customer_key_md5: ::String,
|
|
2303
|
-
?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"),
|
|
2304
2544
|
?tag_count: ::Integer,
|
|
2305
2545
|
?version_id: ::String,
|
|
2306
2546
|
?bucket_key_enabled: bool
|
|
@@ -2326,6 +2566,12 @@ module Aws
|
|
|
2326
2566
|
?if_unmodified_since: ::Time,
|
|
2327
2567
|
key: ::String,
|
|
2328
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,
|
|
2329
2575
|
?version_id: ::String,
|
|
2330
2576
|
?sse_customer_algorithm: ::String,
|
|
2331
2577
|
?sse_customer_key: ::String,
|
|
@@ -2344,6 +2590,12 @@ module Aws
|
|
|
2344
2590
|
?if_unmodified_since: ::Time,
|
|
2345
2591
|
key: ::String,
|
|
2346
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,
|
|
2347
2599
|
?version_id: ::String,
|
|
2348
2600
|
?sse_customer_algorithm: ::String,
|
|
2349
2601
|
?sse_customer_key: ::String,
|