| 12345678910111213141516171819202122232425262728 |
- 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
- }
|