获取桶区域位置
更新时间: 2019-03-13 10:25
功能说明
获取桶所在的区域位置。
方法定义
- func (obsClient ObsClient) GetBucketLocation(bucketName string) (output *GetBucketLocationOutput, err error)
使用带授权信息URL的方法定义
- func (obsClient ObsClient) GetBucketLocationWithSignedUrl(signedUrl string, actualSignedRequestHeaders http.Header) (output *GetBucketLocationOutput, err error)
请求参数
参数名 | 类型 | 约束 | 说明 |
---|---|---|---|
bucketName | string | 必选 | 桶名。 |
返回结果
参数名 | 类型 |
---|---|
output | *GetBucketLocationOutput |
err | error |
代码样例
- func main() {
- output, err := obsClient.GetBucketLocation("bucketname")
- if err == nil {
- fmt.Printf("RequestId:%s\n", output.RequestId)
- fmt.Printf("Location:%s\n", output.Location)
- } else {
- if obsError, ok := err.(obs.ObsError); ok {
- fmt.Println(obsError.Code)
- fmt.Println(obsError.Message)
- } else {
- fmt.Println(err)
- }
- }
- }
父主题:桶相关接口