2021-08-19 17:28:16 +00:00
# S3 API support
2021-08-19 17:16:49 +00:00
Reference:
* [AWS S3 API Reference ](https://docs.aws.amazon.com/AmazonS3/latest/API/s3-api.pdf )
2021-08-19 17:28:16 +00:00
| | Legend |
|----|-------------------------------------------|
| 🟢 | Supported |
| 🟡 | Partially supported |
2021-09-15 11:14:06 +00:00
| 🔵 | Not supported yet, but will be in future |
| 🔴 | Not applicable or will never be supported |
2021-08-19 17:28:16 +00:00
## Object
| | Method | Comments |
|----|------------------------|-----------------------------------------|
| 🟢 | CopyObject | Done on gateway side |
| 🟢 | DeleteObject | |
| 🟢 | DeleteObjects | aka DeleteMultipleObjects |
| 🟢 | GetObject | |
2021-09-15 11:14:06 +00:00
| 🔴 | GetObjectTorrent | We don't plan implementing BT gateway |
2021-08-19 17:28:16 +00:00
| 🟢 | HeadObject | |
2021-09-15 11:14:06 +00:00
| 🔵 | ListObjectParts | |
2021-08-19 17:28:16 +00:00
| 🟢 | ListObjects | |
| 🟢 | ListObjectsV2 | |
| 🟢 | PutObject | Content-MD5 header deprecated |
2021-09-15 11:14:06 +00:00
| 🔵 | SelectObjectContent | Need to have some Lambda to execute SQL |
| 🔵 | WriteGetObjectResponse | Waiting for Lambda to be developed |
2021-08-19 17:28:16 +00:00
## ACL
For now there are some limitations:
* [Bucket policy ](https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-policies.html ) support only one `Principal` (type `AWS` ) per `Statement` . To refer all users use `"AWS": "*"`
2021-08-19 17:16:49 +00:00
* AWS conditions and wildcard are not supported in [resources ](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-arn-format.html )
* Only `CanonicalUser` (with hex encoded public key) and `All Users Group` are supported in [ACL ](https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html )
2021-08-19 17:28:16 +00:00
| | Method | Comments |
|----|--------------|-----------------|
| 🟡 | GetObjectAcl | See Limitations |
| 🟡 | PutObjectAcl | See Limitations |
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
## Locking
| | Method | Comments |
|----|----------------------------|---------------------------|
2021-09-15 11:14:06 +00:00
| 🔵 | GetObjectLegalHold | |
| 🔵 | GetObjectLockConfiguration | GetBucketObjectLockConfig |
| 🔵 | GetObjectRetention | |
| 🔵 | PutObjectLegalHold | |
| 🔵 | PutObjectLockConfiguration | PutBucketObjectLockConfig |
| 🔵 | PutObjectRetention | |
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
## Multipart
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
Should be supported soon.
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
| | Method | Comments |
|----|-------------------------|------------------------------------------------|
2021-09-15 11:14:06 +00:00
| 🔵 | AbortMultipartUpload | |
| 🔵 | CompleteMultipartUpload | |
| 🔵 | CreateMultipartUpload | InitiateMultipartUpload and NewMultipartUpload |
| 🔵 | ListMultipartUploads | |
| 🔵 | ListParts | |
| 🔵 | UploadPart | PutObjectPart |
| 🔵 | UploadPartCopy | CopyObjectPart |
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
## Tagging
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
| | Method | Comments |
|----|---------------------|----------|
2021-08-17 11:23:49 +00:00
| 🟢 | DeleteObjectTagging | |
2021-08-17 11:23:01 +00:00
| 🟢 | GetObjectTagging | |
2021-08-17 08:04:42 +00:00
| 🟢 | PutObjectTagging | |
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
## Versioning
See also `GetObject` and other method parameters.
2021-08-19 17:16:49 +00:00
2021-08-19 17:28:16 +00:00
| | Method | Comments |
|----|--------------------|--------------------------|
| 🟢 | ListObjectVersions | ListBucketObjectVersions |
2021-09-15 11:14:06 +00:00
| 🔵 | RestoreObject | |
2021-08-19 17:28:16 +00:00
## Bucket
| | Method | Comments |
|----|----------------------|-----------|
| 🟢 | CreateBucket | PutBucket |
| 🟢 | DeleteBucket | |
2021-09-15 11:14:06 +00:00
| 🔵 | GetBucketLocation | |
2021-08-19 17:28:16 +00:00
| 🟢 | HeadBucket | |
| 🟢 | ListBuckets | |
2021-09-15 11:14:06 +00:00
| 🔵 | PutPublicAccessBlock | |
2021-08-19 17:28:16 +00:00
## Acceleration
| | Method | Comments |
|----|----------------------------------|---------------------|
2021-09-15 11:14:06 +00:00
| 🔴 | GetBucketAccelerateConfiguration | GetBucketAccelerate |
| 🔴 | PutBucketAccelerateConfiguration | |
2021-08-19 17:28:16 +00:00
## ACL
2021-09-15 11:14:06 +00:00
| | Method | Comments |
|----|--------------|---------------------|
| 🟡 | GetBucketAcl | See ACL limitations |
| 🟡 | PutBucketAcl | See ACL Limitations |
2021-08-19 17:28:16 +00:00
## Analytics
| | Method | Comments |
|----|------------------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketAnalyticsConfiguration | |
| 🔵 | GetBucketAnalyticsConfiguration | |
| 🔵 | ListBucketAnalyticsConfigurations | |
| 🔵 | PutBucketAnalyticsConfiguration | |
2021-08-19 17:28:16 +00:00
## CORS
| | Method | Comments |
|----|------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketCors | |
| 🔵 | GetBucketCors | |
| 🔵 | PutBucketCors | |
2021-08-19 17:28:16 +00:00
## Encryption
| | Method | Comments |
|----|------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketEncryption | |
| 🔵 | GetBucketEncryption | |
| 🔵 | PutBucketEncryption | |
2021-08-19 17:28:16 +00:00
## Inventory
| | Method | Comments |
|----|------------------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketInventoryConfiguration | |
| 🔵 | GetBucketInventoryConfiguration | |
| 🔵 | ListBucketInventoryConfigurations | |
| 🔵 | PutBucketInventoryConfiguration | |
2021-08-19 17:28:16 +00:00
## Lifecycle
| | Method | Comments |
|----|---------------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketLifecycle | |
| 🔵 | GetBucketLifecycle | |
| 🔵 | GetBucketLifecycleConfiguration | |
| 🔵 | PutBucketLifecycle | |
| 🔵 | PutBucketLifecycleConfiguration | |
2021-08-19 17:28:16 +00:00
## Logging
| | Method | Comments |
|----|------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | GetBucketLogging | |
| 🔵 | PutBucketLogging | |
2021-08-19 17:28:16 +00:00
## Metrics
| | Method | Comments |
|----|----------------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketMetricsConfiguration | |
| 🔵 | GetBucketMetricsConfiguration | |
| 🔵 | ListBucketMetricsConfigurations | |
| 🔵 | PutBucketMetricsConfiguration | |
2021-08-19 17:28:16 +00:00
## Notifications
| | Method | Comments |
|----|------------------------------------|---------------|
2021-09-15 11:14:06 +00:00
| 🔵 | GetBucketNotification | |
| 🔵 | GetBucketNotificationConfiguration | |
| 🔵 | ListenBucketNotification | non-standard? |
| 🔵 | PutBucketNotification | |
| 🔵 | PutBucketNotificationConfiguration | |
2021-08-19 17:28:16 +00:00
## Ownership controls
| | Method | Comments |
|----|-------------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketOwnershipControls | |
| 🔵 | GetBucketOwnershipControls | |
| 🔵 | PutBucketOwnershipControls | |
2021-08-19 17:28:16 +00:00
## Policy and replication
2021-09-15 11:14:06 +00:00
| | Method | Comments |
|----|-------------------------|-----------------------------|
| 🔵 | DeleteBucketPolicy | |
| 🔵 | DeleteBucketReplication | |
| 🔵 | DeletePublicAccessBlock | |
| 🟡 | GetBucketPolicy | See ACL limitations |
| 🔵 | GetBucketPolicyStatus | |
| 🔵 | GetBucketReplication | |
| 🟢 | PostPolicyBucket | Upload file using POST form |
| 🟡 | PutBucketPolicy | See ACL limitations |
| 🔵 | PutBucketReplication | |
2021-08-19 17:28:16 +00:00
## Request payment
| | Method | Comments |
|----|-------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔴 | GetBucketRequestPayment | |
| 🔴 | PutBucketRequestPayment | |
2021-08-19 17:28:16 +00:00
## Tagging
| | Method | Comments |
|----|---------------------|----------|
2021-08-17 11:57:24 +00:00
| 🟢 | DeleteBucketTagging | |
| 🟢 | GetBucketTagging | |
| 🟢 | PutBucketTagging | |
2021-08-19 17:28:16 +00:00
## Tiering
| | Method | Comments |
|----|---------------------------------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketIntelligentTieringConfiguration | |
| 🔵 | GetBucketIntelligentTieringConfiguration | |
| 🔵 | ListBucketIntelligentTieringConfigurations | |
| 🔵 | PutBucketIntelligentTieringConfiguration | |
2021-08-19 17:28:16 +00:00
## Versioning
| | Method | Comments |
|----|---------------------|----------|
2021-08-19 06:55:22 +00:00
| 🟢 | GetBucketVersioning | |
| 🟢 | PutBucketVersioning | |
2021-08-19 17:28:16 +00:00
## Website
| | Method | Comments |
|----|---------------------|----------|
2021-09-15 11:14:06 +00:00
| 🔵 | DeleteBucketWebsite | |
| 🔵 | GetBucketWebsite | |
| 🔵 | PutBucketWebsite | |