2021-05-28 16:00:59 +00:00
# S3 Compatibility status
2021-02-19 18:10:23 +00:00
2021-05-28 16:00:59 +00:00
## Global S3 features
2021-02-19 18:10:23 +00:00
Implemented:
2021-02-19 18:11:55 +00:00
- path-style URLs (`garage.tld/bucket/key`)
2021-12-15 14:05:54 +00:00
- vhost-style URLs (`bucket.garage.tld/key`)
2021-02-19 18:10:23 +00:00
- putting and getting objects in buckets
- multipart uploads
- listing objects
2022-01-07 15:23:04 +00:00
- access control on a per-access-key-per-bucket basis
- CORS headers on web endpoint
2021-02-19 18:10:23 +00:00
Not implemented:
- object-level ACL
2021-12-15 14:05:54 +00:00
- [object versioning ](https://git.deuxfleurs.fr/Deuxfleurs/garage/issues/166 )
2021-02-19 18:10:23 +00:00
- encryption
- most `x-amz-` headers
2021-05-28 16:00:59 +00:00
## Endpoint implementation
2021-02-19 18:10:23 +00:00
2022-01-11 16:31:09 +00:00
All APIs that are not mentionned are not implemented and will return a 501 Not Implemented.
2021-02-19 18:10:23 +00:00
2021-10-19 14:16:10 +00:00
| Endpoint | Status |
|------------------------------|----------------------------------|
| AbortMultipartUpload | Implemented |
| CompleteMultipartUpload | Implemented |
| CopyObject | Implemented |
2022-01-07 16:14:37 +00:00
| CreateBucket | Implemented |
2021-10-19 14:16:10 +00:00
| CreateMultipartUpload | Implemented |
2022-01-07 16:14:37 +00:00
| DeleteBucket | Implemented |
2022-01-07 15:23:04 +00:00
| DeleteBucketCors | Implemented |
2021-12-15 14:05:54 +00:00
| DeleteBucketWebsite | Implemented |
2021-10-19 14:16:10 +00:00
| DeleteObject | Implemented |
| DeleteObjects | Implemented |
2022-01-07 15:23:04 +00:00
| GetBucketCors | Implemented |
2021-10-19 14:16:10 +00:00
| GetBucketLocation | Implemented |
| GetBucketVersioning | Stub (see below) |
2022-01-07 16:13:16 +00:00
| GetBucketWebsite | Implemented |
2021-10-19 14:16:10 +00:00
| GetObject | Implemented |
| HeadBucket | Implemented |
| HeadObject | Implemented |
| ListBuckets | Implemented |
| ListObjects | Implemented, bugs? (see below) |
| ListObjectsV2 | Implemented |
2022-01-12 18:04:55 +00:00
| ListMultipartUpload | Implemented |
2022-01-20 15:38:28 +00:00
| ListParts | Implemented |
2021-10-19 14:16:10 +00:00
| PutObject | Implemented |
2022-01-07 15:23:04 +00:00
| PutBucketCors | Implemented |
2021-12-15 14:05:54 +00:00
| PutBucketWebsite | Partially implemented (see below)|
2021-10-19 14:16:10 +00:00
| UploadPart | Implemented |
2022-01-11 16:31:09 +00:00
| UploadPartCopy | Implemented |
2021-10-19 14:16:10 +00:00
- **GetBucketVersioning:** Stub implementation (Garage does not yet support versionning so this always returns
2021-05-31 15:23:35 +00:00
"versionning not enabled").
2021-10-19 14:16:10 +00:00
- **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.
2021-02-19 18:10:23 +00:00
2022-01-07 16:13:16 +00:00
- **PutBucketWebsite:** Implemented, but only stores the index document suffix and the error document path. Redirects are not supported.
2021-12-15 14:05:54 +00:00