aws-sdk-s3 1.157.0 → 1.162.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39a77f1b089e257fe94bc26a0ca7309479a61cff7f46326243f2d1b002ce2bac
4
- data.tar.gz: e2dbcc9f6ea92e1097d84130a2cd1c3e1caae305bdeb8b450056872edd2b4f74
3
+ metadata.gz: a0ce7e262a85e038bd67e567d9f401002997d4627ea64c1441ba581dc1f163ae
4
+ data.tar.gz: 37b2a93cfc3fbfd9dbbbeb68278f24d05f2f7505b630c66716162c0436ad8e67
5
5
  SHA512:
6
- metadata.gz: e34240198a44e4e678e0be7ef836318ff899ec61edc29bc2866d432eb6af834a7f81b801ea85ec35e26deec1e59705c1829b22e66093e6591d84dbc966f76e0e
7
- data.tar.gz: 362065ca01c2d4a9e33cc9beb43afce43fbcb8c593db5785a32c623bbc99fe63471a41d767a1ae91343b94aba7df0e80360c0310c1f07aa052c76d63d07fda09
6
+ metadata.gz: ef83c564ee123d7ea47a7210771774f5bd875a08580f38938c9f0cc92cf44d10adfc1444a8868bccfe4d0dc8fbc26ea1abe344da539250693e3cd9083635770e
7
+ data.tar.gz: e8b5a3ac07acd57a137c9fa974091c885c6f816243f165d8ad6a8746ac56096726456b9776bdc91ab8f919ad0016590acfbe75c79a0f307e41cad9f3bdc1cc3c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.162.0 (2024-09-11)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.161.0 (2024-09-10)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.160.0 (2024-09-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.159.0 (2024-08-20)
20
+ ------------------
21
+
22
+ * Feature - Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs.
23
+
24
+ 1.158.0 (2024-08-15)
25
+ ------------------
26
+
27
+ * Feature - Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API.
28
+
4
29
  1.157.0 (2024-08-01)
5
30
  ------------------
6
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.157.0
1
+ 1.162.0
@@ -497,6 +497,7 @@ module Aws::S3
497
497
  # checksum_sha1: "ChecksumSHA1",
498
498
  # checksum_sha256: "ChecksumSHA256",
499
499
  # expires: Time.now,
500
+ # if_none_match: "IfNoneMatch",
500
501
  # grant_full_control: "GrantFullControl",
501
502
  # grant_read: "GrantRead",
502
503
  # grant_read_acp: "GrantReadACP",
@@ -712,6 +713,24 @@ module Aws::S3
712
713
  #
713
714
  #
714
715
  # [1]: https://www.rfc-editor.org/rfc/rfc7234#section-5.3
716
+ # @option options [String] :if_none_match
717
+ # Uploads the object only if the object key name does not already exist
718
+ # in the bucket specified. Otherwise, Amazon S3 returns a `412
719
+ # Precondition Failed` error.
720
+ #
721
+ # If a conflicting operation occurs during the upload S3 returns a `409
722
+ # ConditionalRequestConflict` response. On a 409 failure you should
723
+ # retry the upload.
724
+ #
725
+ # Expects the '*' (asterisk) character.
726
+ #
727
+ # For more information about conditional requests, see [RFC 7232][1], or
728
+ # [Conditional requests][2] in the *Amazon S3 User Guide*.
729
+ #
730
+ #
731
+ #
732
+ # [1]: https://tools.ietf.org/html/rfc7232
733
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
715
734
  # @option options [String] :grant_full_control
716
735
  # Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
717
736
  # object.
@@ -1018,12 +1037,26 @@ module Aws::S3
1018
1037
  #
1019
1038
  # </note>
1020
1039
  # @option options [String] :encoding_type
1021
- # Requests Amazon S3 to encode the object keys in the response and
1022
- # specifies the encoding method to use. An object key can contain any
1023
- # Unicode character; however, the XML 1.0 parser cannot parse some
1024
- # characters, such as characters with an ASCII value from 0 to 10. For
1025
- # characters that are not supported in XML 1.0, you can add this
1026
- # parameter to request that Amazon S3 encode the keys in the response.
1040
+ # Encoding type used by Amazon S3 to encode the [object keys][1] in the
1041
+ # response. Responses are encoded only in UTF-8. An object key can
1042
+ # contain any Unicode character. However, the XML 1.0 parser can't
1043
+ # parse certain characters, such as characters with an ASCII value from
1044
+ # 0 to 10. For characters that aren't supported in XML 1.0, you can add
1045
+ # this parameter to request that Amazon S3 encode the keys in the
1046
+ # response. For more information about characters to avoid in object key
1047
+ # names, see [Object key naming guidelines][2].
1048
+ #
1049
+ # <note markdown="1"> When using the URL encoding type, non-ASCII characters that are used
1050
+ # in an object's key name will be percent-encoded according to UTF-8
1051
+ # code values. For example, the object `test_file(3).png` will appear as
1052
+ # `test_file%283%29.png`.
1053
+ #
1054
+ # </note>
1055
+ #
1056
+ #
1057
+ #
1058
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html
1059
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-guidelines
1027
1060
  # @option options [String] :key_marker
1028
1061
  # Specifies the multipart upload after which listing should begin.
1029
1062
  #
@@ -1156,12 +1189,26 @@ module Aws::S3
1156
1189
  # the `max-keys` limitation. These keys are not returned elsewhere in
1157
1190
  # the response.
1158
1191
  # @option options [String] :encoding_type
1159
- # Requests Amazon S3 to encode the object keys in the response and
1160
- # specifies the encoding method to use. An object key can contain any
1161
- # Unicode character; however, the XML 1.0 parser cannot parse some
1162
- # characters, such as characters with an ASCII value from 0 to 10. For
1163
- # characters that are not supported in XML 1.0, you can add this
1164
- # parameter to request that Amazon S3 encode the keys in the response.
1192
+ # Encoding type used by Amazon S3 to encode the [object keys][1] in the
1193
+ # response. Responses are encoded only in UTF-8. An object key can
1194
+ # contain any Unicode character. However, the XML 1.0 parser can't
1195
+ # parse certain characters, such as characters with an ASCII value from
1196
+ # 0 to 10. For characters that aren't supported in XML 1.0, you can add
1197
+ # this parameter to request that Amazon S3 encode the keys in the
1198
+ # response. For more information about characters to avoid in object key
1199
+ # names, see [Object key naming guidelines][2].
1200
+ #
1201
+ # <note markdown="1"> When using the URL encoding type, non-ASCII characters that are used
1202
+ # in an object's key name will be percent-encoded according to UTF-8
1203
+ # code values. For example, the object `test_file(3).png` will appear as
1204
+ # `test_file%283%29.png`.
1205
+ #
1206
+ # </note>
1207
+ #
1208
+ #
1209
+ #
1210
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html
1211
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-guidelines
1165
1212
  # @option options [String] :key_marker
1166
1213
  # Specifies the key to start with when listing objects in a bucket.
1167
1214
  # @option options [String] :prefix
@@ -1252,10 +1299,26 @@ module Aws::S3
1252
1299
  #
1253
1300
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html
1254
1301
  # @option options [String] :encoding_type
1255
- # Encoding type used by Amazon S3 to encode object keys in the response.
1256
- # If using `url`, non-ASCII characters used in an object's key name
1257
- # will be URL encoded. For example, the object `test_file(3).png` will
1258
- # appear as `test_file%283%29.png`.
1302
+ # Encoding type used by Amazon S3 to encode the [object keys][1] in the
1303
+ # response. Responses are encoded only in UTF-8. An object key can
1304
+ # contain any Unicode character. However, the XML 1.0 parser can't
1305
+ # parse certain characters, such as characters with an ASCII value from
1306
+ # 0 to 10. For characters that aren't supported in XML 1.0, you can add
1307
+ # this parameter to request that Amazon S3 encode the keys in the
1308
+ # response. For more information about characters to avoid in object key
1309
+ # names, see [Object key naming guidelines][2].
1310
+ #
1311
+ # <note markdown="1"> When using the URL encoding type, non-ASCII characters that are used
1312
+ # in an object's key name will be percent-encoded according to UTF-8
1313
+ # code values. For example, the object `test_file(3).png` will appear as
1314
+ # `test_file%283%29.png`.
1315
+ #
1316
+ # </note>
1317
+ #
1318
+ #
1319
+ #
1320
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html
1321
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-guidelines
1259
1322
  # @option options [String] :prefix
1260
1323
  # Limits the response to keys that begin with the specified prefix.
1261
1324
  #