aws-sdk-s3 1.205.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 +15 -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/client.rb +52 -182
- data/lib/aws-sdk-s3/customizations.rb +1 -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/object.rb +4 -4
- data/lib/aws-sdk-s3/object_acl.rb +1 -1
- data/lib/aws-sdk-s3/object_summary.rb +4 -4
- data/lib/aws-sdk-s3/types.rb +23 -102
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +1 -1
- data/sig/client.rbs +11 -11
- data/sig/multipart_upload.rbs +1 -1
- data/sig/object.rbs +5 -5
- data/sig/object_summary.rbs +5 -5
- data/sig/types.rbs +14 -14
- metadata +17 -1
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
|
@@ -203,7 +203,7 @@ module Aws
|
|
|
203
203
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
204
204
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
205
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"),
|
|
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"),
|
|
207
207
|
?website_redirect_location: ::String,
|
|
208
208
|
?sse_customer_algorithm: ::String,
|
|
209
209
|
?sse_customer_key: ::String,
|
|
@@ -337,7 +337,7 @@ module Aws
|
|
|
337
337
|
key: ::String,
|
|
338
338
|
?metadata: Hash[::String, ::String],
|
|
339
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"),
|
|
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"),
|
|
341
341
|
?website_redirect_location: ::String,
|
|
342
342
|
?sse_customer_algorithm: ::String,
|
|
343
343
|
?sse_customer_key: ::String,
|
|
@@ -879,7 +879,7 @@ module Aws
|
|
|
879
879
|
def sse_customer_key_md5: () -> ::String
|
|
880
880
|
def ssekms_key_id: () -> ::String
|
|
881
881
|
def bucket_key_enabled: () -> bool
|
|
882
|
-
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")
|
|
883
883
|
def request_charged: () -> ("requester")
|
|
884
884
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
885
885
|
def parts_count: () -> ::Integer
|
|
@@ -939,7 +939,7 @@ module Aws
|
|
|
939
939
|
def etag: () -> ::String
|
|
940
940
|
def checksum: () -> Types::Checksum
|
|
941
941
|
def object_parts: () -> Types::GetObjectAttributesParts
|
|
942
|
-
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")
|
|
943
943
|
def object_size: () -> ::Integer
|
|
944
944
|
end
|
|
945
945
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
|
|
@@ -1085,7 +1085,7 @@ module Aws
|
|
|
1085
1085
|
def sse_customer_key_md5: () -> ::String
|
|
1086
1086
|
def ssekms_key_id: () -> ::String
|
|
1087
1087
|
def bucket_key_enabled: () -> bool
|
|
1088
|
-
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")
|
|
1089
1089
|
def request_charged: () -> ("requester")
|
|
1090
1090
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1091
1091
|
def parts_count: () -> ::Integer
|
|
@@ -1344,7 +1344,7 @@ module Aws
|
|
|
1344
1344
|
def parts: () -> ::Array[Types::Part]
|
|
1345
1345
|
def initiator: () -> Types::Initiator
|
|
1346
1346
|
def owner: () -> Types::Owner
|
|
1347
|
-
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")
|
|
1348
1348
|
def request_charged: () -> ("requester")
|
|
1349
1349
|
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1350
1350
|
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
@@ -1564,7 +1564,7 @@ module Aws
|
|
|
1564
1564
|
}?,
|
|
1565
1565
|
id: ::String,
|
|
1566
1566
|
included_object_versions: ("All" | "Current"),
|
|
1567
|
-
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")]?,
|
|
1568
1568
|
schedule: {
|
|
1569
1569
|
frequency: ("Daily" | "Weekly")
|
|
1570
1570
|
}
|
|
@@ -1907,7 +1907,7 @@ module Aws
|
|
|
1907
1907
|
destination: {
|
|
1908
1908
|
bucket: ::String,
|
|
1909
1909
|
account: ::String?,
|
|
1910
|
-
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")?,
|
|
1911
1911
|
access_control_translation: {
|
|
1912
1912
|
owner: ("Destination")
|
|
1913
1913
|
}?,
|
|
@@ -2066,7 +2066,7 @@ module Aws
|
|
|
2066
2066
|
?write_offset_bytes: ::Integer,
|
|
2067
2067
|
?metadata: Hash[::String, ::String],
|
|
2068
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"),
|
|
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"),
|
|
2070
2070
|
?website_redirect_location: ::String,
|
|
2071
2071
|
?sse_customer_algorithm: ::String,
|
|
2072
2072
|
?sse_customer_key: ::String,
|
|
@@ -2334,7 +2334,7 @@ module Aws
|
|
|
2334
2334
|
value: ::String?
|
|
2335
2335
|
},
|
|
2336
2336
|
]?,
|
|
2337
|
-
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")?
|
|
2338
2338
|
}?
|
|
2339
2339
|
}?
|
|
2340
2340
|
},
|
|
@@ -2540,7 +2540,7 @@ module Aws
|
|
|
2540
2540
|
?sse_customer_algorithm: ::String,
|
|
2541
2541
|
?ssekms_key_id: ::String,
|
|
2542
2542
|
?sse_customer_key_md5: ::String,
|
|
2543
|
-
?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"),
|
|
2544
2544
|
?tag_count: ::Integer,
|
|
2545
2545
|
?version_id: ::String,
|
|
2546
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")
|
|
@@ -186,7 +186,7 @@ module Aws
|
|
|
186
186
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
187
187
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
188
188
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
189
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "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"),
|
|
190
190
|
?website_redirect_location: ::String,
|
|
191
191
|
?sse_customer_algorithm: ::String,
|
|
192
192
|
?sse_customer_key: ::String,
|
|
@@ -259,7 +259,7 @@ module Aws
|
|
|
259
259
|
?grant_write_acp: ::String,
|
|
260
260
|
?metadata: Hash[::String, ::String],
|
|
261
261
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
262
|
-
?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"),
|
|
263
263
|
?website_redirect_location: ::String,
|
|
264
264
|
?sse_customer_algorithm: ::String,
|
|
265
265
|
?sse_customer_key: ::String,
|
|
@@ -305,7 +305,7 @@ module Aws
|
|
|
305
305
|
?write_offset_bytes: ::Integer,
|
|
306
306
|
?metadata: Hash[::String, ::String],
|
|
307
307
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
308
|
-
?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"),
|
|
309
309
|
?website_redirect_location: ::String,
|
|
310
310
|
?sse_customer_algorithm: ::String,
|
|
311
311
|
?sse_customer_key: ::String,
|
|
@@ -402,7 +402,7 @@ module Aws
|
|
|
402
402
|
value: ::String?
|
|
403
403
|
},
|
|
404
404
|
]?,
|
|
405
|
-
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")?
|
|
406
406
|
}?
|
|
407
407
|
}?
|
|
408
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
|
|
@@ -90,7 +90,7 @@ module Aws
|
|
|
90
90
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
91
91
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
92
92
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
93
|
-
?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"),
|
|
94
94
|
?website_redirect_location: ::String,
|
|
95
95
|
?sse_customer_algorithm: ::String,
|
|
96
96
|
?sse_customer_key: ::String,
|
|
@@ -163,7 +163,7 @@ module Aws
|
|
|
163
163
|
?grant_write_acp: ::String,
|
|
164
164
|
?metadata: Hash[::String, ::String],
|
|
165
165
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
166
|
-
?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"),
|
|
167
167
|
?website_redirect_location: ::String,
|
|
168
168
|
?sse_customer_algorithm: ::String,
|
|
169
169
|
?sse_customer_key: ::String,
|
|
@@ -209,7 +209,7 @@ module Aws
|
|
|
209
209
|
?write_offset_bytes: ::Integer,
|
|
210
210
|
?metadata: Hash[::String, ::String],
|
|
211
211
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
212
|
-
?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"),
|
|
213
213
|
?website_redirect_location: ::String,
|
|
214
214
|
?sse_customer_algorithm: ::String,
|
|
215
215
|
?sse_customer_key: ::String,
|
|
@@ -306,7 +306,7 @@ module Aws
|
|
|
306
306
|
value: ::String?
|
|
307
307
|
},
|
|
308
308
|
]?,
|
|
309
|
-
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")?
|
|
310
310
|
}?
|
|
311
311
|
}?
|
|
312
312
|
},
|
data/sig/types.rbs
CHANGED
|
@@ -286,7 +286,7 @@ module Aws::S3
|
|
|
286
286
|
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
|
287
287
|
attr_accessor tagging_directive: ("COPY" | "REPLACE")
|
|
288
288
|
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
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")
|
|
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")
|
|
290
290
|
attr_accessor website_redirect_location: ::String
|
|
291
291
|
attr_accessor sse_customer_algorithm: ::String
|
|
292
292
|
attr_accessor sse_customer_key: ::String
|
|
@@ -410,7 +410,7 @@ module Aws::S3
|
|
|
410
410
|
attr_accessor key: ::String
|
|
411
411
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
412
412
|
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
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")
|
|
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")
|
|
414
414
|
attr_accessor website_redirect_location: ::String
|
|
415
415
|
attr_accessor sse_customer_algorithm: ::String
|
|
416
416
|
attr_accessor sse_customer_key: ::String
|
|
@@ -638,7 +638,7 @@ module Aws::S3
|
|
|
638
638
|
class Destination
|
|
639
639
|
attr_accessor bucket: ::String
|
|
640
640
|
attr_accessor account: ::String
|
|
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")
|
|
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")
|
|
642
642
|
attr_accessor access_control_translation: Types::AccessControlTranslation
|
|
643
643
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
644
644
|
attr_accessor replication_time: Types::ReplicationTime
|
|
@@ -1013,7 +1013,7 @@ module Aws::S3
|
|
|
1013
1013
|
attr_accessor etag: ::String
|
|
1014
1014
|
attr_accessor checksum: Types::Checksum
|
|
1015
1015
|
attr_accessor object_parts: Types::GetObjectAttributesParts
|
|
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")
|
|
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")
|
|
1017
1017
|
attr_accessor object_size: ::Integer
|
|
1018
1018
|
SENSITIVE: []
|
|
1019
1019
|
end
|
|
@@ -1100,7 +1100,7 @@ module Aws::S3
|
|
|
1100
1100
|
attr_accessor sse_customer_key_md5: ::String
|
|
1101
1101
|
attr_accessor ssekms_key_id: ::String
|
|
1102
1102
|
attr_accessor bucket_key_enabled: bool
|
|
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")
|
|
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")
|
|
1104
1104
|
attr_accessor request_charged: ("requester")
|
|
1105
1105
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1106
1106
|
attr_accessor parts_count: ::Integer
|
|
@@ -1257,7 +1257,7 @@ module Aws::S3
|
|
|
1257
1257
|
attr_accessor sse_customer_key_md5: ::String
|
|
1258
1258
|
attr_accessor ssekms_key_id: ::String
|
|
1259
1259
|
attr_accessor bucket_key_enabled: bool
|
|
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")
|
|
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")
|
|
1261
1261
|
attr_accessor request_charged: ("requester")
|
|
1262
1262
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1263
1263
|
attr_accessor parts_count: ::Integer
|
|
@@ -1337,7 +1337,7 @@ module Aws::S3
|
|
|
1337
1337
|
end
|
|
1338
1338
|
|
|
1339
1339
|
class InvalidObjectState
|
|
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")
|
|
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")
|
|
1341
1341
|
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
|
1342
1342
|
SENSITIVE: []
|
|
1343
1343
|
end
|
|
@@ -1354,7 +1354,7 @@ module Aws::S3
|
|
|
1354
1354
|
attr_accessor filter: Types::InventoryFilter
|
|
1355
1355
|
attr_accessor id: ::String
|
|
1356
1356
|
attr_accessor included_object_versions: ("All" | "Current")
|
|
1357
|
-
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")]
|
|
1358
1358
|
attr_accessor schedule: Types::InventorySchedule
|
|
1359
1359
|
SENSITIVE: []
|
|
1360
1360
|
end
|
|
@@ -1713,7 +1713,7 @@ module Aws::S3
|
|
|
1713
1713
|
attr_accessor parts: ::Array[Types::Part]
|
|
1714
1714
|
attr_accessor initiator: Types::Initiator
|
|
1715
1715
|
attr_accessor owner: Types::Owner
|
|
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")
|
|
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")
|
|
1717
1717
|
attr_accessor request_charged: ("requester")
|
|
1718
1718
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1719
1719
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
@@ -1814,7 +1814,7 @@ module Aws::S3
|
|
|
1814
1814
|
attr_accessor upload_id: ::String
|
|
1815
1815
|
attr_accessor key: ::String
|
|
1816
1816
|
attr_accessor initiated: ::Time
|
|
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")
|
|
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")
|
|
1818
1818
|
attr_accessor owner: Types::Owner
|
|
1819
1819
|
attr_accessor initiator: Types::Initiator
|
|
1820
1820
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
@@ -1871,7 +1871,7 @@ module Aws::S3
|
|
|
1871
1871
|
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
|
1872
1872
|
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
|
1873
1873
|
attr_accessor size: ::Integer
|
|
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")
|
|
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")
|
|
1875
1875
|
attr_accessor owner: Types::Owner
|
|
1876
1876
|
attr_accessor restore_status: Types::RestoreStatus
|
|
1877
1877
|
SENSITIVE: []
|
|
@@ -2316,7 +2316,7 @@ module Aws::S3
|
|
|
2316
2316
|
attr_accessor write_offset_bytes: ::Integer
|
|
2317
2317
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
2318
2318
|
attr_accessor server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
|
|
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")
|
|
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")
|
|
2320
2320
|
attr_accessor website_redirect_location: ::String
|
|
2321
2321
|
attr_accessor sse_customer_algorithm: ::String
|
|
2322
2322
|
attr_accessor sse_customer_key: ::String
|
|
@@ -2562,7 +2562,7 @@ module Aws::S3
|
|
|
2562
2562
|
attr_accessor access_control_list: ::Array[Types::Grant]
|
|
2563
2563
|
attr_accessor tagging: Types::Tagging
|
|
2564
2564
|
attr_accessor user_metadata: ::Array[Types::MetadataEntry]
|
|
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")
|
|
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")
|
|
2566
2566
|
SENSITIVE: []
|
|
2567
2567
|
end
|
|
2568
2568
|
|
|
@@ -2885,7 +2885,7 @@ module Aws::S3
|
|
|
2885
2885
|
attr_accessor sse_customer_algorithm: ::String
|
|
2886
2886
|
attr_accessor ssekms_key_id: ::String
|
|
2887
2887
|
attr_accessor sse_customer_key_md5: ::String
|
|
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")
|
|
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")
|
|
2889
2889
|
attr_accessor tag_count: ::Integer
|
|
2890
2890
|
attr_accessor version_id: ::String
|
|
2891
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.208.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -112,6 +112,7 @@ files:
|
|
|
112
112
|
- lib/aws-sdk-s3/encryption/utils.rb
|
|
113
113
|
- lib/aws-sdk-s3/encryptionV2/client.rb
|
|
114
114
|
- lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb
|
|
115
|
+
- lib/aws-sdk-s3/encryptionV2/decryption.rb
|
|
115
116
|
- lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb
|
|
116
117
|
- lib/aws-sdk-s3/encryptionV2/default_key_provider.rb
|
|
117
118
|
- lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb
|
|
@@ -123,7 +124,22 @@ files:
|
|
|
123
124
|
- lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb
|
|
124
125
|
- lib/aws-sdk-s3/encryptionV2/materials.rb
|
|
125
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
|
|
126
141
|
- lib/aws-sdk-s3/encryption_v2.rb
|
|
142
|
+
- lib/aws-sdk-s3/encryption_v3.rb
|
|
127
143
|
- lib/aws-sdk-s3/endpoint_parameters.rb
|
|
128
144
|
- lib/aws-sdk-s3/endpoint_provider.rb
|
|
129
145
|
- lib/aws-sdk-s3/endpoints.rb
|