aws-sdk-s3 1.191.0 → 1.194.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 +32 -0
- data/lib/aws-sdk-s3/client.rb +604 -38
- data/lib/aws-sdk-s3/client_api.rb +187 -0
- data/lib/aws-sdk-s3/endpoints.rb +70 -0
- data/lib/aws-sdk-s3/resource.rb +6 -0
- data/lib/aws-sdk-s3/types.rb +782 -27
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +10 -1
- data/sig/client.rbs +87 -1
- data/sig/resource.rbs +8 -1
- data/sig/types.rbs +126 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0dfe2d6194c7b6b3c67de1afe28bd1ea2862c07a6ca613ef46cb2ab2b88a14ad
|
4
|
+
data.tar.gz: e18d0a8fec044eb019f316854d5502650bcff3c0772c72501798267eae18e719
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d54f00907ad99660c41b30f6af57914443f9dec45d22690760f7419d75e98f9591fa36413ece74206f28c827ce8ccee45d62243dba1e65b2907bb6e9a69061f6
|
7
|
+
data.tar.gz: 3667b425a4a463097d26d930caa0768a609e75bd84fa395051d9c525dbdb77f32e23ed00c69f5ca7db7682211f334789673d5850c72ce39619a6358767e2653e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.194.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.193.0 (2025-07-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon S3 Metadata live inventory tables provide a queryable inventory of all the objects in your general purpose bucket so that you can determine the latest state of your data. To help minimize your storage costs, use journal table record expiration to set a retention period for your records.
|
13
|
+
|
14
|
+
1.192.0 (2025-07-02)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations
|
18
|
+
|
4
19
|
1.191.0 (2025-06-25)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.194.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -49,6 +49,23 @@ module Aws::S3
|
|
49
49
|
data[:bucket_region]
|
50
50
|
end
|
51
51
|
|
52
|
+
# The Amazon Resource Name (ARN) of the S3 bucket. ARNs uniquely
|
53
|
+
# identify Amazon Web Services resources across all of Amazon Web
|
54
|
+
# Services.
|
55
|
+
#
|
56
|
+
# <note markdown="1"> This parameter is only supported for S3 directory buckets. For more
|
57
|
+
# information, see [Using tags with directory buckets][1].
|
58
|
+
#
|
59
|
+
# </note>
|
60
|
+
#
|
61
|
+
#
|
62
|
+
#
|
63
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
|
64
|
+
# @return [String]
|
65
|
+
def bucket_arn
|
66
|
+
data[:bucket_arn]
|
67
|
+
end
|
68
|
+
|
52
69
|
# @!endgroup
|
53
70
|
|
54
71
|
# @return [Client]
|
@@ -246,6 +263,12 @@ module Aws::S3
|
|
246
263
|
# data_redundancy: "SingleAvailabilityZone", # accepts SingleAvailabilityZone, SingleLocalZone
|
247
264
|
# type: "Directory", # accepts Directory
|
248
265
|
# },
|
266
|
+
# tags: [
|
267
|
+
# {
|
268
|
+
# key: "ObjectKey", # required
|
269
|
+
# value: "Value", # required
|
270
|
+
# },
|
271
|
+
# ],
|
249
272
|
# },
|
250
273
|
# grant_full_control: "GrantFullControl",
|
251
274
|
# grant_read: "GrantRead",
|
@@ -1183,6 +1206,9 @@ module Aws::S3
|
|
1183
1206
|
# beginning of the key. The keys that are grouped under `CommonPrefixes`
|
1184
1207
|
# result element are not returned elsewhere in the response.
|
1185
1208
|
#
|
1209
|
+
# `CommonPrefixes` is filtered out from results if it is not
|
1210
|
+
# lexicographically greater than the key-marker.
|
1211
|
+
#
|
1186
1212
|
# <note markdown="1"> **Directory buckets** - For directory buckets, `/` is the only
|
1187
1213
|
# supported delimiter.
|
1188
1214
|
#
|
@@ -1339,6 +1365,9 @@ module Aws::S3
|
|
1339
1365
|
# in `CommonPrefixes`. These groups are counted as one result against
|
1340
1366
|
# the `max-keys` limitation. These keys are not returned elsewhere in
|
1341
1367
|
# the response.
|
1368
|
+
#
|
1369
|
+
# `CommonPrefixes` is filtered out from results if it is not
|
1370
|
+
# lexicographically greater than the key-marker.
|
1342
1371
|
# @option options [String] :encoding_type
|
1343
1372
|
# Encoding type used by Amazon S3 to encode the [object keys][1] in the
|
1344
1373
|
# response. Responses are encoded only in UTF-8. An object key can
|
@@ -1434,6 +1463,9 @@ module Aws::S3
|
|
1434
1463
|
# @option options [String] :delimiter
|
1435
1464
|
# A delimiter is a character that you use to group keys.
|
1436
1465
|
#
|
1466
|
+
# `CommonPrefixes` is filtered out from results if it is not
|
1467
|
+
# lexicographically greater than the `StartAfter` value.
|
1468
|
+
#
|
1437
1469
|
# <note markdown="1"> * **Directory buckets** - For directory buckets, `/` is the only
|
1438
1470
|
# supported delimiter.
|
1439
1471
|
#
|