aws-sdk-s3 1.191.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 +114 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +33 -1
- data/lib/aws-sdk-s3/bucket_acl.rb +1 -1
- data/lib/aws-sdk-s3/bucket_versioning.rb +33 -0
- data/lib/aws-sdk-s3/client.rb +1503 -392
- data/lib/aws-sdk-s3/client_api.rb +248 -0
- data/lib/aws-sdk-s3/customizations/object.rb +76 -86
- data/lib/aws-sdk-s3/customizations.rb +4 -1
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +2 -2
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +98 -23
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +7 -162
- data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +17 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +8 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +5 -0
- data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
- data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
- data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
- data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
- data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
- data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +1 -0
- data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +17 -17
- data/lib/aws-sdk-s3/endpoint_provider.rb +220 -50
- data/lib/aws-sdk-s3/endpoints.rb +96 -0
- data/lib/aws-sdk-s3/file_downloader.rb +197 -134
- data/lib/aws-sdk-s3/file_uploader.rb +9 -13
- data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +92 -107
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +96 -107
- data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
- data/lib/aws-sdk-s3/object.rb +56 -27
- data/lib/aws-sdk-s3/object_acl.rb +1 -1
- data/lib/aws-sdk-s3/object_summary.rb +42 -13
- data/lib/aws-sdk-s3/object_version.rb +7 -9
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
- data/lib/aws-sdk-s3/resource.rb +6 -0
- data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
- data/lib/aws-sdk-s3/types.rb +1179 -260
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +11 -2
- data/sig/client.rbs +127 -13
- data/sig/multipart_upload.rbs +1 -1
- data/sig/object.rbs +7 -5
- data/sig/object_summary.rbs +7 -5
- data/sig/resource.rbs +8 -1
- data/sig/types.rbs +173 -14
- metadata +22 -3
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
CHANGED
|
@@ -23,6 +23,9 @@ module Aws
|
|
|
23
23
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#bucket_region-instance_method
|
|
24
24
|
def bucket_region: () -> ::String
|
|
25
25
|
|
|
26
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#bucket_arn-instance_method
|
|
27
|
+
def bucket_arn: () -> ::String
|
|
28
|
+
|
|
26
29
|
def client: () -> Client
|
|
27
30
|
|
|
28
31
|
|
|
@@ -56,7 +59,13 @@ module Aws
|
|
|
56
59
|
bucket: {
|
|
57
60
|
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
|
58
61
|
type: ("Directory")?
|
|
59
|
-
}
|
|
62
|
+
}?,
|
|
63
|
+
tags: Array[
|
|
64
|
+
{
|
|
65
|
+
key: ::String,
|
|
66
|
+
value: ::String
|
|
67
|
+
},
|
|
68
|
+
]?
|
|
60
69
|
},
|
|
61
70
|
?grant_full_control: ::String,
|
|
62
71
|
?grant_read: ::String,
|
|
@@ -124,7 +133,7 @@ module Aws
|
|
|
124
133
|
?write_offset_bytes: ::Integer,
|
|
125
134
|
?metadata: Hash[::String, ::String],
|
|
126
135
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
127
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
136
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
128
137
|
?website_redirect_location: ::String,
|
|
129
138
|
?sse_customer_algorithm: ::String,
|
|
130
139
|
?sse_customer_key: ::String,
|
data/sig/client.rbs
CHANGED
|
@@ -20,6 +20,7 @@ module Aws
|
|
|
20
20
|
?account_id: String,
|
|
21
21
|
?active_endpoint_cache: bool,
|
|
22
22
|
?adaptive_retry_wait_to_fill: bool,
|
|
23
|
+
?auth_scheme_preference: Array[String],
|
|
23
24
|
?client_side_monitoring: bool,
|
|
24
25
|
?client_side_monitoring_client_id: String,
|
|
25
26
|
?client_side_monitoring_host: String,
|
|
@@ -195,12 +196,14 @@ module Aws
|
|
|
195
196
|
?grant_read: ::String,
|
|
196
197
|
?grant_read_acp: ::String,
|
|
197
198
|
?grant_write_acp: ::String,
|
|
199
|
+
?if_match: ::String,
|
|
200
|
+
?if_none_match: ::String,
|
|
198
201
|
key: ::String,
|
|
199
202
|
?metadata: Hash[::String, ::String],
|
|
200
203
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
201
204
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
202
205
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
203
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
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"),
|
|
204
207
|
?website_redirect_location: ::String,
|
|
205
208
|
?sse_customer_algorithm: ::String,
|
|
206
209
|
?sse_customer_key: ::String,
|
|
@@ -224,6 +227,7 @@ module Aws
|
|
|
224
227
|
interface _CreateBucketResponseSuccess
|
|
225
228
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBucketOutput]
|
|
226
229
|
def location: () -> ::String
|
|
230
|
+
def bucket_arn: () -> ::String
|
|
227
231
|
end
|
|
228
232
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket-instance_method
|
|
229
233
|
def create_bucket: (
|
|
@@ -238,7 +242,13 @@ module Aws
|
|
|
238
242
|
bucket: {
|
|
239
243
|
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
|
240
244
|
type: ("Directory")?
|
|
241
|
-
}
|
|
245
|
+
}?,
|
|
246
|
+
tags: Array[
|
|
247
|
+
{
|
|
248
|
+
key: ::String,
|
|
249
|
+
value: ::String
|
|
250
|
+
},
|
|
251
|
+
]?
|
|
242
252
|
},
|
|
243
253
|
?grant_full_control: ::String,
|
|
244
254
|
?grant_read: ::String,
|
|
@@ -250,6 +260,34 @@ module Aws
|
|
|
250
260
|
) -> _CreateBucketResponseSuccess
|
|
251
261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
|
|
252
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
|
+
|
|
253
291
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_table_configuration-instance_method
|
|
254
292
|
def create_bucket_metadata_table_configuration: (
|
|
255
293
|
bucket: ::String,
|
|
@@ -299,7 +337,7 @@ module Aws
|
|
|
299
337
|
key: ::String,
|
|
300
338
|
?metadata: Hash[::String, ::String],
|
|
301
339
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
302
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
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"),
|
|
303
341
|
?website_redirect_location: ::String,
|
|
304
342
|
?sse_customer_algorithm: ::String,
|
|
305
343
|
?sse_customer_key: ::String,
|
|
@@ -389,6 +427,13 @@ module Aws
|
|
|
389
427
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
390
428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
391
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
|
+
|
|
392
437
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_table_configuration-instance_method
|
|
393
438
|
def delete_bucket_metadata_table_configuration: (
|
|
394
439
|
bucket: ::String,
|
|
@@ -509,6 +554,17 @@ module Aws
|
|
|
509
554
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
510
555
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
511
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
|
+
|
|
512
568
|
interface _GetBucketAccelerateConfigurationResponseSuccess
|
|
513
569
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAccelerateConfigurationOutput]
|
|
514
570
|
def status: () -> ("Enabled" | "Suspended")
|
|
@@ -637,6 +693,17 @@ module Aws
|
|
|
637
693
|
) -> _GetBucketLoggingResponseSuccess
|
|
638
694
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
|
|
639
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
|
+
|
|
640
707
|
interface _GetBucketMetadataTableConfigurationResponseSuccess
|
|
641
708
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataTableConfigurationOutput]
|
|
642
709
|
def get_bucket_metadata_table_configuration_result: () -> Types::GetBucketMetadataTableConfigurationResult
|
|
@@ -812,7 +879,7 @@ module Aws
|
|
|
812
879
|
def sse_customer_key_md5: () -> ::String
|
|
813
880
|
def ssekms_key_id: () -> ::String
|
|
814
881
|
def bucket_key_enabled: () -> bool
|
|
815
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
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")
|
|
816
883
|
def request_charged: () -> ("requester")
|
|
817
884
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
818
885
|
def parts_count: () -> ::Integer
|
|
@@ -872,7 +939,7 @@ module Aws
|
|
|
872
939
|
def etag: () -> ::String
|
|
873
940
|
def checksum: () -> Types::Checksum
|
|
874
941
|
def object_parts: () -> Types::GetObjectAttributesParts
|
|
875
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
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")
|
|
876
943
|
def object_size: () -> ::Integer
|
|
877
944
|
end
|
|
878
945
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
|
|
@@ -972,6 +1039,7 @@ module Aws
|
|
|
972
1039
|
|
|
973
1040
|
interface _HeadBucketResponseSuccess
|
|
974
1041
|
include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
|
|
1042
|
+
def bucket_arn: () -> ::String
|
|
975
1043
|
def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
|
|
976
1044
|
def bucket_location_name: () -> ::String
|
|
977
1045
|
def bucket_region: () -> ::String
|
|
@@ -1017,7 +1085,7 @@ module Aws
|
|
|
1017
1085
|
def sse_customer_key_md5: () -> ::String
|
|
1018
1086
|
def ssekms_key_id: () -> ::String
|
|
1019
1087
|
def bucket_key_enabled: () -> bool
|
|
1020
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
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")
|
|
1021
1089
|
def request_charged: () -> ("requester")
|
|
1022
1090
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1023
1091
|
def parts_count: () -> ::Integer
|
|
@@ -1276,7 +1344,7 @@ module Aws
|
|
|
1276
1344
|
def parts: () -> ::Array[Types::Part]
|
|
1277
1345
|
def initiator: () -> Types::Initiator
|
|
1278
1346
|
def owner: () -> Types::Owner
|
|
1279
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
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")
|
|
1280
1348
|
def request_charged: () -> ("requester")
|
|
1281
1349
|
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1282
1350
|
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
@@ -1296,6 +1364,18 @@ module Aws
|
|
|
1296
1364
|
) -> _ListPartsResponseSuccess
|
|
1297
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartsResponseSuccess
|
|
1298
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
|
+
|
|
1299
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_accelerate_configuration-instance_method
|
|
1300
1380
|
def put_bucket_accelerate_configuration: (
|
|
1301
1381
|
bucket: ::String,
|
|
@@ -1413,7 +1493,10 @@ module Aws
|
|
|
1413
1493
|
sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
1414
1494
|
kms_master_key_id: ::String?
|
|
1415
1495
|
}?,
|
|
1416
|
-
bucket_key_enabled: bool
|
|
1496
|
+
bucket_key_enabled: bool?,
|
|
1497
|
+
blocked_encryption_types: {
|
|
1498
|
+
encryption_type: Array[("NONE" | "SSE-C")]?
|
|
1499
|
+
}?
|
|
1417
1500
|
},
|
|
1418
1501
|
]
|
|
1419
1502
|
},
|
|
@@ -1481,7 +1564,7 @@ module Aws
|
|
|
1481
1564
|
}?,
|
|
1482
1565
|
id: ::String,
|
|
1483
1566
|
included_object_versions: ("All" | "Current"),
|
|
1484
|
-
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")]?,
|
|
1485
1568
|
schedule: {
|
|
1486
1569
|
frequency: ("Daily" | "Weekly")
|
|
1487
1570
|
}
|
|
@@ -1824,7 +1907,7 @@ module Aws
|
|
|
1824
1907
|
destination: {
|
|
1825
1908
|
bucket: ::String,
|
|
1826
1909
|
account: ::String?,
|
|
1827
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?,
|
|
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")?,
|
|
1828
1911
|
access_control_translation: {
|
|
1829
1912
|
owner: ("Destination")
|
|
1830
1913
|
}?,
|
|
@@ -1983,7 +2066,7 @@ module Aws
|
|
|
1983
2066
|
?write_offset_bytes: ::Integer,
|
|
1984
2067
|
?metadata: Hash[::String, ::String],
|
|
1985
2068
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
1986
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
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"),
|
|
1987
2070
|
?website_redirect_location: ::String,
|
|
1988
2071
|
?sse_customer_algorithm: ::String,
|
|
1989
2072
|
?sse_customer_key: ::String,
|
|
@@ -2251,7 +2334,7 @@ module Aws
|
|
|
2251
2334
|
value: ::String?
|
|
2252
2335
|
},
|
|
2253
2336
|
]?,
|
|
2254
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
|
|
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")?
|
|
2255
2338
|
}?
|
|
2256
2339
|
}?
|
|
2257
2340
|
},
|
|
@@ -2314,6 +2397,37 @@ module Aws
|
|
|
2314
2397
|
) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2315
2398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
|
|
2316
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
|
+
|
|
2317
2431
|
interface _UploadPartResponseSuccess
|
|
2318
2432
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartOutput]
|
|
2319
2433
|
def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
@@ -2426,7 +2540,7 @@ module Aws
|
|
|
2426
2540
|
?sse_customer_algorithm: ::String,
|
|
2427
2541
|
?ssekms_key_id: ::String,
|
|
2428
2542
|
?sse_customer_key_md5: ::String,
|
|
2429
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
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"),
|
|
2430
2544
|
?tag_count: ::Integer,
|
|
2431
2545
|
?version_id: ::String,
|
|
2432
2546
|
?bucket_key_enabled: bool
|
data/sig/multipart_upload.rbs
CHANGED
|
@@ -33,7 +33,7 @@ module Aws
|
|
|
33
33
|
def initiated: () -> ::Time
|
|
34
34
|
|
|
35
35
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#storage_class-instance_method
|
|
36
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
36
|
+
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")
|
|
37
37
|
|
|
38
38
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#owner-instance_method
|
|
39
39
|
def owner: () -> Types::Owner
|
data/sig/object.rbs
CHANGED
|
@@ -114,7 +114,7 @@ module Aws
|
|
|
114
114
|
def bucket_key_enabled: () -> bool
|
|
115
115
|
|
|
116
116
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#storage_class-instance_method
|
|
117
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
117
|
+
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")
|
|
118
118
|
|
|
119
119
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#request_charged-instance_method
|
|
120
120
|
def request_charged: () -> ("requester")
|
|
@@ -180,11 +180,13 @@ module Aws
|
|
|
180
180
|
?grant_read: ::String,
|
|
181
181
|
?grant_read_acp: ::String,
|
|
182
182
|
?grant_write_acp: ::String,
|
|
183
|
+
?if_match: ::String,
|
|
184
|
+
?if_none_match: ::String,
|
|
183
185
|
?metadata: Hash[::String, ::String],
|
|
184
186
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
185
187
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
186
188
|
?server_side_encryption: ("AES256" | "aws:fsx" | "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" | "FSX_OPENZFS"),
|
|
189
|
+
?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
190
|
?website_redirect_location: ::String,
|
|
189
191
|
?sse_customer_algorithm: ::String,
|
|
190
192
|
?sse_customer_key: ::String,
|
|
@@ -257,7 +259,7 @@ module Aws
|
|
|
257
259
|
?grant_write_acp: ::String,
|
|
258
260
|
?metadata: Hash[::String, ::String],
|
|
259
261
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
260
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
262
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
261
263
|
?website_redirect_location: ::String,
|
|
262
264
|
?sse_customer_algorithm: ::String,
|
|
263
265
|
?sse_customer_key: ::String,
|
|
@@ -303,7 +305,7 @@ module Aws
|
|
|
303
305
|
?write_offset_bytes: ::Integer,
|
|
304
306
|
?metadata: Hash[::String, ::String],
|
|
305
307
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
306
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
308
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
307
309
|
?website_redirect_location: ::String,
|
|
308
310
|
?sse_customer_algorithm: ::String,
|
|
309
311
|
?sse_customer_key: ::String,
|
|
@@ -400,7 +402,7 @@ module Aws
|
|
|
400
402
|
value: ::String?
|
|
401
403
|
},
|
|
402
404
|
]?,
|
|
403
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
|
|
405
|
+
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?
|
|
404
406
|
}?
|
|
405
407
|
}?
|
|
406
408
|
},
|
data/sig/object_summary.rbs
CHANGED
|
@@ -36,7 +36,7 @@ module Aws
|
|
|
36
36
|
def size: () -> ::Integer
|
|
37
37
|
|
|
38
38
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/ObjectSummary.html#storage_class-instance_method
|
|
39
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
39
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
40
40
|
|
|
41
41
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/ObjectSummary.html#owner-instance_method
|
|
42
42
|
def owner: () -> Types::Owner
|
|
@@ -84,11 +84,13 @@ module Aws
|
|
|
84
84
|
?grant_read: ::String,
|
|
85
85
|
?grant_read_acp: ::String,
|
|
86
86
|
?grant_write_acp: ::String,
|
|
87
|
+
?if_match: ::String,
|
|
88
|
+
?if_none_match: ::String,
|
|
87
89
|
?metadata: Hash[::String, ::String],
|
|
88
90
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
89
91
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
90
92
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
91
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
93
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
92
94
|
?website_redirect_location: ::String,
|
|
93
95
|
?sse_customer_algorithm: ::String,
|
|
94
96
|
?sse_customer_key: ::String,
|
|
@@ -161,7 +163,7 @@ module Aws
|
|
|
161
163
|
?grant_write_acp: ::String,
|
|
162
164
|
?metadata: Hash[::String, ::String],
|
|
163
165
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
164
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
166
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
165
167
|
?website_redirect_location: ::String,
|
|
166
168
|
?sse_customer_algorithm: ::String,
|
|
167
169
|
?sse_customer_key: ::String,
|
|
@@ -207,7 +209,7 @@ module Aws
|
|
|
207
209
|
?write_offset_bytes: ::Integer,
|
|
208
210
|
?metadata: Hash[::String, ::String],
|
|
209
211
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
210
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
212
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
211
213
|
?website_redirect_location: ::String,
|
|
212
214
|
?sse_customer_algorithm: ::String,
|
|
213
215
|
?sse_customer_key: ::String,
|
|
@@ -304,7 +306,7 @@ module Aws
|
|
|
304
306
|
value: ::String?
|
|
305
307
|
},
|
|
306
308
|
]?,
|
|
307
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
|
|
309
|
+
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?
|
|
308
310
|
}?
|
|
309
311
|
}?
|
|
310
312
|
},
|
data/sig/resource.rbs
CHANGED
|
@@ -20,6 +20,7 @@ module Aws
|
|
|
20
20
|
?account_id: String,
|
|
21
21
|
?active_endpoint_cache: bool,
|
|
22
22
|
?adaptive_retry_wait_to_fill: bool,
|
|
23
|
+
?auth_scheme_preference: Array[String],
|
|
23
24
|
?client_side_monitoring: bool,
|
|
24
25
|
?client_side_monitoring_client_id: String,
|
|
25
26
|
?client_side_monitoring_host: String,
|
|
@@ -107,7 +108,13 @@ module Aws
|
|
|
107
108
|
bucket: {
|
|
108
109
|
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
|
109
110
|
type: ("Directory")?
|
|
110
|
-
}
|
|
111
|
+
}?,
|
|
112
|
+
tags: Array[
|
|
113
|
+
{
|
|
114
|
+
key: ::String,
|
|
115
|
+
value: ::String
|
|
116
|
+
},
|
|
117
|
+
]?
|
|
111
118
|
},
|
|
112
119
|
?grant_full_control: ::String,
|
|
113
120
|
?grant_read: ::String,
|