aws-sdk-s3 1.176.1 → 1.182.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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +32 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +40 -29
  5. data/lib/aws-sdk-s3/bucket_acl.rb +6 -5
  6. data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
  7. data/lib/aws-sdk-s3/bucket_lifecycle.rb +2 -2
  8. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +3 -3
  9. data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
  10. data/lib/aws-sdk-s3/bucket_policy.rb +6 -5
  11. data/lib/aws-sdk-s3/bucket_request_payment.rb +3 -3
  12. data/lib/aws-sdk-s3/bucket_tagging.rb +3 -3
  13. data/lib/aws-sdk-s3/bucket_versioning.rb +9 -9
  14. data/lib/aws-sdk-s3/bucket_website.rb +3 -3
  15. data/lib/aws-sdk-s3/client.rb +764 -602
  16. data/lib/aws-sdk-s3/client_api.rb +35 -2
  17. data/lib/aws-sdk-s3/endpoint_provider.rb +260 -277
  18. data/lib/aws-sdk-s3/file_downloader.rb +4 -21
  19. data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
  20. data/lib/aws-sdk-s3/multipart_upload.rb +46 -4
  21. data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
  22. data/lib/aws-sdk-s3/object.rb +139 -100
  23. data/lib/aws-sdk-s3/object_acl.rb +4 -4
  24. data/lib/aws-sdk-s3/object_summary.rb +87 -70
  25. data/lib/aws-sdk-s3/object_version.rb +18 -14
  26. data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
  27. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
  28. data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
  29. data/lib/aws-sdk-s3/presigner.rb +4 -5
  30. data/lib/aws-sdk-s3/resource.rb +1 -1
  31. data/lib/aws-sdk-s3/types.rb +962 -610
  32. data/lib/aws-sdk-s3.rb +1 -1
  33. data/sig/bucket.rbs +4 -3
  34. data/sig/bucket_acl.rbs +1 -1
  35. data/sig/bucket_cors.rbs +1 -1
  36. data/sig/bucket_lifecycle.rbs +1 -1
  37. data/sig/bucket_lifecycle_configuration.rbs +1 -1
  38. data/sig/bucket_logging.rbs +1 -1
  39. data/sig/bucket_policy.rbs +1 -1
  40. data/sig/bucket_request_payment.rbs +1 -1
  41. data/sig/bucket_tagging.rbs +1 -1
  42. data/sig/bucket_versioning.rbs +3 -3
  43. data/sig/bucket_website.rbs +1 -1
  44. data/sig/client.rbs +53 -31
  45. data/sig/multipart_upload.rbs +8 -1
  46. data/sig/multipart_upload_part.rbs +5 -1
  47. data/sig/object.rbs +16 -5
  48. data/sig/object_acl.rbs +1 -1
  49. data/sig/object_summary.rbs +11 -6
  50. data/sig/object_version.rbs +5 -2
  51. data/sig/resource.rbs +3 -1
  52. data/sig/types.rbs +64 -34
  53. metadata +5 -5
  54. data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/lib/aws-sdk-s3.rb CHANGED
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.176.1'
78
+ GEM_VERSION = '1.182.0'
79
79
 
80
80
  end
81
81
 
data/sig/bucket.rbs CHANGED
@@ -48,7 +48,7 @@ module Aws
48
48
  def create: (
49
49
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
50
50
  ?create_bucket_configuration: {
51
- location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
51
+ location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
52
52
  location: {
53
53
  type: ("AvailabilityZone" | "LocalZone")?,
54
54
  name: ::String?
@@ -92,7 +92,7 @@ module Aws
92
92
  ?request_payer: ("requester"),
93
93
  ?bypass_governance_retention: bool,
94
94
  ?expected_bucket_owner: ::String,
95
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
95
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
96
96
  ) -> Types::DeleteObjectsOutput
97
97
  | (?Hash[Symbol, untyped]) -> Types::DeleteObjectsOutput
98
98
 
@@ -107,9 +107,10 @@ module Aws
107
107
  ?content_length: ::Integer,
108
108
  ?content_md5: ::String,
109
109
  ?content_type: ::String,
110
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
110
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
111
111
  ?checksum_crc32: ::String,
112
112
  ?checksum_crc32c: ::String,
113
+ ?checksum_crc64nvme: ::String,
113
114
  ?checksum_sha1: ::String,
114
115
  ?checksum_sha256: ::String,
115
116
  ?expires: ::Time,
data/sig/bucket_acl.rbs CHANGED
@@ -58,7 +58,7 @@ module Aws
58
58
  }?
59
59
  },
60
60
  ?content_md5: ::String,
61
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
61
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
62
62
  ?grant_full_control: ::String,
63
63
  ?grant_read: ::String,
64
64
  ?grant_read_acp: ::String,
data/sig/bucket_cors.rbs CHANGED
@@ -54,7 +54,7 @@ module Aws
54
54
  ]
55
55
  },
56
56
  ?content_md5: ::String,
57
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
57
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
58
58
  ?expected_bucket_owner: ::String
59
59
  ) -> ::Aws::EmptyStructure
60
60
  | (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
@@ -42,7 +42,7 @@ module Aws
42
42
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#put-instance_method
43
43
  def put: (
44
44
  ?content_md5: ::String,
45
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
45
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
46
46
  ?lifecycle_configuration: {
47
47
  rules: Array[
48
48
  {
@@ -44,7 +44,7 @@ module Aws
44
44
 
45
45
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#put-instance_method
46
46
  def put: (
47
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
47
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
48
48
  ?lifecycle_configuration: {
49
49
  rules: Array[
50
50
  {
@@ -61,7 +61,7 @@ module Aws
61
61
  }?
62
62
  },
63
63
  ?content_md5: ::String,
64
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
64
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
65
65
  ?expected_bucket_owner: ::String
66
66
  ) -> ::Aws::EmptyStructure
67
67
  | (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
@@ -42,7 +42,7 @@ module Aws
42
42
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketPolicy.html#put-instance_method
43
43
  def put: (
44
44
  ?content_md5: ::String,
45
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
45
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
46
46
  ?confirm_remove_self_bucket_access: bool,
47
47
  policy: ::String,
48
48
  ?expected_bucket_owner: ::String
@@ -36,7 +36,7 @@ module Aws
36
36
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketRequestPayment.html#put-instance_method
37
37
  def put: (
38
38
  ?content_md5: ::String,
39
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
39
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
40
40
  request_payment_configuration: {
41
41
  payer: ("Requester" | "BucketOwner")
42
42
  },
@@ -42,7 +42,7 @@ module Aws
42
42
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketTagging.html#put-instance_method
43
43
  def put: (
44
44
  ?content_md5: ::String,
45
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
45
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
46
46
  tagging: {
47
47
  tag_set: Array[
48
48
  {
@@ -39,7 +39,7 @@ module Aws
39
39
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#enable-instance_method
40
40
  def enable: (
41
41
  ?content_md5: ::String,
42
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
42
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
43
43
  ?mfa: ::String,
44
44
  ?expected_bucket_owner: ::String
45
45
  ) -> ::Aws::EmptyStructure
@@ -48,7 +48,7 @@ module Aws
48
48
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#put-instance_method
49
49
  def put: (
50
50
  ?content_md5: ::String,
51
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
51
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
52
52
  ?mfa: ::String,
53
53
  versioning_configuration: {
54
54
  mfa_delete: ("Enabled" | "Disabled")?,
@@ -61,7 +61,7 @@ module Aws
61
61
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#suspend-instance_method
62
62
  def suspend: (
63
63
  ?content_md5: ::String,
64
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
64
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
65
65
  ?mfa: ::String,
66
66
  ?expected_bucket_owner: ::String
67
67
  ) -> ::Aws::EmptyStructure
@@ -51,7 +51,7 @@ module Aws
51
51
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketWebsite.html#put-instance_method
52
52
  def put: (
53
53
  ?content_md5: ::String,
54
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
54
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
55
55
  website_configuration: {
56
56
  error_document: {
57
57
  key: ::String
data/sig/client.rbs CHANGED
@@ -49,8 +49,10 @@ module Aws
49
49
  ?max_attempts: Integer,
50
50
  ?output_event_stream_handler: Proc,
51
51
  ?profile: String,
52
+ ?request_checksum_calculation: String,
52
53
  ?request_min_compression_size_bytes: Integer,
53
54
  ?require_https_for_sse_cpk: bool,
55
+ ?response_checksum_validation: String,
54
56
  ?retry_backoff: Proc,
55
57
  ?retry_base_delay: Float,
56
58
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -114,8 +116,10 @@ module Aws
114
116
  def etag: () -> ::String
115
117
  def checksum_crc32: () -> ::String
116
118
  def checksum_crc32c: () -> ::String
119
+ def checksum_crc64nvme: () -> ::String
117
120
  def checksum_sha1: () -> ::String
118
121
  def checksum_sha256: () -> ::String
122
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
119
123
  def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
120
124
  def version_id: () -> ::String
121
125
  def ssekms_key_id: () -> ::String
@@ -132,6 +136,7 @@ module Aws
132
136
  etag: ::String?,
133
137
  checksum_crc32: ::String?,
134
138
  checksum_crc32c: ::String?,
139
+ checksum_crc64nvme: ::String?,
135
140
  checksum_sha1: ::String?,
136
141
  checksum_sha256: ::String?,
137
142
  part_number: ::Integer?
@@ -141,8 +146,11 @@ module Aws
141
146
  upload_id: ::String,
142
147
  ?checksum_crc32: ::String,
143
148
  ?checksum_crc32c: ::String,
149
+ ?checksum_crc64nvme: ::String,
144
150
  ?checksum_sha1: ::String,
145
151
  ?checksum_sha256: ::String,
152
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
153
+ ?mpu_object_size: ::Integer,
146
154
  ?request_payer: ("requester"),
147
155
  ?expected_bucket_owner: ::String,
148
156
  ?if_match: ::String,
@@ -172,7 +180,7 @@ module Aws
172
180
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
173
181
  bucket: ::String,
174
182
  ?cache_control: ::String,
175
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
183
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
176
184
  ?content_disposition: ::String,
177
185
  ?content_encoding: ::String,
178
186
  ?content_language: ::String,
@@ -222,7 +230,7 @@ module Aws
222
230
  ?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
223
231
  bucket: ::String,
224
232
  ?create_bucket_configuration: {
225
- location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
233
+ location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
226
234
  location: {
227
235
  type: ("AvailabilityZone" | "LocalZone")?,
228
236
  name: ::String?
@@ -246,7 +254,7 @@ module Aws
246
254
  def create_bucket_metadata_table_configuration: (
247
255
  bucket: ::String,
248
256
  ?content_md5: ::String,
249
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
257
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
250
258
  metadata_table_configuration: {
251
259
  s3_tables_destination: {
252
260
  table_bucket_arn: ::String,
@@ -271,7 +279,8 @@ module Aws
271
279
  def ssekms_encryption_context: () -> ::String
272
280
  def bucket_key_enabled: () -> bool
273
281
  def request_charged: () -> ("requester")
274
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
282
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
283
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
275
284
  end
276
285
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_multipart_upload-instance_method
277
286
  def create_multipart_upload: (
@@ -304,7 +313,8 @@ module Aws
304
313
  ?object_lock_retain_until_date: ::Time,
305
314
  ?object_lock_legal_hold_status: ("ON" | "OFF"),
306
315
  ?expected_bucket_owner: ::String,
307
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
316
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
317
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT")
308
318
  ) -> _CreateMultipartUploadResponseSuccess
309
319
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartUploadResponseSuccess
310
320
 
@@ -487,7 +497,7 @@ module Aws
487
497
  ?request_payer: ("requester"),
488
498
  ?bypass_governance_retention: bool,
489
499
  ?expected_bucket_owner: ::String,
490
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
500
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
491
501
  ) -> _DeleteObjectsResponseSuccess
492
502
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectsResponseSuccess
493
503
 
@@ -605,7 +615,7 @@ module Aws
605
615
 
606
616
  interface _GetBucketLocationResponseSuccess
607
617
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLocationOutput]
608
- def location_constraint: () -> ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
618
+ def location_constraint: () -> ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
609
619
  end
610
620
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_location-instance_method
611
621
  def get_bucket_location: (
@@ -779,8 +789,10 @@ module Aws
779
789
  def etag: () -> ::String
780
790
  def checksum_crc32: () -> ::String
781
791
  def checksum_crc32c: () -> ::String
792
+ def checksum_crc64nvme: () -> ::String
782
793
  def checksum_sha1: () -> ::String
783
794
  def checksum_sha256: () -> ::String
795
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
784
796
  def missing_meta: () -> ::Integer
785
797
  def version_id: () -> ::String
786
798
  def cache_control: () -> ::String
@@ -981,8 +993,10 @@ module Aws
981
993
  def content_length: () -> ::Integer
982
994
  def checksum_crc32: () -> ::String
983
995
  def checksum_crc32c: () -> ::String
996
+ def checksum_crc64nvme: () -> ::String
984
997
  def checksum_sha1: () -> ::String
985
998
  def checksum_sha256: () -> ::String
999
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
986
1000
  def etag: () -> ::String
987
1001
  def missing_meta: () -> ::Integer
988
1002
  def version_id: () -> ::String
@@ -991,6 +1005,7 @@ module Aws
991
1005
  def content_encoding: () -> ::String
992
1006
  def content_language: () -> ::String
993
1007
  def content_type: () -> ::String
1008
+ def content_range: () -> ::String
994
1009
  def expires: () -> ::Time
995
1010
  def expires_string: () -> ::String
996
1011
  def website_redirect_location: () -> ::String
@@ -1259,7 +1274,8 @@ module Aws
1259
1274
  def owner: () -> Types::Owner
1260
1275
  def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1261
1276
  def request_charged: () -> ("requester")
1262
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1277
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1278
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
1263
1279
  end
1264
1280
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_parts-instance_method
1265
1281
  def list_parts: (
@@ -1283,7 +1299,7 @@ module Aws
1283
1299
  status: ("Enabled" | "Suspended")?
1284
1300
  },
1285
1301
  ?expected_bucket_owner: ::String,
1286
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1302
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1287
1303
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1288
1304
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1289
1305
 
@@ -1310,7 +1326,7 @@ module Aws
1310
1326
  },
1311
1327
  bucket: ::String,
1312
1328
  ?content_md5: ::String,
1313
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1329
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1314
1330
  ?grant_full_control: ::String,
1315
1331
  ?grant_read: ::String,
1316
1332
  ?grant_read_acp: ::String,
@@ -1376,7 +1392,7 @@ module Aws
1376
1392
  ]
1377
1393
  },
1378
1394
  ?content_md5: ::String,
1379
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1395
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1380
1396
  ?expected_bucket_owner: ::String
1381
1397
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1382
1398
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1385,7 +1401,7 @@ module Aws
1385
1401
  def put_bucket_encryption: (
1386
1402
  bucket: ::String,
1387
1403
  ?content_md5: ::String,
1388
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1404
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1389
1405
  server_side_encryption_configuration: {
1390
1406
  rules: Array[
1391
1407
  {
@@ -1473,7 +1489,7 @@ module Aws
1473
1489
  def put_bucket_lifecycle: (
1474
1490
  bucket: ::String,
1475
1491
  ?content_md5: ::String,
1476
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1492
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1477
1493
  ?lifecycle_configuration: {
1478
1494
  rules: Array[
1479
1495
  {
@@ -1516,7 +1532,7 @@ module Aws
1516
1532
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
1517
1533
  def put_bucket_lifecycle_configuration: (
1518
1534
  bucket: ::String,
1519
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1535
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1520
1536
  ?lifecycle_configuration: {
1521
1537
  rules: Array[
1522
1538
  {
@@ -1606,7 +1622,7 @@ module Aws
1606
1622
  }?
1607
1623
  },
1608
1624
  ?content_md5: ::String,
1609
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1625
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1610
1626
  ?expected_bucket_owner: ::String
1611
1627
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1612
1628
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -1644,7 +1660,7 @@ module Aws
1644
1660
  def put_bucket_notification: (
1645
1661
  bucket: ::String,
1646
1662
  ?content_md5: ::String,
1647
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1663
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1648
1664
  notification_configuration: {
1649
1665
  topic_configuration: {
1650
1666
  id: ::String?,
@@ -1752,7 +1768,7 @@ module Aws
1752
1768
  def put_bucket_policy: (
1753
1769
  bucket: ::String,
1754
1770
  ?content_md5: ::String,
1755
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1771
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1756
1772
  ?confirm_remove_self_bucket_access: bool,
1757
1773
  policy: ::String,
1758
1774
  ?expected_bucket_owner: ::String
@@ -1763,7 +1779,7 @@ module Aws
1763
1779
  def put_bucket_replication: (
1764
1780
  bucket: ::String,
1765
1781
  ?content_md5: ::String,
1766
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1782
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1767
1783
  replication_configuration: {
1768
1784
  role: ::String,
1769
1785
  rules: Array[
@@ -1837,7 +1853,7 @@ module Aws
1837
1853
  def put_bucket_request_payment: (
1838
1854
  bucket: ::String,
1839
1855
  ?content_md5: ::String,
1840
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1856
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1841
1857
  request_payment_configuration: {
1842
1858
  payer: ("Requester" | "BucketOwner")
1843
1859
  },
@@ -1849,7 +1865,7 @@ module Aws
1849
1865
  def put_bucket_tagging: (
1850
1866
  bucket: ::String,
1851
1867
  ?content_md5: ::String,
1852
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1868
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1853
1869
  tagging: {
1854
1870
  tag_set: Array[
1855
1871
  {
@@ -1866,7 +1882,7 @@ module Aws
1866
1882
  def put_bucket_versioning: (
1867
1883
  bucket: ::String,
1868
1884
  ?content_md5: ::String,
1869
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1885
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1870
1886
  ?mfa: ::String,
1871
1887
  versioning_configuration: {
1872
1888
  mfa_delete: ("Enabled" | "Disabled")?,
@@ -1880,7 +1896,7 @@ module Aws
1880
1896
  def put_bucket_website: (
1881
1897
  bucket: ::String,
1882
1898
  ?content_md5: ::String,
1883
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1899
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1884
1900
  website_configuration: {
1885
1901
  error_document: {
1886
1902
  key: ::String
@@ -1918,8 +1934,10 @@ module Aws
1918
1934
  def etag: () -> ::String
1919
1935
  def checksum_crc32: () -> ::String
1920
1936
  def checksum_crc32c: () -> ::String
1937
+ def checksum_crc64nvme: () -> ::String
1921
1938
  def checksum_sha1: () -> ::String
1922
1939
  def checksum_sha256: () -> ::String
1940
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
1923
1941
  def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
1924
1942
  def version_id: () -> ::String
1925
1943
  def sse_customer_algorithm: () -> ::String
@@ -1942,9 +1960,10 @@ module Aws
1942
1960
  ?content_length: ::Integer,
1943
1961
  ?content_md5: ::String,
1944
1962
  ?content_type: ::String,
1945
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
1963
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
1946
1964
  ?checksum_crc32: ::String,
1947
1965
  ?checksum_crc32c: ::String,
1966
+ ?checksum_crc64nvme: ::String,
1948
1967
  ?checksum_sha1: ::String,
1949
1968
  ?checksum_sha256: ::String,
1950
1969
  ?expires: ::Time,
@@ -2002,7 +2021,7 @@ module Aws
2002
2021
  },
2003
2022
  bucket: ::String,
2004
2023
  ?content_md5: ::String,
2005
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2024
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2006
2025
  ?grant_full_control: ::String,
2007
2026
  ?grant_read: ::String,
2008
2027
  ?grant_read_acp: ::String,
@@ -2029,7 +2048,7 @@ module Aws
2029
2048
  ?request_payer: ("requester"),
2030
2049
  ?version_id: ::String,
2031
2050
  ?content_md5: ::String,
2032
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2051
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2033
2052
  ?expected_bucket_owner: ::String
2034
2053
  ) -> _PutObjectLegalHoldResponseSuccess
2035
2054
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLegalHoldResponseSuccess
@@ -2054,7 +2073,7 @@ module Aws
2054
2073
  ?request_payer: ("requester"),
2055
2074
  ?token: ::String,
2056
2075
  ?content_md5: ::String,
2057
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2076
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2058
2077
  ?expected_bucket_owner: ::String
2059
2078
  ) -> _PutObjectLockConfigurationResponseSuccess
2060
2079
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectLockConfigurationResponseSuccess
@@ -2075,7 +2094,7 @@ module Aws
2075
2094
  ?version_id: ::String,
2076
2095
  ?bypass_governance_retention: bool,
2077
2096
  ?content_md5: ::String,
2078
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2097
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2079
2098
  ?expected_bucket_owner: ::String
2080
2099
  ) -> _PutObjectRetentionResponseSuccess
2081
2100
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutObjectRetentionResponseSuccess
@@ -2090,7 +2109,7 @@ module Aws
2090
2109
  key: ::String,
2091
2110
  ?version_id: ::String,
2092
2111
  ?content_md5: ::String,
2093
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2112
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2094
2113
  tagging: {
2095
2114
  tag_set: Array[
2096
2115
  {
@@ -2108,7 +2127,7 @@ module Aws
2108
2127
  def put_public_access_block: (
2109
2128
  bucket: ::String,
2110
2129
  ?content_md5: ::String,
2111
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2130
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2112
2131
  public_access_block_configuration: {
2113
2132
  block_public_acls: bool?,
2114
2133
  ignore_public_acls: bool?,
@@ -2211,7 +2230,7 @@ module Aws
2211
2230
  }?
2212
2231
  },
2213
2232
  ?request_payer: ("requester"),
2214
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2233
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2215
2234
  ?expected_bucket_owner: ::String
2216
2235
  ) -> _RestoreObjectResponseSuccess
2217
2236
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreObjectResponseSuccess
@@ -2275,6 +2294,7 @@ module Aws
2275
2294
  def etag: () -> ::String
2276
2295
  def checksum_crc32: () -> ::String
2277
2296
  def checksum_crc32c: () -> ::String
2297
+ def checksum_crc64nvme: () -> ::String
2278
2298
  def checksum_sha1: () -> ::String
2279
2299
  def checksum_sha256: () -> ::String
2280
2300
  def sse_customer_algorithm: () -> ::String
@@ -2289,9 +2309,10 @@ module Aws
2289
2309
  bucket: ::String,
2290
2310
  ?content_length: ::Integer,
2291
2311
  ?content_md5: ::String,
2292
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
2312
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2293
2313
  ?checksum_crc32: ::String,
2294
2314
  ?checksum_crc32c: ::String,
2315
+ ?checksum_crc64nvme: ::String,
2295
2316
  ?checksum_sha1: ::String,
2296
2317
  ?checksum_sha256: ::String,
2297
2318
  key: ::String,
@@ -2358,6 +2379,7 @@ module Aws
2358
2379
  ?content_type: ::String,
2359
2380
  ?checksum_crc32: ::String,
2360
2381
  ?checksum_crc32c: ::String,
2382
+ ?checksum_crc64nvme: ::String,
2361
2383
  ?checksum_sha1: ::String,
2362
2384
  ?checksum_sha256: ::String,
2363
2385
  ?delete_marker: bool,
@@ -42,7 +42,10 @@ module Aws
42
42
  def initiator: () -> Types::Initiator
43
43
 
44
44
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#checksum_algorithm-instance_method
45
- def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
45
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
46
+
47
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#checksum_type-instance_method
48
+ def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
46
49
 
47
50
  def client: () -> Client
48
51
 
@@ -70,6 +73,7 @@ module Aws
70
73
  etag: ::String?,
71
74
  checksum_crc32: ::String?,
72
75
  checksum_crc32c: ::String?,
76
+ checksum_crc64nvme: ::String?,
73
77
  checksum_sha1: ::String?,
74
78
  checksum_sha256: ::String?,
75
79
  part_number: ::Integer?
@@ -78,8 +82,11 @@ module Aws
78
82
  },
79
83
  ?checksum_crc32: ::String,
80
84
  ?checksum_crc32c: ::String,
85
+ ?checksum_crc64nvme: ::String,
81
86
  ?checksum_sha1: ::String,
82
87
  ?checksum_sha256: ::String,
88
+ ?checksum_type: ("COMPOSITE" | "FULL_OBJECT"),
89
+ ?mpu_object_size: ::Integer,
83
90
  ?request_payer: ("requester"),
84
91
  ?expected_bucket_owner: ::String,
85
92
  ?if_match: ::String,
@@ -41,6 +41,9 @@ module Aws
41
41
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_crc32c-instance_method
42
42
  def checksum_crc32c: () -> ::String
43
43
 
44
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_crc64nvme-instance_method
45
+ def checksum_crc64nvme: () -> ::String
46
+
44
47
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_sha1-instance_method
45
48
  def checksum_sha1: () -> ::String
46
49
 
@@ -82,9 +85,10 @@ module Aws
82
85
  ?body: ::String | ::StringIO | ::File,
83
86
  ?content_length: ::Integer,
84
87
  ?content_md5: ::String,
85
- ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
88
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
86
89
  ?checksum_crc32: ::String,
87
90
  ?checksum_crc32c: ::String,
91
+ ?checksum_crc64nvme: ::String,
88
92
  ?checksum_sha1: ::String,
89
93
  ?checksum_sha256: ::String,
90
94
  ?sse_customer_algorithm: ::String,