You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
747 B
28 lines
747 B
package cos
|
|
|
|
import (
|
|
"context"
|
|
"encoding/xml"
|
|
"net/http"
|
|
)
|
|
|
|
// BucketGetLocationResult is the result of BucketGetLocation
|
|
type BucketGetLocationResult struct {
|
|
XMLName xml.Name `xml:"LocationConstraint"`
|
|
Location string `xml:",chardata"`
|
|
}
|
|
|
|
// GetLocation 接口获取Bucket所在地域信息,只有Bucket所有者有权限读取信息。
|
|
//
|
|
// https://www.qcloud.com/document/product/436/8275
|
|
func (s *BucketService) GetLocation(ctx context.Context) (*BucketGetLocationResult, *Response, error) {
|
|
var res BucketGetLocationResult
|
|
sendOpt := sendOptions{
|
|
baseURL: s.client.BaseURL.BucketURL,
|
|
uri: "/?location",
|
|
method: http.MethodGet,
|
|
result: &res,
|
|
}
|
|
resp, err := s.client.send(ctx, &sendOpt)
|
|
return &res, resp, err
|
|
}
|