aws-sdk-s3 1.193.0 → 1.211.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 +130 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +1 -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 +918 -363
- data/lib/aws-sdk-s3/client_api.rb +63 -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 +241 -68
- data/lib/aws-sdk-s3/endpoints.rb +26 -0
- data/lib/aws-sdk-s3/file_downloader.rb +197 -134
- data/lib/aws-sdk-s3/file_uploader.rb +17 -13
- data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +95 -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/checksum_algorithm.rb +18 -5
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +58 -34
- data/lib/aws-sdk-s3/transfer_manager.rb +321 -0
- data/lib/aws-sdk-s3/types.rb +380 -216
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +1 -1
- data/sig/client.rbs +41 -12
- data/sig/multipart_upload.rbs +1 -1
- data/sig/object.rbs +7 -5
- data/sig/object_summary.rbs +7 -5
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +47 -14
- metadata +22 -3
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
CHANGED
|
@@ -133,7 +133,7 @@ module Aws
|
|
|
133
133
|
?write_offset_bytes: ::Integer,
|
|
134
134
|
?metadata: Hash[::String, ::String],
|
|
135
135
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
136
|
-
?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"),
|
|
137
137
|
?website_redirect_location: ::String,
|
|
138
138
|
?sse_customer_algorithm: ::String,
|
|
139
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,
|
|
@@ -334,7 +337,7 @@ module Aws
|
|
|
334
337
|
key: ::String,
|
|
335
338
|
?metadata: Hash[::String, ::String],
|
|
336
339
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
337
|
-
?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"),
|
|
338
341
|
?website_redirect_location: ::String,
|
|
339
342
|
?sse_customer_algorithm: ::String,
|
|
340
343
|
?sse_customer_key: ::String,
|
|
@@ -551,6 +554,17 @@ module Aws
|
|
|
551
554
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
552
555
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
553
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
|
+
|
|
554
568
|
interface _GetBucketAccelerateConfigurationResponseSuccess
|
|
555
569
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAccelerateConfigurationOutput]
|
|
556
570
|
def status: () -> ("Enabled" | "Suspended")
|
|
@@ -865,7 +879,7 @@ module Aws
|
|
|
865
879
|
def sse_customer_key_md5: () -> ::String
|
|
866
880
|
def ssekms_key_id: () -> ::String
|
|
867
881
|
def bucket_key_enabled: () -> bool
|
|
868
|
-
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")
|
|
869
883
|
def request_charged: () -> ("requester")
|
|
870
884
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
871
885
|
def parts_count: () -> ::Integer
|
|
@@ -925,7 +939,7 @@ module Aws
|
|
|
925
939
|
def etag: () -> ::String
|
|
926
940
|
def checksum: () -> Types::Checksum
|
|
927
941
|
def object_parts: () -> Types::GetObjectAttributesParts
|
|
928
|
-
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")
|
|
929
943
|
def object_size: () -> ::Integer
|
|
930
944
|
end
|
|
931
945
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
|
|
@@ -1071,7 +1085,7 @@ module Aws
|
|
|
1071
1085
|
def sse_customer_key_md5: () -> ::String
|
|
1072
1086
|
def ssekms_key_id: () -> ::String
|
|
1073
1087
|
def bucket_key_enabled: () -> bool
|
|
1074
|
-
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")
|
|
1075
1089
|
def request_charged: () -> ("requester")
|
|
1076
1090
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1077
1091
|
def parts_count: () -> ::Integer
|
|
@@ -1330,7 +1344,7 @@ module Aws
|
|
|
1330
1344
|
def parts: () -> ::Array[Types::Part]
|
|
1331
1345
|
def initiator: () -> Types::Initiator
|
|
1332
1346
|
def owner: () -> Types::Owner
|
|
1333
|
-
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")
|
|
1334
1348
|
def request_charged: () -> ("requester")
|
|
1335
1349
|
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1336
1350
|
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
@@ -1350,6 +1364,18 @@ module Aws
|
|
|
1350
1364
|
) -> _ListPartsResponseSuccess
|
|
1351
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartsResponseSuccess
|
|
1352
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
|
+
|
|
1353
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_accelerate_configuration-instance_method
|
|
1354
1380
|
def put_bucket_accelerate_configuration: (
|
|
1355
1381
|
bucket: ::String,
|
|
@@ -1467,7 +1493,10 @@ module Aws
|
|
|
1467
1493
|
sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
1468
1494
|
kms_master_key_id: ::String?
|
|
1469
1495
|
}?,
|
|
1470
|
-
bucket_key_enabled: bool
|
|
1496
|
+
bucket_key_enabled: bool?,
|
|
1497
|
+
blocked_encryption_types: {
|
|
1498
|
+
encryption_type: Array[("NONE" | "SSE-C")]?
|
|
1499
|
+
}?
|
|
1471
1500
|
},
|
|
1472
1501
|
]
|
|
1473
1502
|
},
|
|
@@ -1535,7 +1564,7 @@ module Aws
|
|
|
1535
1564
|
}?,
|
|
1536
1565
|
id: ::String,
|
|
1537
1566
|
included_object_versions: ("All" | "Current"),
|
|
1538
|
-
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")]?,
|
|
1539
1568
|
schedule: {
|
|
1540
1569
|
frequency: ("Daily" | "Weekly")
|
|
1541
1570
|
}
|
|
@@ -1878,7 +1907,7 @@ module Aws
|
|
|
1878
1907
|
destination: {
|
|
1879
1908
|
bucket: ::String,
|
|
1880
1909
|
account: ::String?,
|
|
1881
|
-
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")?,
|
|
1882
1911
|
access_control_translation: {
|
|
1883
1912
|
owner: ("Destination")
|
|
1884
1913
|
}?,
|
|
@@ -2037,7 +2066,7 @@ module Aws
|
|
|
2037
2066
|
?write_offset_bytes: ::Integer,
|
|
2038
2067
|
?metadata: Hash[::String, ::String],
|
|
2039
2068
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2040
|
-
?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"),
|
|
2041
2070
|
?website_redirect_location: ::String,
|
|
2042
2071
|
?sse_customer_algorithm: ::String,
|
|
2043
2072
|
?sse_customer_key: ::String,
|
|
@@ -2305,7 +2334,7 @@ module Aws
|
|
|
2305
2334
|
value: ::String?
|
|
2306
2335
|
},
|
|
2307
2336
|
]?,
|
|
2308
|
-
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")?
|
|
2309
2338
|
}?
|
|
2310
2339
|
}?
|
|
2311
2340
|
},
|
|
@@ -2511,7 +2540,7 @@ module Aws
|
|
|
2511
2540
|
?sse_customer_algorithm: ::String,
|
|
2512
2541
|
?ssekms_key_id: ::String,
|
|
2513
2542
|
?sse_customer_key_md5: ::String,
|
|
2514
|
-
?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"),
|
|
2515
2544
|
?tag_count: ::Integer,
|
|
2516
2545
|
?version_id: ::String,
|
|
2517
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,
|
data/sig/types.rbs
CHANGED
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
module Aws::S3
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
|
+
class AbacStatus
|
|
12
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
11
16
|
class AbortIncompleteMultipartUpload
|
|
12
17
|
attr_accessor days_after_initiation: ::Integer
|
|
13
18
|
SENSITIVE: []
|
|
@@ -77,6 +82,11 @@ module Aws::S3
|
|
|
77
82
|
SENSITIVE: []
|
|
78
83
|
end
|
|
79
84
|
|
|
85
|
+
class BlockedEncryptionTypes
|
|
86
|
+
attr_accessor encryption_type: ::Array[("NONE" | "SSE-C")]
|
|
87
|
+
SENSITIVE: []
|
|
88
|
+
end
|
|
89
|
+
|
|
80
90
|
class Bucket
|
|
81
91
|
attr_accessor name: ::String
|
|
82
92
|
attr_accessor creation_date: ::Time
|
|
@@ -269,12 +279,14 @@ module Aws::S3
|
|
|
269
279
|
attr_accessor grant_read: ::String
|
|
270
280
|
attr_accessor grant_read_acp: ::String
|
|
271
281
|
attr_accessor grant_write_acp: ::String
|
|
282
|
+
attr_accessor if_match: ::String
|
|
283
|
+
attr_accessor if_none_match: ::String
|
|
272
284
|
attr_accessor key: ::String
|
|
273
285
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
274
286
|
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
|
275
287
|
attr_accessor tagging_directive: ("COPY" | "REPLACE")
|
|
276
288
|
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
277
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
289
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
278
290
|
attr_accessor website_redirect_location: ::String
|
|
279
291
|
attr_accessor sse_customer_algorithm: ::String
|
|
280
292
|
attr_accessor sse_customer_key: ::String
|
|
@@ -398,7 +410,7 @@ module Aws::S3
|
|
|
398
410
|
attr_accessor key: ::String
|
|
399
411
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
400
412
|
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
401
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
413
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
402
414
|
attr_accessor website_redirect_location: ::String
|
|
403
415
|
attr_accessor sse_customer_algorithm: ::String
|
|
404
416
|
attr_accessor sse_customer_key: ::String
|
|
@@ -626,7 +638,7 @@ module Aws::S3
|
|
|
626
638
|
class Destination
|
|
627
639
|
attr_accessor bucket: ::String
|
|
628
640
|
attr_accessor account: ::String
|
|
629
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
641
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
630
642
|
attr_accessor access_control_translation: Types::AccessControlTranslation
|
|
631
643
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
632
644
|
attr_accessor replication_time: Types::ReplicationTime
|
|
@@ -694,6 +706,17 @@ module Aws::S3
|
|
|
694
706
|
SENSITIVE: []
|
|
695
707
|
end
|
|
696
708
|
|
|
709
|
+
class GetBucketAbacOutput
|
|
710
|
+
attr_accessor abac_status: Types::AbacStatus
|
|
711
|
+
SENSITIVE: []
|
|
712
|
+
end
|
|
713
|
+
|
|
714
|
+
class GetBucketAbacRequest
|
|
715
|
+
attr_accessor bucket: ::String
|
|
716
|
+
attr_accessor expected_bucket_owner: ::String
|
|
717
|
+
SENSITIVE: []
|
|
718
|
+
end
|
|
719
|
+
|
|
697
720
|
class GetBucketAccelerateConfigurationOutput
|
|
698
721
|
attr_accessor status: ("Enabled" | "Suspended")
|
|
699
722
|
attr_accessor request_charged: ("requester")
|
|
@@ -990,7 +1013,7 @@ module Aws::S3
|
|
|
990
1013
|
attr_accessor etag: ::String
|
|
991
1014
|
attr_accessor checksum: Types::Checksum
|
|
992
1015
|
attr_accessor object_parts: Types::GetObjectAttributesParts
|
|
993
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1016
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
994
1017
|
attr_accessor object_size: ::Integer
|
|
995
1018
|
SENSITIVE: []
|
|
996
1019
|
end
|
|
@@ -1077,7 +1100,7 @@ module Aws::S3
|
|
|
1077
1100
|
attr_accessor sse_customer_key_md5: ::String
|
|
1078
1101
|
attr_accessor ssekms_key_id: ::String
|
|
1079
1102
|
attr_accessor bucket_key_enabled: bool
|
|
1080
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1103
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1081
1104
|
attr_accessor request_charged: ("requester")
|
|
1082
1105
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1083
1106
|
attr_accessor parts_count: ::Integer
|
|
@@ -1234,7 +1257,7 @@ module Aws::S3
|
|
|
1234
1257
|
attr_accessor sse_customer_key_md5: ::String
|
|
1235
1258
|
attr_accessor ssekms_key_id: ::String
|
|
1236
1259
|
attr_accessor bucket_key_enabled: bool
|
|
1237
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1260
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1238
1261
|
attr_accessor request_charged: ("requester")
|
|
1239
1262
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1240
1263
|
attr_accessor parts_count: ::Integer
|
|
@@ -1314,7 +1337,7 @@ module Aws::S3
|
|
|
1314
1337
|
end
|
|
1315
1338
|
|
|
1316
1339
|
class InvalidObjectState
|
|
1317
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1340
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1318
1341
|
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
|
1319
1342
|
SENSITIVE: []
|
|
1320
1343
|
end
|
|
@@ -1331,7 +1354,7 @@ module Aws::S3
|
|
|
1331
1354
|
attr_accessor filter: Types::InventoryFilter
|
|
1332
1355
|
attr_accessor id: ::String
|
|
1333
1356
|
attr_accessor included_object_versions: ("All" | "Current")
|
|
1334
|
-
attr_accessor optional_fields: ::Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")]
|
|
1357
|
+
attr_accessor optional_fields: ::Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")]
|
|
1335
1358
|
attr_accessor schedule: Types::InventorySchedule
|
|
1336
1359
|
SENSITIVE: []
|
|
1337
1360
|
end
|
|
@@ -1690,7 +1713,7 @@ module Aws::S3
|
|
|
1690
1713
|
attr_accessor parts: ::Array[Types::Part]
|
|
1691
1714
|
attr_accessor initiator: Types::Initiator
|
|
1692
1715
|
attr_accessor owner: Types::Owner
|
|
1693
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1716
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1694
1717
|
attr_accessor request_charged: ("requester")
|
|
1695
1718
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1696
1719
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
@@ -1791,7 +1814,7 @@ module Aws::S3
|
|
|
1791
1814
|
attr_accessor upload_id: ::String
|
|
1792
1815
|
attr_accessor key: ::String
|
|
1793
1816
|
attr_accessor initiated: ::Time
|
|
1794
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1817
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1795
1818
|
attr_accessor owner: Types::Owner
|
|
1796
1819
|
attr_accessor initiator: Types::Initiator
|
|
1797
1820
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
@@ -1848,7 +1871,7 @@ module Aws::S3
|
|
|
1848
1871
|
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
|
1849
1872
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1850
1873
|
attr_accessor size: ::Integer
|
|
1851
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1874
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1852
1875
|
attr_accessor owner: Types::Owner
|
|
1853
1876
|
attr_accessor restore_status: Types::RestoreStatus
|
|
1854
1877
|
SENSITIVE: []
|
|
@@ -1991,6 +2014,15 @@ module Aws::S3
|
|
|
1991
2014
|
SENSITIVE: []
|
|
1992
2015
|
end
|
|
1993
2016
|
|
|
2017
|
+
class PutBucketAbacRequest
|
|
2018
|
+
attr_accessor bucket: ::String
|
|
2019
|
+
attr_accessor content_md5: ::String
|
|
2020
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
2021
|
+
attr_accessor expected_bucket_owner: ::String
|
|
2022
|
+
attr_accessor abac_status: Types::AbacStatus
|
|
2023
|
+
SENSITIVE: []
|
|
2024
|
+
end
|
|
2025
|
+
|
|
1994
2026
|
class PutBucketAccelerateConfigurationRequest
|
|
1995
2027
|
attr_accessor bucket: ::String
|
|
1996
2028
|
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
|
@@ -2284,7 +2316,7 @@ module Aws::S3
|
|
|
2284
2316
|
attr_accessor write_offset_bytes: ::Integer
|
|
2285
2317
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
2286
2318
|
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
2287
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
2319
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
2288
2320
|
attr_accessor website_redirect_location: ::String
|
|
2289
2321
|
attr_accessor sse_customer_algorithm: ::String
|
|
2290
2322
|
attr_accessor sse_customer_key: ::String
|
|
@@ -2530,7 +2562,7 @@ module Aws::S3
|
|
|
2530
2562
|
attr_accessor access_control_list: ::Array[Types::Grant]
|
|
2531
2563
|
attr_accessor tagging: Types::Tagging
|
|
2532
2564
|
attr_accessor user_metadata: ::Array[Types::MetadataEntry]
|
|
2533
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
2565
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
2534
2566
|
SENSITIVE: []
|
|
2535
2567
|
end
|
|
2536
2568
|
|
|
@@ -2605,6 +2637,7 @@ module Aws::S3
|
|
|
2605
2637
|
class ServerSideEncryptionRule
|
|
2606
2638
|
attr_accessor apply_server_side_encryption_by_default: Types::ServerSideEncryptionByDefault
|
|
2607
2639
|
attr_accessor bucket_key_enabled: bool
|
|
2640
|
+
attr_accessor blocked_encryption_types: Types::BlockedEncryptionTypes
|
|
2608
2641
|
SENSITIVE: []
|
|
2609
2642
|
end
|
|
2610
2643
|
|
|
@@ -2852,7 +2885,7 @@ module Aws::S3
|
|
|
2852
2885
|
attr_accessor sse_customer_algorithm: ::String
|
|
2853
2886
|
attr_accessor ssekms_key_id: ::String
|
|
2854
2887
|
attr_accessor sse_customer_key_md5: ::String
|
|
2855
|
-
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
2888
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
2856
2889
|
attr_accessor tag_count: ::Integer
|
|
2857
2890
|
attr_accessor version_id: ::String
|
|
2858
2891
|
attr_accessor bucket_key_enabled: bool
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-s3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.211.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -46,7 +46,7 @@ dependencies:
|
|
|
46
46
|
version: '3'
|
|
47
47
|
- - ">="
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 3.
|
|
49
|
+
version: 3.241.3
|
|
50
50
|
type: :runtime
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -56,7 +56,7 @@ dependencies:
|
|
|
56
56
|
version: '3'
|
|
57
57
|
- - ">="
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: 3.
|
|
59
|
+
version: 3.241.3
|
|
60
60
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
|
61
61
|
This gem is part of the AWS SDK for Ruby.
|
|
62
62
|
email:
|
|
@@ -95,6 +95,7 @@ files:
|
|
|
95
95
|
- lib/aws-sdk-s3/customizations/object_version.rb
|
|
96
96
|
- lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb
|
|
97
97
|
- lib/aws-sdk-s3/customizations/types/permanent_redirect.rb
|
|
98
|
+
- lib/aws-sdk-s3/default_executor.rb
|
|
98
99
|
- lib/aws-sdk-s3/encryption.rb
|
|
99
100
|
- lib/aws-sdk-s3/encryption/client.rb
|
|
100
101
|
- lib/aws-sdk-s3/encryption/decrypt_handler.rb
|
|
@@ -111,6 +112,7 @@ files:
|
|
|
111
112
|
- lib/aws-sdk-s3/encryption/utils.rb
|
|
112
113
|
- lib/aws-sdk-s3/encryptionV2/client.rb
|
|
113
114
|
- lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb
|
|
115
|
+
- lib/aws-sdk-s3/encryptionV2/decryption.rb
|
|
114
116
|
- lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb
|
|
115
117
|
- lib/aws-sdk-s3/encryptionV2/default_key_provider.rb
|
|
116
118
|
- lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb
|
|
@@ -122,7 +124,22 @@ files:
|
|
|
122
124
|
- lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb
|
|
123
125
|
- lib/aws-sdk-s3/encryptionV2/materials.rb
|
|
124
126
|
- lib/aws-sdk-s3/encryptionV2/utils.rb
|
|
127
|
+
- lib/aws-sdk-s3/encryptionV3/client.rb
|
|
128
|
+
- lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb
|
|
129
|
+
- lib/aws-sdk-s3/encryptionV3/decryption.rb
|
|
130
|
+
- lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb
|
|
131
|
+
- lib/aws-sdk-s3/encryptionV3/default_key_provider.rb
|
|
132
|
+
- lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb
|
|
133
|
+
- lib/aws-sdk-s3/encryptionV3/errors.rb
|
|
134
|
+
- lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb
|
|
135
|
+
- lib/aws-sdk-s3/encryptionV3/io_decrypter.rb
|
|
136
|
+
- lib/aws-sdk-s3/encryptionV3/io_encrypter.rb
|
|
137
|
+
- lib/aws-sdk-s3/encryptionV3/key_provider.rb
|
|
138
|
+
- lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb
|
|
139
|
+
- lib/aws-sdk-s3/encryptionV3/materials.rb
|
|
140
|
+
- lib/aws-sdk-s3/encryptionV3/utils.rb
|
|
125
141
|
- lib/aws-sdk-s3/encryption_v2.rb
|
|
142
|
+
- lib/aws-sdk-s3/encryption_v3.rb
|
|
126
143
|
- lib/aws-sdk-s3/endpoint_parameters.rb
|
|
127
144
|
- lib/aws-sdk-s3/endpoint_provider.rb
|
|
128
145
|
- lib/aws-sdk-s3/endpoints.rb
|
|
@@ -134,6 +151,7 @@ files:
|
|
|
134
151
|
- lib/aws-sdk-s3/file_part.rb
|
|
135
152
|
- lib/aws-sdk-s3/file_uploader.rb
|
|
136
153
|
- lib/aws-sdk-s3/legacy_signer.rb
|
|
154
|
+
- lib/aws-sdk-s3/multipart_download_error.rb
|
|
137
155
|
- lib/aws-sdk-s3/multipart_file_uploader.rb
|
|
138
156
|
- lib/aws-sdk-s3/multipart_stream_uploader.rb
|
|
139
157
|
- lib/aws-sdk-s3/multipart_upload.rb
|
|
@@ -169,6 +187,7 @@ files:
|
|
|
169
187
|
- lib/aws-sdk-s3/presigned_post.rb
|
|
170
188
|
- lib/aws-sdk-s3/presigner.rb
|
|
171
189
|
- lib/aws-sdk-s3/resource.rb
|
|
190
|
+
- lib/aws-sdk-s3/transfer_manager.rb
|
|
172
191
|
- lib/aws-sdk-s3/types.rb
|
|
173
192
|
- lib/aws-sdk-s3/waiters.rb
|
|
174
193
|
- sig/bucket.rbs
|