diff options
author | Alex Auvolat <alex@adnab.me> | 2022-01-07 17:14:37 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-01-07 17:14:37 +0100 |
commit | 8f39360f221e265f9c1fa4b2499573f0596fbf0c (patch) | |
tree | 16126399d438800947da8c8ba4fb6279f30b15ab /doc/book/src/reference_manual | |
parent | 7ee11f0eb6327ea809b7ca27cfdf0b1d70cdbde9 (diff) | |
download | garage-8f39360f221e265f9c1fa4b2499573f0596fbf0c.tar.gz garage-8f39360f221e265f9c1fa4b2499573f0596fbf0c.zip |
Update documentation
Diffstat (limited to 'doc/book/src/reference_manual')
-rw-r--r-- | doc/book/src/reference_manual/s3_compatibility.md | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/book/src/reference_manual/s3_compatibility.md b/doc/book/src/reference_manual/s3_compatibility.md index fd17f28d..5f44de78 100644 --- a/doc/book/src/reference_manual/s3_compatibility.md +++ b/doc/book/src/reference_manual/s3_compatibility.md @@ -28,9 +28,9 @@ All APIs that are not mentionned are not implemented and will return a 400 bad r | AbortMultipartUpload | Implemented | | CompleteMultipartUpload | Implemented | | CopyObject | Implemented | -| CreateBucket | Unsupported, stub (see below) | +| CreateBucket | Implemented | | CreateMultipartUpload | Implemented | -| DeleteBucket | Unsupported (see below) | +| DeleteBucket | Implemented | | DeleteBucketWebsite | Implemented | | DeleteObject | Implemented | | DeleteObjects | Implemented | @@ -48,11 +48,6 @@ All APIs that are not mentionned are not implemented and will return a 400 bad r | UploadPart | Implemented | - -- **CreateBucket:** Garage does not yet accept creating buckets or giving access using API calls, it has to be done using the CLI tools. CreateBucket will return a 200 if the bucket exists and user has write access, and a 403 Forbidden in all other cases. - -- **DeleteBucket:** Garage does not yet accept deleting buckets using API calls, it has to be done using the CLI tools. This request will return a 403 Forbidden. - - **GetBucketVersioning:** Stub implementation (Garage does not yet support versionning so this always returns "versionning not enabled"). |