aws-sdk-s3 1.215.0 → 1.218.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78dbac7be5f04099a22976fa24d809974cf955579dbd0763ca2d65f6cd1bf4e9
4
- data.tar.gz: 5f51620aa5b2e452e70fb7074b62533e366f782dc0c6f977929255c5bfdc1d7e
3
+ metadata.gz: 913843b58029ef60d1b24e4b7bce92c5d9651ad61219a1424310a6cd83213dd9
4
+ data.tar.gz: f68ab62fb802ec66d530867718319a90ba27481ad7fb2a58ed7dbfe8a63b5155
5
5
  SHA512:
6
- metadata.gz: 849edcef5ad4ca08996c96bd49025a6fea354d432a0a9d4afa8de5d82821aedf8d836b7bf2eb57f243422c47f805172407b7bc9ae4d3d285ab752e14828d4eab
7
- data.tar.gz: 6c855768321f1fd0346061d27b9f0db98bf3e41758d3dd43e81b57333239ed8a33b286bdf92ab49777934ad0db3d098ce887e8b4efde3d181f070f2088663c5d
6
+ metadata.gz: 288b272e52c817806a5799d7d2af4d986a46aac4b64163fbddad64454dc3bb312cfb98b3c81432cf511590b9e6fd82f9f0e916bc69c24950b4d6ea25eb68f478
7
+ data.tar.gz: 2e4bd25ebebf88dd3e55e91b860d05bab07b486a6c26e41723c7f8adb3d67f1f8431b767ca2a6a82dac230121b84ea4d986c196fa549a68a9c516b416d2f8694
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.218.0 (2026-03-31)
5
+ ------------------
6
+
7
+ * Feature - Add Bucket Metrics configuration support to directory buckets
8
+
9
+ 1.217.1 (2026-03-30)
10
+ ------------------
11
+
12
+ * Issue - Fix `require_https_for_sse_cpk` option being ignored; the HTTPS enforcement for SSE-CPK operations now correctly respects the configured value, allowing it to be disabled for local development.
13
+
14
+ 1.217.0 (2026-03-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.216.0 (2026-03-12)
20
+ ------------------
21
+
22
+ * Feature - Adds support for account regional namespaces for general purpose buckets. The account regional namespace is a reserved subdivision of the global bucket namespace where only your account can create general purpose buckets.
23
+
4
24
  1.215.0 (2026-03-05)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.215.0
1
+ 1.218.0
@@ -277,6 +277,7 @@ module Aws::S3
277
277
  # grant_write_acp: "GrantWriteACP",
278
278
  # object_lock_enabled_for_bucket: false,
279
279
  # object_ownership: "BucketOwnerPreferred", # accepts BucketOwnerPreferred, ObjectWriter, BucketOwnerEnforced
280
+ # bucket_namespace: "account-regional", # accepts account-regional, global
280
281
  # })
281
282
  # @param [Hash] options ({})
282
283
  # @option options [String] :acl
@@ -362,6 +363,33 @@ module Aws::S3
362
363
  #
363
364
  #
364
365
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html
366
+ # @option options [String] :bucket_namespace
367
+ # Specifies the namespace where you want to create your general purpose
368
+ # bucket. When you create a general purpose bucket, you can choose to
369
+ # create a bucket in the shared global namespace or you can choose to
370
+ # create a bucket in your account regional namespace. Your account
371
+ # regional namespace is a subdivision of the global namespace that only
372
+ # your account can create buckets in. For more information on bucket
373
+ # namespaces, see [Namespaces for general purpose buckets][1].
374
+ #
375
+ # General purpose buckets in your account regional namespace must follow
376
+ # a specific naming convention. These buckets consist of a bucket name
377
+ # prefix that you create, and a suffix that contains your 12-digit
378
+ # Amazon Web Services Account ID, the Amazon Web Services Region code,
379
+ # and ends with `-an`. Bucket names must follow the format
380
+ # `bucket-name-prefix-accountId-region-an` (for example,
381
+ # `amzn-s3-demo-bucket-111122223333-us-west-2-an`). For information
382
+ # about bucket naming restrictions, see [Account regional namespace
383
+ # naming rules][2] in the *Amazon S3 User Guide*.
384
+ #
385
+ # <note markdown="1"> This functionality is not supported for directory buckets.
386
+ #
387
+ # </note>
388
+ #
389
+ #
390
+ #
391
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/gpbucketnamespaces.html
392
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html#account-regional-naming-rules
365
393
  # @return [Types::CreateBucketOutput]
366
394
  def create(options = {})
367
395
  options = options.merge(bucket: @name)