获取桶ACL
更新时间: 2019-03-13 10:26
功能说明
获取桶的访问权限。
方法定义
- func (obsClient ObsClient) GetBucketAcl(bucketName string) (output *GetBucketAclOutput, err error)
使用带授权信息URL的方法定义
- func (obsClient ObsClient) GetBucketAclWithSignedUrl(signedUrl string, actualSignedRequestHeaders http.Header) (output *GetBucketAclOutput, err error)
请求参数
参数名 | 类型 | 约束 | 说明 |
---|---|---|---|
bucketName | string | 必选 | 桶名。 |
返回结果
参数名 | 类型 |
---|---|
output | *GetBucketAclOutput |
err | error |
代码样例
- func main() {
- output, err := obsClient.GetBucketAcl("bucketname")
- if err == nil {
- fmt.Printf("RequestId:%s\n", output.RequestId)
- fmt.Printf("Owner.ID:%s\n", output.Owner.ID)
- for index, grant := range output.Grants {
- fmt.Printf("Grant[%d]-Type:%s, ID:%s, URI:%s, Permission:%s\n", index, grant.Grantee.Type, grant.Grantee.ID, grant.Grantee.URI, grant.Permission)
- }
- } else {
- if obsError, ok := err.(obs.ObsError); ok {
- fmt.Println(obsError.Code)
- fmt.Println(obsError.Message)
- } else {
- fmt.Println(err)
- }
- }
- }
父主题:桶相关接口