Chris Lu
3 years ago
16 changed files with 151 additions and 66 deletions
-
111.github/workflows/binaries_dev.yml
-
4k8s/helm_charts2/Chart.yaml
-
4weed/command/filer_remote_gateway.go
-
11weed/command/filer_remote_sync.go
-
5weed/s3api/s3api_bucket_handlers.go
-
4weed/s3api/s3api_object_copy_handlers.go
-
7weed/s3api/s3api_object_handlers.go
-
3weed/s3api/s3api_object_handlers_postpolicy.go
-
37weed/s3api/s3api_object_skip_handlers.go
-
3weed/s3api/s3api_object_tagging_handlers.go
-
2weed/s3api/s3api_objects_list_handlers.go
-
9weed/s3api/s3api_server.go
-
1weed/server/filer_server_handlers_read.go
-
2weed/shell/commands.go
-
2weed/util/constants.go
-
12weed/wdclient/exclusive_locks/exclusive_locker.go
@ -1,5 +1,5 @@ |
|||||
apiVersion: v1 |
apiVersion: v1 |
||||
description: SeaweedFS |
description: SeaweedFS |
||||
name: seaweedfs |
name: seaweedfs |
||||
appVersion: "2.68" |
|
||||
version: "2.68" |
|
||||
|
appVersion: "2.69" |
||||
|
version: "2.69" |
@ -0,0 +1,37 @@ |
|||||
|
package s3api |
||||
|
|
||||
|
import ( |
||||
|
"net/http" |
||||
|
) |
||||
|
|
||||
|
// PutObjectAclHandler Put object ACL
|
||||
|
// https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectAcl.html
|
||||
|
func (s3a *S3ApiServer) PutObjectAclHandler(w http.ResponseWriter, r *http.Request) { |
||||
|
|
||||
|
w.WriteHeader(http.StatusNoContent) |
||||
|
|
||||
|
} |
||||
|
|
||||
|
// PutObjectRetentionHandler Put object Retention
|
||||
|
// https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectRetention.html
|
||||
|
func (s3a *S3ApiServer) PutObjectRetentionHandler(w http.ResponseWriter, r *http.Request) { |
||||
|
|
||||
|
w.WriteHeader(http.StatusNoContent) |
||||
|
|
||||
|
} |
||||
|
|
||||
|
// PutObjectLegalHoldHandler Put object Legal Hold
|
||||
|
// https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectLegalHold.html
|
||||
|
func (s3a *S3ApiServer) PutObjectLegalHoldHandler(w http.ResponseWriter, r *http.Request) { |
||||
|
|
||||
|
w.WriteHeader(http.StatusNoContent) |
||||
|
|
||||
|
} |
||||
|
|
||||
|
// PutObjectLockConfigurationHandler Put object Lock configuration
|
||||
|
// https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectLockConfiguration.html
|
||||
|
func (s3a *S3ApiServer) PutObjectLockConfigurationHandler(w http.ResponseWriter, r *http.Request) { |
||||
|
|
||||
|
w.WriteHeader(http.StatusNoContent) |
||||
|
|
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue