2017-06-25 23:45:22 +02:00
|
|
|
// +-------------------------------------------------------------------------
|
|
|
|
// | Copyright (C) 2016 Yunify, Inc.
|
|
|
|
// +-------------------------------------------------------------------------
|
|
|
|
// | Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// | you may not use this work except in compliance with the License.
|
|
|
|
// | You may obtain a copy of the License in the LICENSE file, or at:
|
|
|
|
// |
|
|
|
|
// | http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// |
|
|
|
|
// | Unless required by applicable law or agreed to in writing, software
|
|
|
|
// | distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// | See the License for the specific language governing permissions and
|
|
|
|
// | limitations under the License.
|
|
|
|
// +-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2017-08-08 11:18:33 +02:00
|
|
|
"net/http"
|
2017-09-30 16:27:27 +02:00
|
|
|
"strings"
|
2017-06-25 23:45:22 +02:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/yunify/qingstor-sdk-go/config"
|
|
|
|
"github.com/yunify/qingstor-sdk-go/request"
|
|
|
|
"github.com/yunify/qingstor-sdk-go/request/data"
|
|
|
|
"github.com/yunify/qingstor-sdk-go/request/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ fmt.State
|
|
|
|
var _ io.Reader
|
2017-08-08 11:18:33 +02:00
|
|
|
var _ http.Header
|
2017-09-30 16:27:27 +02:00
|
|
|
var _ strings.Reader
|
2017-06-25 23:45:22 +02:00
|
|
|
var _ time.Time
|
|
|
|
var _ config.Config
|
|
|
|
|
|
|
|
// Bucket presents bucket.
|
|
|
|
type Bucket struct {
|
|
|
|
Config *config.Config
|
|
|
|
Properties *Properties
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bucket initializes a new bucket.
|
|
|
|
func (s *Service) Bucket(bucketName string, zone string) (*Bucket, error) {
|
2017-09-30 16:27:27 +02:00
|
|
|
zone = strings.ToLower(zone)
|
2017-06-25 23:45:22 +02:00
|
|
|
properties := &Properties{
|
|
|
|
BucketName: &bucketName,
|
|
|
|
Zone: &zone,
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Bucket{Config: s.Config, Properties: properties}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete does Delete a bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/delete.html
|
|
|
|
func (s *Bucket) Delete() (*DeleteBucketOutput, error) {
|
|
|
|
r, x, err := s.DeleteRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteRequest creates request and output object of DeleteBucket.
|
|
|
|
func (s *Bucket) DeleteRequest() (*request.Request, *DeleteBucketOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "DELETE Bucket",
|
|
|
|
RequestMethod: "DELETE",
|
|
|
|
RequestURI: "/<bucket-name>",
|
|
|
|
StatusCodes: []int{
|
|
|
|
204, // Bucket deleted
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &DeleteBucketOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBucketOutput presents output for DeleteBucket.
|
|
|
|
type DeleteBucketOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteCORS does Delete CORS information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/cors/delete_cors.html
|
|
|
|
func (s *Bucket) DeleteCORS() (*DeleteBucketCORSOutput, error) {
|
|
|
|
r, x, err := s.DeleteCORSRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteCORSRequest creates request and output object of DeleteBucketCORS.
|
|
|
|
func (s *Bucket) DeleteCORSRequest() (*request.Request, *DeleteBucketCORSOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "DELETE Bucket CORS",
|
|
|
|
RequestMethod: "DELETE",
|
|
|
|
RequestURI: "/<bucket-name>?cors",
|
|
|
|
StatusCodes: []int{
|
|
|
|
204, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &DeleteBucketCORSOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBucketCORSOutput presents output for DeleteBucketCORS.
|
|
|
|
type DeleteBucketCORSOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteExternalMirror does Delete external mirror of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/external_mirror/delete_external_mirror.html
|
|
|
|
func (s *Bucket) DeleteExternalMirror() (*DeleteBucketExternalMirrorOutput, error) {
|
|
|
|
r, x, err := s.DeleteExternalMirrorRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteExternalMirrorRequest creates request and output object of DeleteBucketExternalMirror.
|
|
|
|
func (s *Bucket) DeleteExternalMirrorRequest() (*request.Request, *DeleteBucketExternalMirrorOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "DELETE Bucket External Mirror",
|
|
|
|
RequestMethod: "DELETE",
|
|
|
|
RequestURI: "/<bucket-name>?mirror",
|
|
|
|
StatusCodes: []int{
|
|
|
|
204, // No content
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &DeleteBucketExternalMirrorOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBucketExternalMirrorOutput presents output for DeleteBucketExternalMirror.
|
|
|
|
type DeleteBucketExternalMirrorOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeletePolicy does Delete policy information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/policy/delete_policy.html
|
|
|
|
func (s *Bucket) DeletePolicy() (*DeleteBucketPolicyOutput, error) {
|
|
|
|
r, x, err := s.DeletePolicyRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeletePolicyRequest creates request and output object of DeleteBucketPolicy.
|
|
|
|
func (s *Bucket) DeletePolicyRequest() (*request.Request, *DeleteBucketPolicyOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "DELETE Bucket Policy",
|
|
|
|
RequestMethod: "DELETE",
|
|
|
|
RequestURI: "/<bucket-name>?policy",
|
|
|
|
StatusCodes: []int{
|
|
|
|
204, // No content
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &DeleteBucketPolicyOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBucketPolicyOutput presents output for DeleteBucketPolicy.
|
|
|
|
type DeleteBucketPolicyOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteMultipleObjects does Delete multiple objects from the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/delete_multiple.html
|
|
|
|
func (s *Bucket) DeleteMultipleObjects(input *DeleteMultipleObjectsInput) (*DeleteMultipleObjectsOutput, error) {
|
|
|
|
r, x, err := s.DeleteMultipleObjectsRequest(input)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteMultipleObjectsRequest creates request and output object of DeleteMultipleObjects.
|
|
|
|
func (s *Bucket) DeleteMultipleObjectsRequest(input *DeleteMultipleObjectsInput) (*request.Request, *DeleteMultipleObjectsOutput, error) {
|
|
|
|
|
|
|
|
if input == nil {
|
|
|
|
input = &DeleteMultipleObjectsInput{}
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "Delete Multiple Objects",
|
|
|
|
RequestMethod: "POST",
|
|
|
|
RequestURI: "/<bucket-name>?delete",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &DeleteMultipleObjectsOutput{}
|
|
|
|
r, err := request.New(o, input, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteMultipleObjectsInput presents input for DeleteMultipleObjects.
|
|
|
|
type DeleteMultipleObjectsInput struct {
|
|
|
|
|
|
|
|
// A list of keys to delete
|
|
|
|
Objects []*KeyType `json:"objects" name:"objects" location:"elements"` // Required
|
|
|
|
// Whether to return the list of deleted objects
|
|
|
|
Quiet *bool `json:"quiet,omitempty" name:"quiet" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the input for DeleteMultipleObjects.
|
|
|
|
func (v *DeleteMultipleObjectsInput) Validate() error {
|
|
|
|
|
|
|
|
if len(v.Objects) == 0 {
|
|
|
|
return errors.ParameterRequiredError{
|
|
|
|
ParameterName: "Objects",
|
|
|
|
ParentName: "DeleteMultipleObjectsInput",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Objects) > 0 {
|
|
|
|
for _, property := range v.Objects {
|
|
|
|
if err := property.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteMultipleObjectsOutput presents output for DeleteMultipleObjects.
|
|
|
|
type DeleteMultipleObjectsOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// List of deleted objects
|
|
|
|
Deleted []*KeyType `json:"deleted,omitempty" name:"deleted" location:"elements"`
|
|
|
|
// Error messages
|
|
|
|
Errors []*KeyDeleteErrorType `json:"errors,omitempty" name:"errors" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetACL does Get ACL information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/get_acl.html
|
|
|
|
func (s *Bucket) GetACL() (*GetBucketACLOutput, error) {
|
|
|
|
r, x, err := s.GetACLRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetACLRequest creates request and output object of GetBucketACL.
|
|
|
|
func (s *Bucket) GetACLRequest() (*request.Request, *GetBucketACLOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "GET Bucket ACL",
|
|
|
|
RequestMethod: "GET",
|
|
|
|
RequestURI: "/<bucket-name>?acl",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &GetBucketACLOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBucketACLOutput presents output for GetBucketACL.
|
|
|
|
type GetBucketACLOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// Bucket ACL rules
|
|
|
|
ACL []*ACLType `json:"acl,omitempty" name:"acl" location:"elements"`
|
|
|
|
// Bucket owner
|
|
|
|
Owner *OwnerType `json:"owner,omitempty" name:"owner" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCORS does Get CORS information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/cors/get_cors.html
|
|
|
|
func (s *Bucket) GetCORS() (*GetBucketCORSOutput, error) {
|
|
|
|
r, x, err := s.GetCORSRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCORSRequest creates request and output object of GetBucketCORS.
|
|
|
|
func (s *Bucket) GetCORSRequest() (*request.Request, *GetBucketCORSOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "GET Bucket CORS",
|
|
|
|
RequestMethod: "GET",
|
|
|
|
RequestURI: "/<bucket-name>?cors",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &GetBucketCORSOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBucketCORSOutput presents output for GetBucketCORS.
|
|
|
|
type GetBucketCORSOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// Bucket CORS rules
|
|
|
|
CORSRules []*CORSRuleType `json:"cors_rules,omitempty" name:"cors_rules" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetExternalMirror does Get external mirror of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/external_mirror/get_external_mirror.html
|
|
|
|
func (s *Bucket) GetExternalMirror() (*GetBucketExternalMirrorOutput, error) {
|
|
|
|
r, x, err := s.GetExternalMirrorRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetExternalMirrorRequest creates request and output object of GetBucketExternalMirror.
|
|
|
|
func (s *Bucket) GetExternalMirrorRequest() (*request.Request, *GetBucketExternalMirrorOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "GET Bucket External Mirror",
|
|
|
|
RequestMethod: "GET",
|
|
|
|
RequestURI: "/<bucket-name>?mirror",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &GetBucketExternalMirrorOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBucketExternalMirrorOutput presents output for GetBucketExternalMirror.
|
|
|
|
type GetBucketExternalMirrorOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// Source site url
|
|
|
|
SourceSite *string `json:"source_site,omitempty" name:"source_site" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPolicy does Get policy information of the bucket.
|
|
|
|
// Documentation URL: https://https://docs.qingcloud.com/qingstor/api/bucket/policy/get_policy.html
|
|
|
|
func (s *Bucket) GetPolicy() (*GetBucketPolicyOutput, error) {
|
|
|
|
r, x, err := s.GetPolicyRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPolicyRequest creates request and output object of GetBucketPolicy.
|
|
|
|
func (s *Bucket) GetPolicyRequest() (*request.Request, *GetBucketPolicyOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "GET Bucket Policy",
|
|
|
|
RequestMethod: "GET",
|
|
|
|
RequestURI: "/<bucket-name>?policy",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &GetBucketPolicyOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBucketPolicyOutput presents output for GetBucketPolicy.
|
|
|
|
type GetBucketPolicyOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// Bucket policy statement
|
|
|
|
Statement []*StatementType `json:"statement,omitempty" name:"statement" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStatistics does Get statistics information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/get_stats.html
|
|
|
|
func (s *Bucket) GetStatistics() (*GetBucketStatisticsOutput, error) {
|
|
|
|
r, x, err := s.GetStatisticsRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStatisticsRequest creates request and output object of GetBucketStatistics.
|
|
|
|
func (s *Bucket) GetStatisticsRequest() (*request.Request, *GetBucketStatisticsOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "GET Bucket Statistics",
|
|
|
|
RequestMethod: "GET",
|
|
|
|
RequestURI: "/<bucket-name>?stats",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &GetBucketStatisticsOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBucketStatisticsOutput presents output for GetBucketStatistics.
|
|
|
|
type GetBucketStatisticsOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// Objects count in the bucket
|
|
|
|
Count *int64 `json:"count,omitempty" name:"count" location:"elements"`
|
|
|
|
// Bucket created time
|
|
|
|
Created *time.Time `json:"created,omitempty" name:"created" format:"ISO 8601" location:"elements"`
|
|
|
|
// QingCloud Zone ID
|
|
|
|
Location *string `json:"location,omitempty" name:"location" location:"elements"`
|
|
|
|
// Bucket name
|
|
|
|
Name *string `json:"name,omitempty" name:"name" location:"elements"`
|
|
|
|
// Bucket storage size
|
|
|
|
Size *int64 `json:"size,omitempty" name:"size" location:"elements"`
|
|
|
|
// Bucket status
|
|
|
|
// Status's available values: active, suspended
|
|
|
|
Status *string `json:"status,omitempty" name:"status" location:"elements"`
|
|
|
|
// URL to access the bucket
|
|
|
|
URL *string `json:"url,omitempty" name:"url" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Head does Check whether the bucket exists and available.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/head.html
|
|
|
|
func (s *Bucket) Head() (*HeadBucketOutput, error) {
|
|
|
|
r, x, err := s.HeadRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// HeadRequest creates request and output object of HeadBucket.
|
|
|
|
func (s *Bucket) HeadRequest() (*request.Request, *HeadBucketOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "HEAD Bucket",
|
|
|
|
RequestMethod: "HEAD",
|
|
|
|
RequestURI: "/<bucket-name>",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &HeadBucketOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// HeadBucketOutput presents output for HeadBucket.
|
|
|
|
type HeadBucketOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListMultipartUploads does List multipart uploads in the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/list_multipart_uploads.html
|
|
|
|
func (s *Bucket) ListMultipartUploads(input *ListMultipartUploadsInput) (*ListMultipartUploadsOutput, error) {
|
|
|
|
r, x, err := s.ListMultipartUploadsRequest(input)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListMultipartUploadsRequest creates request and output object of ListMultipartUploads.
|
|
|
|
func (s *Bucket) ListMultipartUploadsRequest(input *ListMultipartUploadsInput) (*request.Request, *ListMultipartUploadsOutput, error) {
|
|
|
|
|
|
|
|
if input == nil {
|
|
|
|
input = &ListMultipartUploadsInput{}
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "List Multipart Uploads",
|
|
|
|
RequestMethod: "GET",
|
|
|
|
RequestURI: "/<bucket-name>?uploads",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &ListMultipartUploadsOutput{}
|
|
|
|
r, err := request.New(o, input, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListMultipartUploadsInput presents input for ListMultipartUploads.
|
|
|
|
type ListMultipartUploadsInput struct {
|
|
|
|
// Put all keys that share a common prefix into a list
|
2017-09-30 16:27:27 +02:00
|
|
|
Delimiter *string `json:"delimiter,omitempty" name:"delimiter" location:"query"`
|
2017-09-23 12:50:14 +02:00
|
|
|
// Limit results returned from the first key after key_marker sorted by alphabetical order
|
2017-09-30 16:27:27 +02:00
|
|
|
KeyMarker *string `json:"key_marker,omitempty" name:"key_marker" location:"query"`
|
2017-06-25 23:45:22 +02:00
|
|
|
// Results count limit
|
2017-09-30 16:27:27 +02:00
|
|
|
Limit *int `json:"limit,omitempty" name:"limit" location:"query"`
|
2017-06-25 23:45:22 +02:00
|
|
|
// Limits results to keys that begin with the prefix
|
2017-09-30 16:27:27 +02:00
|
|
|
Prefix *string `json:"prefix,omitempty" name:"prefix" location:"query"`
|
2017-09-23 12:50:14 +02:00
|
|
|
// Limit results returned from the first uploading segment after upload_id_marker sorted by the time of upload_id
|
2017-09-30 16:27:27 +02:00
|
|
|
UploadIDMarker *string `json:"upload_id_marker,omitempty" name:"upload_id_marker" location:"query"`
|
2017-06-25 23:45:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the input for ListMultipartUploads.
|
|
|
|
func (v *ListMultipartUploadsInput) Validate() error {
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListMultipartUploadsOutput presents output for ListMultipartUploads.
|
|
|
|
type ListMultipartUploadsOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// Other object keys that share common prefixes
|
|
|
|
CommonPrefixes []*string `json:"common_prefixes,omitempty" name:"common_prefixes" location:"elements"`
|
|
|
|
// Delimiter that specified in request parameters
|
|
|
|
Delimiter *string `json:"delimiter,omitempty" name:"delimiter" location:"elements"`
|
|
|
|
// Limit that specified in request parameters
|
|
|
|
Limit *int `json:"limit,omitempty" name:"limit" location:"elements"`
|
|
|
|
// Marker that specified in request parameters
|
|
|
|
Marker *string `json:"marker,omitempty" name:"marker" location:"elements"`
|
|
|
|
// Bucket name
|
|
|
|
Name *string `json:"name,omitempty" name:"name" location:"elements"`
|
2017-09-23 12:50:14 +02:00
|
|
|
// The last key in uploads list
|
|
|
|
NextKeyMarker *string `json:"next_key_marker,omitempty" name:"next_key_marker" location:"elements"`
|
|
|
|
// The last upload_id in uploads list
|
|
|
|
NextUploadIDMarker *string `json:"next_upload_id_marker,omitempty" name:"next_upload_id_marker" location:"elements"`
|
2017-06-25 23:45:22 +02:00
|
|
|
// Prefix that specified in request parameters
|
|
|
|
Prefix *string `json:"prefix,omitempty" name:"prefix" location:"elements"`
|
|
|
|
// Multipart uploads
|
|
|
|
Uploads []*UploadsType `json:"uploads,omitempty" name:"uploads" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListObjects does Retrieve the object list in a bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/get.html
|
|
|
|
func (s *Bucket) ListObjects(input *ListObjectsInput) (*ListObjectsOutput, error) {
|
|
|
|
r, x, err := s.ListObjectsRequest(input)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListObjectsRequest creates request and output object of ListObjects.
|
|
|
|
func (s *Bucket) ListObjectsRequest(input *ListObjectsInput) (*request.Request, *ListObjectsOutput, error) {
|
|
|
|
|
|
|
|
if input == nil {
|
|
|
|
input = &ListObjectsInput{}
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "GET Bucket (List Objects)",
|
|
|
|
RequestMethod: "GET",
|
|
|
|
RequestURI: "/<bucket-name>",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &ListObjectsOutput{}
|
|
|
|
r, err := request.New(o, input, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListObjectsInput presents input for ListObjects.
|
|
|
|
type ListObjectsInput struct {
|
|
|
|
// Put all keys that share a common prefix into a list
|
2017-09-30 16:27:27 +02:00
|
|
|
Delimiter *string `json:"delimiter,omitempty" name:"delimiter" location:"query"`
|
2017-06-25 23:45:22 +02:00
|
|
|
// Results count limit
|
2017-09-30 16:27:27 +02:00
|
|
|
Limit *int `json:"limit,omitempty" name:"limit" location:"query"`
|
2017-06-25 23:45:22 +02:00
|
|
|
// Limit results to keys that start at this marker
|
2017-09-30 16:27:27 +02:00
|
|
|
Marker *string `json:"marker,omitempty" name:"marker" location:"query"`
|
2017-06-25 23:45:22 +02:00
|
|
|
// Limits results to keys that begin with the prefix
|
2017-09-30 16:27:27 +02:00
|
|
|
Prefix *string `json:"prefix,omitempty" name:"prefix" location:"query"`
|
2017-06-25 23:45:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the input for ListObjects.
|
|
|
|
func (v *ListObjectsInput) Validate() error {
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListObjectsOutput presents output for ListObjects.
|
|
|
|
type ListObjectsOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
|
|
|
|
// Other object keys that share common prefixes
|
|
|
|
CommonPrefixes []*string `json:"common_prefixes,omitempty" name:"common_prefixes" location:"elements"`
|
|
|
|
// Delimiter that specified in request parameters
|
|
|
|
Delimiter *string `json:"delimiter,omitempty" name:"delimiter" location:"elements"`
|
|
|
|
// Object keys
|
|
|
|
Keys []*KeyType `json:"keys,omitempty" name:"keys" location:"elements"`
|
|
|
|
// Limit that specified in request parameters
|
|
|
|
Limit *int `json:"limit,omitempty" name:"limit" location:"elements"`
|
|
|
|
// Marker that specified in request parameters
|
|
|
|
Marker *string `json:"marker,omitempty" name:"marker" location:"elements"`
|
|
|
|
// Bucket name
|
|
|
|
Name *string `json:"name,omitempty" name:"name" location:"elements"`
|
|
|
|
// The last key in keys list
|
|
|
|
NextMarker *string `json:"next_marker,omitempty" name:"next_marker" location:"elements"`
|
|
|
|
// Bucket owner
|
|
|
|
Owner *OwnerType `json:"owner,omitempty" name:"owner" location:"elements"`
|
|
|
|
// Prefix that specified in request parameters
|
|
|
|
Prefix *string `json:"prefix,omitempty" name:"prefix" location:"elements"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put does Create a new bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/put.html
|
|
|
|
func (s *Bucket) Put() (*PutBucketOutput, error) {
|
|
|
|
r, x, err := s.PutRequest()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutRequest creates request and output object of PutBucket.
|
|
|
|
func (s *Bucket) PutRequest() (*request.Request, *PutBucketOutput, error) {
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "PUT Bucket",
|
|
|
|
RequestMethod: "PUT",
|
|
|
|
RequestURI: "/<bucket-name>",
|
|
|
|
StatusCodes: []int{
|
|
|
|
201, // Bucket created
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &PutBucketOutput{}
|
|
|
|
r, err := request.New(o, nil, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketOutput presents output for PutBucket.
|
|
|
|
type PutBucketOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutACL does Set ACL information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/put_acl.html
|
|
|
|
func (s *Bucket) PutACL(input *PutBucketACLInput) (*PutBucketACLOutput, error) {
|
|
|
|
r, x, err := s.PutACLRequest(input)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutACLRequest creates request and output object of PutBucketACL.
|
|
|
|
func (s *Bucket) PutACLRequest(input *PutBucketACLInput) (*request.Request, *PutBucketACLOutput, error) {
|
|
|
|
|
|
|
|
if input == nil {
|
|
|
|
input = &PutBucketACLInput{}
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "PUT Bucket ACL",
|
|
|
|
RequestMethod: "PUT",
|
|
|
|
RequestURI: "/<bucket-name>?acl",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &PutBucketACLOutput{}
|
|
|
|
r, err := request.New(o, input, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketACLInput presents input for PutBucketACL.
|
|
|
|
type PutBucketACLInput struct {
|
|
|
|
// Bucket ACL rules
|
|
|
|
ACL []*ACLType `json:"acl" name:"acl" location:"elements"` // Required
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the input for PutBucketACL.
|
|
|
|
func (v *PutBucketACLInput) Validate() error {
|
|
|
|
|
|
|
|
if len(v.ACL) == 0 {
|
|
|
|
return errors.ParameterRequiredError{
|
|
|
|
ParameterName: "ACL",
|
|
|
|
ParentName: "PutBucketACLInput",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.ACL) > 0 {
|
|
|
|
for _, property := range v.ACL {
|
|
|
|
if err := property.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketACLOutput presents output for PutBucketACL.
|
|
|
|
type PutBucketACLOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutCORS does Set CORS information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/cors/put_cors.html
|
|
|
|
func (s *Bucket) PutCORS(input *PutBucketCORSInput) (*PutBucketCORSOutput, error) {
|
|
|
|
r, x, err := s.PutCORSRequest(input)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutCORSRequest creates request and output object of PutBucketCORS.
|
|
|
|
func (s *Bucket) PutCORSRequest(input *PutBucketCORSInput) (*request.Request, *PutBucketCORSOutput, error) {
|
|
|
|
|
|
|
|
if input == nil {
|
|
|
|
input = &PutBucketCORSInput{}
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "PUT Bucket CORS",
|
|
|
|
RequestMethod: "PUT",
|
|
|
|
RequestURI: "/<bucket-name>?cors",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &PutBucketCORSOutput{}
|
|
|
|
r, err := request.New(o, input, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketCORSInput presents input for PutBucketCORS.
|
|
|
|
type PutBucketCORSInput struct {
|
|
|
|
// Bucket CORS rules
|
|
|
|
CORSRules []*CORSRuleType `json:"cors_rules" name:"cors_rules" location:"elements"` // Required
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the input for PutBucketCORS.
|
|
|
|
func (v *PutBucketCORSInput) Validate() error {
|
|
|
|
|
|
|
|
if len(v.CORSRules) == 0 {
|
|
|
|
return errors.ParameterRequiredError{
|
|
|
|
ParameterName: "CORSRules",
|
|
|
|
ParentName: "PutBucketCORSInput",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.CORSRules) > 0 {
|
|
|
|
for _, property := range v.CORSRules {
|
|
|
|
if err := property.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketCORSOutput presents output for PutBucketCORS.
|
|
|
|
type PutBucketCORSOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutExternalMirror does Set external mirror of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/external_mirror/put_external_mirror.html
|
|
|
|
func (s *Bucket) PutExternalMirror(input *PutBucketExternalMirrorInput) (*PutBucketExternalMirrorOutput, error) {
|
|
|
|
r, x, err := s.PutExternalMirrorRequest(input)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutExternalMirrorRequest creates request and output object of PutBucketExternalMirror.
|
|
|
|
func (s *Bucket) PutExternalMirrorRequest(input *PutBucketExternalMirrorInput) (*request.Request, *PutBucketExternalMirrorOutput, error) {
|
|
|
|
|
|
|
|
if input == nil {
|
|
|
|
input = &PutBucketExternalMirrorInput{}
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "PUT Bucket External Mirror",
|
|
|
|
RequestMethod: "PUT",
|
|
|
|
RequestURI: "/<bucket-name>?mirror",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &PutBucketExternalMirrorOutput{}
|
|
|
|
r, err := request.New(o, input, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketExternalMirrorInput presents input for PutBucketExternalMirror.
|
|
|
|
type PutBucketExternalMirrorInput struct {
|
|
|
|
// Source site url
|
|
|
|
SourceSite *string `json:"source_site" name:"source_site" location:"elements"` // Required
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the input for PutBucketExternalMirror.
|
|
|
|
func (v *PutBucketExternalMirrorInput) Validate() error {
|
|
|
|
|
|
|
|
if v.SourceSite == nil {
|
|
|
|
return errors.ParameterRequiredError{
|
|
|
|
ParameterName: "SourceSite",
|
|
|
|
ParentName: "PutBucketExternalMirrorInput",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketExternalMirrorOutput presents output for PutBucketExternalMirror.
|
|
|
|
type PutBucketExternalMirrorOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutPolicy does Set policy information of the bucket.
|
|
|
|
// Documentation URL: https://docs.qingcloud.com/qingstor/api/bucket/policy/put_policy.html
|
|
|
|
func (s *Bucket) PutPolicy(input *PutBucketPolicyInput) (*PutBucketPolicyOutput, error) {
|
|
|
|
r, x, err := s.PutPolicyRequest(input)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.Send()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
requestID := r.HTTPResponse.Header.Get(http.CanonicalHeaderKey("X-QS-Request-ID"))
|
2017-06-25 23:45:22 +02:00
|
|
|
x.RequestID = &requestID
|
|
|
|
|
|
|
|
return x, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutPolicyRequest creates request and output object of PutBucketPolicy.
|
|
|
|
func (s *Bucket) PutPolicyRequest(input *PutBucketPolicyInput) (*request.Request, *PutBucketPolicyOutput, error) {
|
|
|
|
|
|
|
|
if input == nil {
|
|
|
|
input = &PutBucketPolicyInput{}
|
|
|
|
}
|
|
|
|
|
2017-08-08 11:18:33 +02:00
|
|
|
properties := *s.Properties
|
|
|
|
|
2017-06-25 23:45:22 +02:00
|
|
|
o := &data.Operation{
|
|
|
|
Config: s.Config,
|
2017-08-08 11:18:33 +02:00
|
|
|
Properties: &properties,
|
2017-06-25 23:45:22 +02:00
|
|
|
APIName: "PUT Bucket Policy",
|
|
|
|
RequestMethod: "PUT",
|
|
|
|
RequestURI: "/<bucket-name>?policy",
|
|
|
|
StatusCodes: []int{
|
|
|
|
200, // OK
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
x := &PutBucketPolicyOutput{}
|
|
|
|
r, err := request.New(o, input, x)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, x, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketPolicyInput presents input for PutBucketPolicy.
|
|
|
|
type PutBucketPolicyInput struct {
|
|
|
|
// Bucket policy statement
|
|
|
|
Statement []*StatementType `json:"statement" name:"statement" location:"elements"` // Required
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the input for PutBucketPolicy.
|
|
|
|
func (v *PutBucketPolicyInput) Validate() error {
|
|
|
|
|
|
|
|
if len(v.Statement) == 0 {
|
|
|
|
return errors.ParameterRequiredError{
|
|
|
|
ParameterName: "Statement",
|
|
|
|
ParentName: "PutBucketPolicyInput",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Statement) > 0 {
|
|
|
|
for _, property := range v.Statement {
|
|
|
|
if err := property.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutBucketPolicyOutput presents output for PutBucketPolicy.
|
|
|
|
type PutBucketPolicyOutput struct {
|
|
|
|
StatusCode *int `location:"statusCode"`
|
|
|
|
|
|
|
|
RequestID *string `location:"requestID"`
|
|
|
|
}
|