Skip to content

Commit

Permalink
Update generated code (#1800)
Browse files Browse the repository at this point in the history
update generated code
  • Loading branch information
async-aws-bot authored Nov 15, 2024
1 parent fdabb07 commit 409f70c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
### Changed

- use strict comparison `null !==` instead of `!`
- AWS enhancement: Documentation updates.

## 2.4.0

Expand Down
4 changes: 4 additions & 0 deletions src/Input/ListBucketsRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ final class ListBucketsRequest extends Input
*
* Required: No.
*
* > If you specify the `bucket-region`, `prefix`, or `continuation-token` query parameters without using `max-buckets`
* > to set the maximum number of buckets returned in the response, Amazon S3 applies a default page size of 10,000 and
* > provides a continuation token if there are more buckets.
*
* @var string|null
*/
private $continuationToken;
Expand Down
10 changes: 8 additions & 2 deletions src/S3Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class S3Client extends AbstractApi
* > - **Directory buckets** - If multipart uploads in a directory bucket are in progress, you can't delete the bucket
* > until all the in-progress multipart uploads are aborted or completed. To delete these in-progress multipart
* > uploads, use the `ListMultipartUploads` operation to list the in-progress multipart uploads in the bucket and use
* > the `AbortMultupartUpload` operation to abort all the in-progress multipart uploads.
* > the `AbortMultipartUpload` operation to abort all the in-progress multipart uploads.
* > - **Directory buckets** - For directory buckets, you must make requests for this API operation to the Zonal
* > endpoint. These endpoints support virtual-hosted-style requests in the format
* > `https://*bucket_name*.s3express-*az_id*.*region*.amazonaws.com/*key-name*`. Path-style requests are not
Expand Down Expand Up @@ -1716,6 +1716,12 @@ public function headObject($input): HeadObjectOutput
*
* For information about Amazon S3 buckets, see Creating, configuring, and working with Amazon S3 buckets [^1].
*
* ! We strongly recommend using only paginated requests. Unpaginated requests are only supported for Amazon Web
* ! Services accounts set to the default general purpose bucket quota of 10,000. If you have an approved general
* ! purpose bucket quota above 10,000, you must send paginated requests to list your account’s buckets. All
* ! unpaginated ListBuckets requests will be rejected for Amazon Web Services accounts with a general purpose bucket
* ! quota greater than 10,000.
*
* [^1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html
*
* @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTServiceGET.html
Expand Down Expand Up @@ -1745,7 +1751,7 @@ public function listBuckets($input = []): ListBucketsOutput
* > **Directory buckets** - If multipart uploads in a directory bucket are in progress, you can't delete the bucket
* > until all the in-progress multipart uploads are aborted or completed. To delete these in-progress multipart
* > uploads, use the `ListMultipartUploads` operation to list the in-progress multipart uploads in the bucket and use
* > the `AbortMultupartUpload` operation to abort all the in-progress multipart uploads.
* > the `AbortMultipartUpload` operation to abort all the in-progress multipart uploads.
*
* The `ListMultipartUploads` operation returns a maximum of 1,000 multipart uploads in the response. The limit of 1,000
* multipart uploads is also the default value. You can further limit the number of uploads in a response by specifying
Expand Down

0 comments on commit 409f70c

Please sign in to comment.