aws-sdk-s3 1.174.0 → 1.179.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +32 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +40 -26
- data/lib/aws-sdk-s3/bucket_acl.rb +5 -4
- data/lib/aws-sdk-s3/bucket_cors.rb +5 -4
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +1 -1
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +2 -2
- data/lib/aws-sdk-s3/bucket_logging.rb +1 -1
- data/lib/aws-sdk-s3/bucket_policy.rb +9 -8
- data/lib/aws-sdk-s3/bucket_request_payment.rb +2 -2
- data/lib/aws-sdk-s3/bucket_tagging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_versioning.rb +6 -6
- data/lib/aws-sdk-s3/bucket_website.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +1409 -867
- data/lib/aws-sdk-s3/client_api.rb +128 -2
- data/lib/aws-sdk-s3/endpoint_provider.rb +36 -0
- data/lib/aws-sdk-s3/endpoints.rb +42 -0
- data/lib/aws-sdk-s3/file_downloader.rb +4 -21
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
- data/lib/aws-sdk-s3/multipart_upload.rb +48 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +52 -36
- data/lib/aws-sdk-s3/object.rb +111 -59
- data/lib/aws-sdk-s3/object_acl.rb +4 -4
- data/lib/aws-sdk-s3/object_summary.rb +63 -28
- data/lib/aws-sdk-s3/object_version.rb +21 -8
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
- data/lib/aws-sdk-s3/presigner.rb +5 -5
- data/lib/aws-sdk-s3/resource.rb +9 -8
- data/lib/aws-sdk-s3/types.rb +1264 -528
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +5 -4
- data/sig/bucket_acl.rbs +1 -1
- data/sig/bucket_cors.rbs +1 -1
- data/sig/bucket_lifecycle.rbs +1 -1
- data/sig/bucket_lifecycle_configuration.rbs +1 -1
- data/sig/bucket_logging.rbs +1 -1
- data/sig/bucket_policy.rbs +1 -1
- data/sig/bucket_request_payment.rbs +1 -1
- data/sig/bucket_tagging.rbs +1 -1
- data/sig/bucket_versioning.rbs +3 -3
- data/sig/bucket_website.rbs +1 -1
- data/sig/client.rbs +85 -31
- data/sig/multipart_upload.rbs +8 -1
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +13 -5
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +11 -6
- data/sig/object_version.rbs +5 -2
- data/sig/resource.rbs +4 -2
- data/sig/types.rbs +126 -34
- metadata +5 -5
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/types.rbs
CHANGED
@@ -91,7 +91,7 @@ module Aws::S3
|
|
91
91
|
end
|
92
92
|
|
93
93
|
class BucketInfo
|
94
|
-
attr_accessor data_redundancy: ("SingleAvailabilityZone")
|
94
|
+
attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
|
95
95
|
attr_accessor type: ("Directory")
|
96
96
|
SENSITIVE: []
|
97
97
|
end
|
@@ -144,8 +144,10 @@ module Aws::S3
|
|
144
144
|
class Checksum
|
145
145
|
attr_accessor checksum_crc32: ::String
|
146
146
|
attr_accessor checksum_crc32c: ::String
|
147
|
+
attr_accessor checksum_crc64nvme: ::String
|
147
148
|
attr_accessor checksum_sha1: ::String
|
148
149
|
attr_accessor checksum_sha256: ::String
|
150
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
149
151
|
SENSITIVE: []
|
150
152
|
end
|
151
153
|
|
@@ -171,8 +173,10 @@ module Aws::S3
|
|
171
173
|
attr_accessor etag: ::String
|
172
174
|
attr_accessor checksum_crc32: ::String
|
173
175
|
attr_accessor checksum_crc32c: ::String
|
176
|
+
attr_accessor checksum_crc64nvme: ::String
|
174
177
|
attr_accessor checksum_sha1: ::String
|
175
178
|
attr_accessor checksum_sha256: ::String
|
179
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
176
180
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
177
181
|
attr_accessor version_id: ::String
|
178
182
|
attr_accessor ssekms_key_id: ::String
|
@@ -188,8 +192,11 @@ module Aws::S3
|
|
188
192
|
attr_accessor upload_id: ::String
|
189
193
|
attr_accessor checksum_crc32: ::String
|
190
194
|
attr_accessor checksum_crc32c: ::String
|
195
|
+
attr_accessor checksum_crc64nvme: ::String
|
191
196
|
attr_accessor checksum_sha1: ::String
|
192
197
|
attr_accessor checksum_sha256: ::String
|
198
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
199
|
+
attr_accessor mpu_object_size: ::Integer
|
193
200
|
attr_accessor request_payer: ("requester")
|
194
201
|
attr_accessor expected_bucket_owner: ::String
|
195
202
|
attr_accessor if_match: ::String
|
@@ -209,6 +216,7 @@ module Aws::S3
|
|
209
216
|
attr_accessor etag: ::String
|
210
217
|
attr_accessor checksum_crc32: ::String
|
211
218
|
attr_accessor checksum_crc32c: ::String
|
219
|
+
attr_accessor checksum_crc64nvme: ::String
|
212
220
|
attr_accessor checksum_sha1: ::String
|
213
221
|
attr_accessor checksum_sha256: ::String
|
214
222
|
attr_accessor part_number: ::Integer
|
@@ -245,7 +253,7 @@ module Aws::S3
|
|
245
253
|
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
246
254
|
attr_accessor bucket: ::String
|
247
255
|
attr_accessor cache_control: ::String
|
248
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
256
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
249
257
|
attr_accessor content_disposition: ::String
|
250
258
|
attr_accessor content_encoding: ::String
|
251
259
|
attr_accessor content_language: ::String
|
@@ -289,8 +297,10 @@ module Aws::S3
|
|
289
297
|
class CopyObjectResult
|
290
298
|
attr_accessor etag: ::String
|
291
299
|
attr_accessor last_modified: ::Time
|
300
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
292
301
|
attr_accessor checksum_crc32: ::String
|
293
302
|
attr_accessor checksum_crc32c: ::String
|
303
|
+
attr_accessor checksum_crc64nvme: ::String
|
294
304
|
attr_accessor checksum_sha1: ::String
|
295
305
|
attr_accessor checksum_sha256: ::String
|
296
306
|
SENSITIVE: []
|
@@ -301,6 +311,7 @@ module Aws::S3
|
|
301
311
|
attr_accessor last_modified: ::Time
|
302
312
|
attr_accessor checksum_crc32: ::String
|
303
313
|
attr_accessor checksum_crc32c: ::String
|
314
|
+
attr_accessor checksum_crc64nvme: ::String
|
304
315
|
attr_accessor checksum_sha1: ::String
|
305
316
|
attr_accessor checksum_sha256: ::String
|
306
317
|
SENSITIVE: []
|
@@ -313,6 +324,15 @@ module Aws::S3
|
|
313
324
|
SENSITIVE: []
|
314
325
|
end
|
315
326
|
|
327
|
+
class CreateBucketMetadataTableConfigurationRequest
|
328
|
+
attr_accessor bucket: ::String
|
329
|
+
attr_accessor content_md5: ::String
|
330
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
331
|
+
attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
|
332
|
+
attr_accessor expected_bucket_owner: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
316
336
|
class CreateBucketOutput
|
317
337
|
attr_accessor location: ::String
|
318
338
|
SENSITIVE: []
|
@@ -345,7 +365,8 @@ module Aws::S3
|
|
345
365
|
attr_accessor ssekms_encryption_context: ::String
|
346
366
|
attr_accessor bucket_key_enabled: bool
|
347
367
|
attr_accessor request_charged: ("requester")
|
348
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
368
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
369
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
349
370
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
350
371
|
end
|
351
372
|
|
@@ -379,7 +400,8 @@ module Aws::S3
|
|
379
400
|
attr_accessor object_lock_retain_until_date: ::Time
|
380
401
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
381
402
|
attr_accessor expected_bucket_owner: ::String
|
382
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
403
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
404
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
383
405
|
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
384
406
|
end
|
385
407
|
|
@@ -453,6 +475,12 @@ module Aws::S3
|
|
453
475
|
SENSITIVE: []
|
454
476
|
end
|
455
477
|
|
478
|
+
class DeleteBucketMetadataTableConfigurationRequest
|
479
|
+
attr_accessor bucket: ::String
|
480
|
+
attr_accessor expected_bucket_owner: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
456
484
|
class DeleteBucketMetricsConfigurationRequest
|
457
485
|
attr_accessor bucket: ::String
|
458
486
|
attr_accessor id: ::String
|
@@ -558,7 +586,7 @@ module Aws::S3
|
|
558
586
|
attr_accessor request_payer: ("requester")
|
559
587
|
attr_accessor bypass_governance_retention: bool
|
560
588
|
attr_accessor expected_bucket_owner: ::String
|
561
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
589
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
562
590
|
SENSITIVE: []
|
563
591
|
end
|
564
592
|
|
@@ -615,6 +643,12 @@ module Aws::S3
|
|
615
643
|
SENSITIVE: []
|
616
644
|
end
|
617
645
|
|
646
|
+
class ErrorDetails
|
647
|
+
attr_accessor error_code: ::String
|
648
|
+
attr_accessor error_message: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
618
652
|
class ErrorDocument
|
619
653
|
attr_accessor key: ::String
|
620
654
|
SENSITIVE: []
|
@@ -761,6 +795,24 @@ module Aws::S3
|
|
761
795
|
SENSITIVE: []
|
762
796
|
end
|
763
797
|
|
798
|
+
class GetBucketMetadataTableConfigurationOutput
|
799
|
+
attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class GetBucketMetadataTableConfigurationRequest
|
804
|
+
attr_accessor bucket: ::String
|
805
|
+
attr_accessor expected_bucket_owner: ::String
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class GetBucketMetadataTableConfigurationResult
|
810
|
+
attr_accessor metadata_table_configuration_result: Types::MetadataTableConfigurationResult
|
811
|
+
attr_accessor status: ::String
|
812
|
+
attr_accessor error: Types::ErrorDetails
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
764
816
|
class GetBucketMetricsConfigurationOutput
|
765
817
|
attr_accessor metrics_configuration: Types::MetricsConfiguration
|
766
818
|
SENSITIVE: []
|
@@ -961,8 +1013,10 @@ module Aws::S3
|
|
961
1013
|
attr_accessor etag: ::String
|
962
1014
|
attr_accessor checksum_crc32: ::String
|
963
1015
|
attr_accessor checksum_crc32c: ::String
|
1016
|
+
attr_accessor checksum_crc64nvme: ::String
|
964
1017
|
attr_accessor checksum_sha1: ::String
|
965
1018
|
attr_accessor checksum_sha256: ::String
|
1019
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
966
1020
|
attr_accessor missing_meta: ::Integer
|
967
1021
|
attr_accessor version_id: ::String
|
968
1022
|
attr_accessor cache_control: ::String
|
@@ -1091,7 +1145,7 @@ module Aws::S3
|
|
1091
1145
|
end
|
1092
1146
|
|
1093
1147
|
class HeadBucketOutput
|
1094
|
-
attr_accessor bucket_location_type: ("AvailabilityZone")
|
1148
|
+
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
1095
1149
|
attr_accessor bucket_location_name: ::String
|
1096
1150
|
attr_accessor bucket_region: ::String
|
1097
1151
|
attr_accessor access_point_alias: bool
|
@@ -1114,8 +1168,10 @@ module Aws::S3
|
|
1114
1168
|
attr_accessor content_length: ::Integer
|
1115
1169
|
attr_accessor checksum_crc32: ::String
|
1116
1170
|
attr_accessor checksum_crc32c: ::String
|
1171
|
+
attr_accessor checksum_crc64nvme: ::String
|
1117
1172
|
attr_accessor checksum_sha1: ::String
|
1118
1173
|
attr_accessor checksum_sha256: ::String
|
1174
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1119
1175
|
attr_accessor etag: ::String
|
1120
1176
|
attr_accessor missing_meta: ::Integer
|
1121
1177
|
attr_accessor version_id: ::String
|
@@ -1545,7 +1601,8 @@ module Aws::S3
|
|
1545
1601
|
attr_accessor owner: Types::Owner
|
1546
1602
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1547
1603
|
attr_accessor request_charged: ("requester")
|
1548
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1604
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1605
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1549
1606
|
SENSITIVE: []
|
1550
1607
|
end
|
1551
1608
|
|
@@ -1564,7 +1621,7 @@ module Aws::S3
|
|
1564
1621
|
end
|
1565
1622
|
|
1566
1623
|
class LocationInfo
|
1567
|
-
attr_accessor type: ("AvailabilityZone")
|
1624
|
+
attr_accessor type: ("AvailabilityZone" | "LocalZone")
|
1568
1625
|
attr_accessor name: ::String
|
1569
1626
|
SENSITIVE: []
|
1570
1627
|
end
|
@@ -1583,6 +1640,16 @@ module Aws::S3
|
|
1583
1640
|
SENSITIVE: []
|
1584
1641
|
end
|
1585
1642
|
|
1643
|
+
class MetadataTableConfiguration
|
1644
|
+
attr_accessor s3_tables_destination: Types::S3TablesDestination
|
1645
|
+
SENSITIVE: []
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
class MetadataTableConfigurationResult
|
1649
|
+
attr_accessor s3_tables_destination_result: Types::S3TablesDestinationResult
|
1650
|
+
SENSITIVE: []
|
1651
|
+
end
|
1652
|
+
|
1586
1653
|
class Metrics
|
1587
1654
|
attr_accessor status: ("Enabled" | "Disabled")
|
1588
1655
|
attr_accessor event_threshold: Types::ReplicationTimeValue
|
@@ -1617,7 +1684,8 @@ module Aws::S3
|
|
1617
1684
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1618
1685
|
attr_accessor owner: Types::Owner
|
1619
1686
|
attr_accessor initiator: Types::Initiator
|
1620
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1687
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1688
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1621
1689
|
SENSITIVE: []
|
1622
1690
|
end
|
1623
1691
|
|
@@ -1667,7 +1735,8 @@ module Aws::S3
|
|
1667
1735
|
attr_accessor key: ::String
|
1668
1736
|
attr_accessor last_modified: ::Time
|
1669
1737
|
attr_accessor etag: ::String
|
1670
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
1738
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1739
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1671
1740
|
attr_accessor size: ::Integer
|
1672
1741
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1673
1742
|
attr_accessor owner: Types::Owner
|
@@ -1717,6 +1786,7 @@ module Aws::S3
|
|
1717
1786
|
attr_accessor size: ::Integer
|
1718
1787
|
attr_accessor checksum_crc32: ::String
|
1719
1788
|
attr_accessor checksum_crc32c: ::String
|
1789
|
+
attr_accessor checksum_crc64nvme: ::String
|
1720
1790
|
attr_accessor checksum_sha1: ::String
|
1721
1791
|
attr_accessor checksum_sha256: ::String
|
1722
1792
|
SENSITIVE: []
|
@@ -1724,7 +1794,8 @@ module Aws::S3
|
|
1724
1794
|
|
1725
1795
|
class ObjectVersion
|
1726
1796
|
attr_accessor etag: ::String
|
1727
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
1797
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1798
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1728
1799
|
attr_accessor size: ::Integer
|
1729
1800
|
attr_accessor storage_class: ("STANDARD")
|
1730
1801
|
attr_accessor key: ::String
|
@@ -1773,6 +1844,7 @@ module Aws::S3
|
|
1773
1844
|
attr_accessor size: ::Integer
|
1774
1845
|
attr_accessor checksum_crc32: ::String
|
1775
1846
|
attr_accessor checksum_crc32c: ::String
|
1847
|
+
attr_accessor checksum_crc64nvme: ::String
|
1776
1848
|
attr_accessor checksum_sha1: ::String
|
1777
1849
|
attr_accessor checksum_sha256: ::String
|
1778
1850
|
SENSITIVE: []
|
@@ -1813,7 +1885,7 @@ module Aws::S3
|
|
1813
1885
|
attr_accessor bucket: ::String
|
1814
1886
|
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
1815
1887
|
attr_accessor expected_bucket_owner: ::String
|
1816
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1888
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1817
1889
|
SENSITIVE: []
|
1818
1890
|
end
|
1819
1891
|
|
@@ -1822,7 +1894,7 @@ module Aws::S3
|
|
1822
1894
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1823
1895
|
attr_accessor bucket: ::String
|
1824
1896
|
attr_accessor content_md5: ::String
|
1825
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1897
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1826
1898
|
attr_accessor grant_full_control: ::String
|
1827
1899
|
attr_accessor grant_read: ::String
|
1828
1900
|
attr_accessor grant_read_acp: ::String
|
@@ -1844,7 +1916,7 @@ module Aws::S3
|
|
1844
1916
|
attr_accessor bucket: ::String
|
1845
1917
|
attr_accessor cors_configuration: Types::CORSConfiguration
|
1846
1918
|
attr_accessor content_md5: ::String
|
1847
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1919
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1848
1920
|
attr_accessor expected_bucket_owner: ::String
|
1849
1921
|
SENSITIVE: []
|
1850
1922
|
end
|
@@ -1852,7 +1924,7 @@ module Aws::S3
|
|
1852
1924
|
class PutBucketEncryptionRequest
|
1853
1925
|
attr_accessor bucket: ::String
|
1854
1926
|
attr_accessor content_md5: ::String
|
1855
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1927
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1856
1928
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
1857
1929
|
attr_accessor expected_bucket_owner: ::String
|
1858
1930
|
SENSITIVE: []
|
@@ -1880,7 +1952,7 @@ module Aws::S3
|
|
1880
1952
|
|
1881
1953
|
class PutBucketLifecycleConfigurationRequest
|
1882
1954
|
attr_accessor bucket: ::String
|
1883
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1955
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1884
1956
|
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
1885
1957
|
attr_accessor expected_bucket_owner: ::String
|
1886
1958
|
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
@@ -1890,7 +1962,7 @@ module Aws::S3
|
|
1890
1962
|
class PutBucketLifecycleRequest
|
1891
1963
|
attr_accessor bucket: ::String
|
1892
1964
|
attr_accessor content_md5: ::String
|
1893
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1965
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1894
1966
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
1895
1967
|
attr_accessor expected_bucket_owner: ::String
|
1896
1968
|
SENSITIVE: []
|
@@ -1900,7 +1972,7 @@ module Aws::S3
|
|
1900
1972
|
attr_accessor bucket: ::String
|
1901
1973
|
attr_accessor bucket_logging_status: Types::BucketLoggingStatus
|
1902
1974
|
attr_accessor content_md5: ::String
|
1903
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1975
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1904
1976
|
attr_accessor expected_bucket_owner: ::String
|
1905
1977
|
SENSITIVE: []
|
1906
1978
|
end
|
@@ -1924,7 +1996,7 @@ module Aws::S3
|
|
1924
1996
|
class PutBucketNotificationRequest
|
1925
1997
|
attr_accessor bucket: ::String
|
1926
1998
|
attr_accessor content_md5: ::String
|
1927
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1999
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1928
2000
|
attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
|
1929
2001
|
attr_accessor expected_bucket_owner: ::String
|
1930
2002
|
SENSITIVE: []
|
@@ -1941,7 +2013,7 @@ module Aws::S3
|
|
1941
2013
|
class PutBucketPolicyRequest
|
1942
2014
|
attr_accessor bucket: ::String
|
1943
2015
|
attr_accessor content_md5: ::String
|
1944
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2016
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1945
2017
|
attr_accessor confirm_remove_self_bucket_access: bool
|
1946
2018
|
attr_accessor policy: ::IO
|
1947
2019
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1951,7 +2023,7 @@ module Aws::S3
|
|
1951
2023
|
class PutBucketReplicationRequest
|
1952
2024
|
attr_accessor bucket: ::String
|
1953
2025
|
attr_accessor content_md5: ::String
|
1954
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2026
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1955
2027
|
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
1956
2028
|
attr_accessor token: ::String
|
1957
2029
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1961,7 +2033,7 @@ module Aws::S3
|
|
1961
2033
|
class PutBucketRequestPaymentRequest
|
1962
2034
|
attr_accessor bucket: ::String
|
1963
2035
|
attr_accessor content_md5: ::String
|
1964
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2036
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1965
2037
|
attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
|
1966
2038
|
attr_accessor expected_bucket_owner: ::String
|
1967
2039
|
SENSITIVE: []
|
@@ -1970,7 +2042,7 @@ module Aws::S3
|
|
1970
2042
|
class PutBucketTaggingRequest
|
1971
2043
|
attr_accessor bucket: ::String
|
1972
2044
|
attr_accessor content_md5: ::String
|
1973
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2045
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1974
2046
|
attr_accessor tagging: Types::Tagging
|
1975
2047
|
attr_accessor expected_bucket_owner: ::String
|
1976
2048
|
SENSITIVE: []
|
@@ -1979,7 +2051,7 @@ module Aws::S3
|
|
1979
2051
|
class PutBucketVersioningRequest
|
1980
2052
|
attr_accessor bucket: ::String
|
1981
2053
|
attr_accessor content_md5: ::String
|
1982
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2054
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1983
2055
|
attr_accessor mfa: ::String
|
1984
2056
|
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
1985
2057
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1989,7 +2061,7 @@ module Aws::S3
|
|
1989
2061
|
class PutBucketWebsiteRequest
|
1990
2062
|
attr_accessor bucket: ::String
|
1991
2063
|
attr_accessor content_md5: ::String
|
1992
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2064
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1993
2065
|
attr_accessor website_configuration: Types::WebsiteConfiguration
|
1994
2066
|
attr_accessor expected_bucket_owner: ::String
|
1995
2067
|
SENSITIVE: []
|
@@ -2005,7 +2077,7 @@ module Aws::S3
|
|
2005
2077
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
2006
2078
|
attr_accessor bucket: ::String
|
2007
2079
|
attr_accessor content_md5: ::String
|
2008
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2080
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2009
2081
|
attr_accessor grant_full_control: ::String
|
2010
2082
|
attr_accessor grant_read: ::String
|
2011
2083
|
attr_accessor grant_read_acp: ::String
|
@@ -2030,7 +2102,7 @@ module Aws::S3
|
|
2030
2102
|
attr_accessor request_payer: ("requester")
|
2031
2103
|
attr_accessor version_id: ::String
|
2032
2104
|
attr_accessor content_md5: ::String
|
2033
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2105
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2034
2106
|
attr_accessor expected_bucket_owner: ::String
|
2035
2107
|
SENSITIVE: []
|
2036
2108
|
end
|
@@ -2046,7 +2118,7 @@ module Aws::S3
|
|
2046
2118
|
attr_accessor request_payer: ("requester")
|
2047
2119
|
attr_accessor token: ::String
|
2048
2120
|
attr_accessor content_md5: ::String
|
2049
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2121
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2050
2122
|
attr_accessor expected_bucket_owner: ::String
|
2051
2123
|
SENSITIVE: []
|
2052
2124
|
end
|
@@ -2056,8 +2128,10 @@ module Aws::S3
|
|
2056
2128
|
attr_accessor etag: ::String
|
2057
2129
|
attr_accessor checksum_crc32: ::String
|
2058
2130
|
attr_accessor checksum_crc32c: ::String
|
2131
|
+
attr_accessor checksum_crc64nvme: ::String
|
2059
2132
|
attr_accessor checksum_sha1: ::String
|
2060
2133
|
attr_accessor checksum_sha256: ::String
|
2134
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
2061
2135
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2062
2136
|
attr_accessor version_id: ::String
|
2063
2137
|
attr_accessor sse_customer_algorithm: ::String
|
@@ -2081,9 +2155,10 @@ module Aws::S3
|
|
2081
2155
|
attr_accessor content_length: ::Integer
|
2082
2156
|
attr_accessor content_md5: ::String
|
2083
2157
|
attr_accessor content_type: ::String
|
2084
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2158
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2085
2159
|
attr_accessor checksum_crc32: ::String
|
2086
2160
|
attr_accessor checksum_crc32c: ::String
|
2161
|
+
attr_accessor checksum_crc64nvme: ::String
|
2087
2162
|
attr_accessor checksum_sha1: ::String
|
2088
2163
|
attr_accessor checksum_sha256: ::String
|
2089
2164
|
attr_accessor expires: ::Time
|
@@ -2127,7 +2202,7 @@ module Aws::S3
|
|
2127
2202
|
attr_accessor version_id: ::String
|
2128
2203
|
attr_accessor bypass_governance_retention: bool
|
2129
2204
|
attr_accessor content_md5: ::String
|
2130
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2205
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2131
2206
|
attr_accessor expected_bucket_owner: ::String
|
2132
2207
|
SENSITIVE: []
|
2133
2208
|
end
|
@@ -2142,7 +2217,7 @@ module Aws::S3
|
|
2142
2217
|
attr_accessor key: ::String
|
2143
2218
|
attr_accessor version_id: ::String
|
2144
2219
|
attr_accessor content_md5: ::String
|
2145
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2220
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2146
2221
|
attr_accessor tagging: Types::Tagging
|
2147
2222
|
attr_accessor expected_bucket_owner: ::String
|
2148
2223
|
attr_accessor request_payer: ("requester")
|
@@ -2152,7 +2227,7 @@ module Aws::S3
|
|
2152
2227
|
class PutPublicAccessBlockRequest
|
2153
2228
|
attr_accessor bucket: ::String
|
2154
2229
|
attr_accessor content_md5: ::String
|
2155
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2230
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2156
2231
|
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
2157
2232
|
attr_accessor expected_bucket_owner: ::String
|
2158
2233
|
SENSITIVE: []
|
@@ -2265,7 +2340,7 @@ module Aws::S3
|
|
2265
2340
|
attr_accessor version_id: ::String
|
2266
2341
|
attr_accessor restore_request: Types::RestoreRequest
|
2267
2342
|
attr_accessor request_payer: ("requester")
|
2268
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2343
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2269
2344
|
attr_accessor expected_bucket_owner: ::String
|
2270
2345
|
SENSITIVE: []
|
2271
2346
|
end
|
@@ -2322,6 +2397,20 @@ module Aws::S3
|
|
2322
2397
|
SENSITIVE: []
|
2323
2398
|
end
|
2324
2399
|
|
2400
|
+
class S3TablesDestination
|
2401
|
+
attr_accessor table_bucket_arn: ::String
|
2402
|
+
attr_accessor table_name: ::String
|
2403
|
+
SENSITIVE: []
|
2404
|
+
end
|
2405
|
+
|
2406
|
+
class S3TablesDestinationResult
|
2407
|
+
attr_accessor table_bucket_arn: ::String
|
2408
|
+
attr_accessor table_name: ::String
|
2409
|
+
attr_accessor table_arn: ::String
|
2410
|
+
attr_accessor table_namespace: ::String
|
2411
|
+
SENSITIVE: []
|
2412
|
+
end
|
2413
|
+
|
2325
2414
|
class SSEKMS
|
2326
2415
|
attr_accessor key_id: ::String
|
2327
2416
|
SENSITIVE: [:key_id]
|
@@ -2523,6 +2612,7 @@ module Aws::S3
|
|
2523
2612
|
attr_accessor etag: ::String
|
2524
2613
|
attr_accessor checksum_crc32: ::String
|
2525
2614
|
attr_accessor checksum_crc32c: ::String
|
2615
|
+
attr_accessor checksum_crc64nvme: ::String
|
2526
2616
|
attr_accessor checksum_sha1: ::String
|
2527
2617
|
attr_accessor checksum_sha256: ::String
|
2528
2618
|
attr_accessor sse_customer_algorithm: ::String
|
@@ -2538,9 +2628,10 @@ module Aws::S3
|
|
2538
2628
|
attr_accessor bucket: ::String
|
2539
2629
|
attr_accessor content_length: ::Integer
|
2540
2630
|
attr_accessor content_md5: ::String
|
2541
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2631
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2542
2632
|
attr_accessor checksum_crc32: ::String
|
2543
2633
|
attr_accessor checksum_crc32c: ::String
|
2634
|
+
attr_accessor checksum_crc64nvme: ::String
|
2544
2635
|
attr_accessor checksum_sha1: ::String
|
2545
2636
|
attr_accessor checksum_sha256: ::String
|
2546
2637
|
attr_accessor key: ::String
|
@@ -2585,6 +2676,7 @@ module Aws::S3
|
|
2585
2676
|
attr_accessor content_type: ::String
|
2586
2677
|
attr_accessor checksum_crc32: ::String
|
2587
2678
|
attr_accessor checksum_crc32c: ::String
|
2679
|
+
attr_accessor checksum_crc64nvme: ::String
|
2588
2680
|
attr_accessor checksum_sha1: ::String
|
2589
2681
|
attr_accessor checksum_sha256: ::String
|
2590
2682
|
attr_accessor delete_marker: bool
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.179.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: '3'
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 3.
|
50
|
+
version: 3.216.0
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
version: '3'
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 3.
|
60
|
+
version: 3.216.0
|
61
61
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
62
62
|
This gem is part of the AWS SDK for Ruby.
|
63
63
|
email:
|
@@ -151,6 +151,7 @@ files:
|
|
151
151
|
- lib/aws-sdk-s3/plugins/arn.rb
|
152
152
|
- lib/aws-sdk-s3/plugins/bucket_dns.rb
|
153
153
|
- lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb
|
154
|
+
- lib/aws-sdk-s3/plugins/checksum_algorithm.rb
|
154
155
|
- lib/aws-sdk-s3/plugins/dualstack.rb
|
155
156
|
- lib/aws-sdk-s3/plugins/endpoints.rb
|
156
157
|
- lib/aws-sdk-s3/plugins/expect_100_continue.rb
|
@@ -163,7 +164,6 @@ files:
|
|
163
164
|
- lib/aws-sdk-s3/plugins/redirects.rb
|
164
165
|
- lib/aws-sdk-s3/plugins/s3_host_id.rb
|
165
166
|
- lib/aws-sdk-s3/plugins/s3_signer.rb
|
166
|
-
- lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb
|
167
167
|
- lib/aws-sdk-s3/plugins/sse_cpk.rb
|
168
168
|
- lib/aws-sdk-s3/plugins/streaming_retry.rb
|
169
169
|
- lib/aws-sdk-s3/plugins/url_encoded_keys.rb
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Aws
|
4
|
-
module S3
|
5
|
-
module Plugins
|
6
|
-
|
7
|
-
# S3 GetObject results for whole Multipart Objects contain a checksum
|
8
|
-
# that cannot be validated. These should be skipped by the
|
9
|
-
# ChecksumAlgorithm plugin.
|
10
|
-
class SkipWholeMultipartGetChecksums < Seahorse::Client::Plugin
|
11
|
-
|
12
|
-
class Handler < Seahorse::Client::Handler
|
13
|
-
|
14
|
-
def call(context)
|
15
|
-
context[:http_checksum] ||= {}
|
16
|
-
context[:http_checksum][:skip_on_suffix] = true
|
17
|
-
|
18
|
-
@handler.call(context)
|
19
|
-
end
|
20
|
-
|
21
|
-
end
|
22
|
-
|
23
|
-
handler(
|
24
|
-
Handler,
|
25
|
-
step: :initialize,
|
26
|
-
operations: [:get_object]
|
27
|
-
)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|