查看PDF

获取桶日志管理配置

更新时间: 2019-03-13 10:26

功能说明

获取桶的访问日志配置。

方法定义

  1. func (obsClient ObsClient) GetBucketLoggingConfiguration(bucketName string) (output *GetBucketLoggingConfigurationOutput, err error)

使用带授权信息URL的方法定义

  1. func (obsClient ObsClient) GetBucketLoggingConfigurationWithSignedUrl(signedUrl string, actualSignedRequestHeaders http.Header) (output *GetBucketLoggingConfigurationOutput, err error)

请求参数


参数名

类型

约束

说明

bucketName

string

必选

桶名。

返回结果


参数名

类型

output

*GetBucketLoggingConfigurationOutput

err

error

代码样例

  1. func main() {
  2. output, err := obsClient.GetBucketLoggingConfiguration("bucketname")
  3. if err == nil {
  4. fmt.Printf("RequestId:%s\n", output.RequestId)
  5. fmt.Printf("TargetBucket:%s, TargetPrefix:%s\n", output.TargetBucket, output.TargetPrefix)
  6. for index, grant := range output.TargetGrants {
  7. 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)
  8. }
  9. } else {
  10. if obsError, ok := err.(obs.ObsError); ok {
  11. fmt.Println(obsError.Code)
  12. fmt.Println(obsError.Message)
  13. } else {
  14. fmt.Println(err)
  15. }
  16. }
  17. }

父主题:桶相关接口