diff options
author | Alex Auvolat <alex@adnab.me> | 2021-05-31 17:23:35 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-05-31 17:23:35 +0200 |
commit | 56ac9fd46013701d3319afaeb69c2dac54d09ff2 (patch) | |
tree | 3e99f57f0943da01c745eabb27b92456568d30f9 /doc/book/src/reference_manual | |
parent | d76a8576f440a90d87fbeaabc80131eadafc88b7 (diff) | |
download | garage-56ac9fd46013701d3319afaeb69c2dac54d09ff2.tar.gz garage-56ac9fd46013701d3319afaeb69c2dac54d09ff2.zip |
Updates to documentation
Diffstat (limited to 'doc/book/src/reference_manual')
-rw-r--r-- | doc/book/src/reference_manual/s3_compatibility.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/book/src/reference_manual/s3_compatibility.md b/doc/book/src/reference_manual/s3_compatibility.md index 5f9f527a..01059218 100644 --- a/doc/book/src/reference_manual/s3_compatibility.md +++ b/doc/book/src/reference_manual/s3_compatibility.md @@ -14,6 +14,7 @@ Not implemented: - vhost-style URLs (`bucket.garage.tld/key`) - object-level ACL +- object versioning - encryption - most `x-amz-` headers @@ -54,6 +55,15 @@ Implemented. Implemented. +#### GetBucketLocation + +Implemented. + +#### GetBucketVersioning + +Stub implementation (Garage does not yet support versionning so this always returns +"versionning not enabled"). + #### GetObject Implemented. @@ -66,6 +76,10 @@ Implemented. Implemented. +#### ListBuckets + +Implemented. + #### ListObjects Implemented, but there isn't a very good specification of what `encoding-type=url` covers so there might be some encoding bugs. In our implementation the url-encoded fields are in the same in ListObjects as they are in ListObjectsV2. |