简介
本文档提供关于查询存储桶列表的 API 概览以及 SDK 示例代码。
API | 操作名 | 操作描述 |
查询存储桶列表 | 查询指定账号下所有的存储桶列表 |
查询存储桶列表
功能说明
查询指定账号下所有的存储桶列表。
方法原型
func (s *ServiceService) Get(ctx context.Context) (*ServiceGetResult, *Response, error)
请求示例
package mainimport ("context""fmt""github.com/tencentyun/cos-go-sdk-v5""net/http""net/url""os")func main() {// 存储桶名称,由 bucketname-appid 组成,appid 必须填入,可以在 COS 控制台查看存储桶名称。 https://console.cloud.tencent.com/cos5/bucket// 替换为用户的 region,存储桶 region 可以在 COS 控制台“存储桶概览”查看 https://console.cloud.tencent.com/ ,关于地域的详情见 https://cloud.tencent.com/document/product/436/6224 。u, _ := url.Parse("https://examplebucket-1250000000.cos.ap-guangzhou.myqcloud.com")su, _ := url.Parse("https://service.cos.myqcloud.com")// 如果只调用GetService接口,只需要配置ServiceURL,SDK内部将ServiceURL已默认配置为https://service.cos.myqcloud.comb := &cos.BaseURL{BucketURL: u, ServiceURL: su}client := cos.NewClient(b, &http.Client{Transport: &cos.AuthorizationTransport{// 通过环境变量获取密钥// 环境变量 SECRETID 表示用户的 SecretId,登录访问管理控制台查看密钥,https://console.cloud.tencent.com/cam/capiSecretID: os.Getenv("SECRETID"), // 用户的 SecretId,建议使用子账号密钥,授权遵循最小权限指引,降低使用风险。子账号密钥获取可参见 https://cloud.tencent.com/document/product/598/37140// 环境变量 SECRETKEY 表示用户的 SecretKey,登录访问管理控制台查看密钥,https://console.cloud.tencent.com/cam/capiSecretKey: os.Getenv("SECRETKEY"), // 用户的 SecretKey,建议使用子账号密钥,授权遵循最小权限指引,降低使用风险。子账号密钥获取可参见 https://cloud.tencent.com/document/product/598/37140},})res, _, err := client.Service.Get(context.Background())if err != nil {panic(err)}for _, bucket := range res.Buckets {fmt.Printf("%+v\\n", bucket)}}
返回结果说明
通过 GetServiceResult 返回请求结果。
type ServiceGetResult struct {Owner *OwnerBuckets []Bucket}type Owner struct {ID stringDisplayName string}type Bucket struct {Name stringRegion stringCreationDate string}
参数名称 | 参数描述 | 类型 |
ID | Bucket 所有者的 ID | string |
DisplayName | Bucket 所有者的名字信息 | string |
Name | Bucket 的名称 | string |
Region | Bucket 所在地域 | string |
CreationDate | Bucket 创建时间。ISO8601 格式,例如 2016-11-09T08:46:32.000Z | string |