update the comment for godoc
This commit is contained in:
@@ -6,21 +6,19 @@ import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// BucketTaggingTag ...
|
||||
// BucketTaggingTag is the tag of BucketTagging
|
||||
type BucketTaggingTag struct {
|
||||
Key string
|
||||
Value string
|
||||
}
|
||||
|
||||
// BucketGetTaggingResult ...
|
||||
// BucketGetTaggingResult is the result of BucketGetTagging
|
||||
type BucketGetTaggingResult struct {
|
||||
XMLName xml.Name `xml:"Tagging"`
|
||||
TagSet []BucketTaggingTag `xml:"TagSet>Tag,omitempty"`
|
||||
}
|
||||
|
||||
// GetTagging ...
|
||||
//
|
||||
// Get Bucket Tagging接口实现获取指定Bucket的标签。
|
||||
// GetTagging 接口实现获取指定Bucket的标签。
|
||||
//
|
||||
// https://www.qcloud.com/document/product/436/8277
|
||||
func (s *BucketService) GetTagging(ctx context.Context) (*BucketGetTaggingResult, *Response, error) {
|
||||
@@ -35,15 +33,13 @@ func (s *BucketService) GetTagging(ctx context.Context) (*BucketGetTaggingResult
|
||||
return &res, resp, err
|
||||
}
|
||||
|
||||
// BucketPutTaggingOptions ...
|
||||
// BucketPutTaggingOptions is the option of BucketPutTagging
|
||||
type BucketPutTaggingOptions struct {
|
||||
XMLName xml.Name `xml:"Tagging"`
|
||||
TagSet []BucketTaggingTag `xml:"TagSet>Tag,omitempty"`
|
||||
}
|
||||
|
||||
// PutTagging ...
|
||||
//
|
||||
// Put Bucket Tagging接口实现给用指定Bucket打标签。用来组织和管理相关Bucket。
|
||||
// PutTagging 接口实现给用指定Bucket打标签。用来组织和管理相关Bucket。
|
||||
//
|
||||
// 当该请求设置相同Key名称,不同Value时,会返回400。请求成功,则返回204。
|
||||
//
|
||||
@@ -59,9 +55,7 @@ func (s *BucketService) PutTagging(ctx context.Context, opt *BucketPutTaggingOpt
|
||||
return resp, err
|
||||
}
|
||||
|
||||
// DeleteTagging ...
|
||||
//
|
||||
// Delete Bucket Tagging接口实现删除指定Bucket的标签。
|
||||
// DeleteTagging 接口实现删除指定Bucket的标签。
|
||||
//
|
||||
// https://www.qcloud.com/document/product/436/8286
|
||||
func (s *BucketService) DeleteTagging(ctx context.Context) (*Response, error) {
|
||||
|
||||
Reference in New Issue
Block a user