Help Center> Object Storage Service> SDK Reference> Python> Bucket-Related APIs> Obtaining Logging Configuration of a Bucket

Obtaining Logging Configuration of a Bucket

API Description

You can use this API to obtain the logging configuration of a bucket.

Method Definition

ObsClient.getBucketLogging(bucketName)

Request Parameters

Field

Type

Optional or Mandatory

Description

bucketName

str

Mandatory

Bucket name

Returned Results

Type

Description

GetResult

SDK common result object

GetResult.body Type

Description

Logging

Logging configuration information

Sample Code

try:
    resp = obsClient.getBucketLogging('bucketname') 
     
    if resp.status < 300: 
        print('requestId:', resp.requestId) 
        print('targetBucket:', resp.body.targetBucket) 
        print('targetPrefix:', resp.body.targetPrefix) 
         
        index = 1     
        for grant in resp.body.targetGrants: 
            print('grant [' + str(index) + ']') 
            print('grant_id:', grant.grantee.grantee_id)         
            print('grant_name:', grant.grantee.grantee_name)         
            print('group:', grant.grantee.group)        
            print('permission:', grant.permission) 
            index += 1 
    else: 
        print('errorCode:', resp.errorCode) 
        print('errorMessage:', resp.errorMessage)
except:
    import traceback
    print(traceback.format_exc())