aws-sdk-s3 1.132.0 → 1.142.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +62 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +421 -81
  5. data/lib/aws-sdk-s3/bucket_acl.rb +9 -9
  6. data/lib/aws-sdk-s3/bucket_cors.rb +12 -12
  7. data/lib/aws-sdk-s3/bucket_lifecycle.rb +12 -12
  8. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +12 -12
  9. data/lib/aws-sdk-s3/bucket_logging.rb +16 -9
  10. data/lib/aws-sdk-s3/bucket_notification.rb +3 -3
  11. data/lib/aws-sdk-s3/bucket_policy.rb +58 -14
  12. data/lib/aws-sdk-s3/bucket_request_payment.rb +9 -9
  13. data/lib/aws-sdk-s3/bucket_tagging.rb +12 -12
  14. data/lib/aws-sdk-s3/bucket_versioning.rb +27 -27
  15. data/lib/aws-sdk-s3/bucket_website.rb +12 -12
  16. data/lib/aws-sdk-s3/client.rb +5675 -2521
  17. data/lib/aws-sdk-s3/client_api.rb +111 -16
  18. data/lib/aws-sdk-s3/customizations/object.rb +45 -2
  19. data/lib/aws-sdk-s3/customizations.rb +5 -0
  20. data/lib/aws-sdk-s3/endpoint_parameters.rb +32 -0
  21. data/lib/aws-sdk-s3/endpoint_provider.rb +82 -0
  22. data/lib/aws-sdk-s3/endpoints.rb +440 -0
  23. data/lib/aws-sdk-s3/express_credentials.rb +55 -0
  24. data/lib/aws-sdk-s3/express_credentials_cache.rb +30 -0
  25. data/lib/aws-sdk-s3/express_credentials_provider.rb +36 -0
  26. data/lib/aws-sdk-s3/file_downloader.rb +119 -24
  27. data/lib/aws-sdk-s3/multipart_file_uploader.rb +0 -1
  28. data/lib/aws-sdk-s3/multipart_stream_uploader.rb +0 -1
  29. data/lib/aws-sdk-s3/multipart_upload.rb +69 -16
  30. data/lib/aws-sdk-s3/multipart_upload_part.rb +160 -35
  31. data/lib/aws-sdk-s3/object.rb +1504 -235
  32. data/lib/aws-sdk-s3/object_acl.rb +29 -15
  33. data/lib/aws-sdk-s3/object_summary.rb +1367 -254
  34. data/lib/aws-sdk-s3/object_version.rb +297 -42
  35. data/lib/aws-sdk-s3/plugins/endpoints.rb +13 -2
  36. data/lib/aws-sdk-s3/plugins/express_session_auth.rb +90 -0
  37. data/lib/aws-sdk-s3/plugins/location_constraint.rb +3 -1
  38. data/lib/aws-sdk-s3/plugins/md5s.rb +2 -1
  39. data/lib/aws-sdk-s3/presigner.rb +2 -2
  40. data/lib/aws-sdk-s3/resource.rb +83 -11
  41. data/lib/aws-sdk-s3/types.rb +4500 -1351
  42. data/lib/aws-sdk-s3.rb +1 -1
  43. metadata +11 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: adbed389cd50d435107ac0380117b7e1a316f18dc19cc9a140b223320980fb27
4
- data.tar.gz: feea3f5c604991ae327c7e3a7c1811ea0de5ab4474154e3bc69162d8262def72
3
+ metadata.gz: af737f00129e002bae0251080e68a33bea5125cadfde5cd32b1c6e46c8738ae6
4
+ data.tar.gz: c55a0b9366c0ee242828f16bfc5380d937519e714d51225bf09ff731f4efc6d1
5
5
  SHA512:
6
- metadata.gz: 3f9adfd588e576e5dd17a9abac897b5d3e113b3fefd03de458fc0c8556c9a43336f84af4a3faf4f8516995cfff58cb9085af209f1f2ef8991204e11f7b7e9164
7
- data.tar.gz: 5eb78921bec0f584949cec19adc7d6f38c65daabab5f9ed01c7298d7bfb14501512a1ea99abc6449591867bf548bab50ec0fd3fe54c21dd5ddfddafa370aaae6
6
+ metadata.gz: 735ffd4679644479901118bdbc5b417df986c9025e7efabfa17acd464e9c7681b7492ac7dbdd6da7e28ac7f7cf47d2b69756b2010d4383fd9413aad5c4c1d97b
7
+ data.tar.gz: b304e79fe8582c8ef1b6b4a4f4e96afef8cd02b90e6af81b6eb64d877aa0772e65b993cd2c3dacbae7383a882f9804a4e7f93486fbb70c02ad1154314a3402d5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,67 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.142.0 (2023-12-22)
5
+ ------------------
6
+
7
+ * Feature - Added additional examples for some operations.
8
+
9
+ 1.141.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Adds support for S3 Express One Zone.
13
+
14
+ * Feature - Support S3 Express authentication and endpoints. Express session auth can be disabled with the `disable_s3_express_session_auth` Client option, the `AWS_S3_DISABLE_EXPRESS_SESSION_AUTH` environment variable, and the `s3_disable_express_session_auth` shared config option. A custom `express_credentials_provider` can be configured onto the Client.
15
+
16
+ 1.140.0 (2023-11-27)
17
+ ------------------
18
+
19
+ * Feature - Adding new params - Key and Prefix, to S3 API operations for supporting S3 Access Grants. Note - These updates will not change any of the existing S3 API functionality.
20
+
21
+ * Issue - Fix thread interruptions in multipart `download_file`, `file_uploader` and `stream_uploader` (#2944).
22
+
23
+ 1.139.0 (2023-11-22)
24
+ ------------------
25
+
26
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
27
+
28
+ 1.138.0 (2023-11-21)
29
+ ------------------
30
+
31
+ * Feature - Add support for automatic date based partitioning in S3 Server Access Logs.
32
+
33
+ 1.137.0 (2023-11-17)
34
+ ------------------
35
+
36
+ * Feature - Removes all default 0 values for numbers and false values for booleans
37
+
38
+ 1.136.0 (2023-09-26)
39
+ ------------------
40
+
41
+ * Feature - This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.
42
+
43
+ 1.135.0 (2023-09-20)
44
+ ------------------
45
+
46
+ * Feature - Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException
47
+
48
+ 1.134.0 (2023-08-24)
49
+ ------------------
50
+
51
+ * Feature - Updates to endpoint ruleset tests to address Smithy validation issues.
52
+
53
+ 1.133.0 (2023-08-22)
54
+ ------------------
55
+
56
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
57
+
58
+ * Feature - Add support for `progress_callback` in `Object#download_file` and improve multi-threaded performance #(2901).
59
+
60
+ 1.132.1 (2023-08-09)
61
+ ------------------
62
+
63
+ * Issue - Add support for disabling checksum validation in `Object#download_file` (#2893).
64
+
4
65
  1.132.0 (2023-07-24)
5
66
  ------------------
6
67
 
@@ -19,6 +80,7 @@ Unreleased Changes
19
80
  * Feature - S3 Inventory now supports Object Access Control List and Object Owner as available object metadata fields in inventory reports.
20
81
 
21
82
  * Feature - Allow Object multipart copy API to work when requiring a checksum algorithm.
83
+
22
84
  * Feature - Allow Object multipart copy API to optionally copy parts as they exist on the source object if it has parts, instead of generating new part ranges, when specifying `use_source_parts: true`.
23
85
 
24
86
  1.129.0 (2023-07-11)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.132.0
1
+ 1.142.0