Obtaining a Bucket ACL
API Description
You can use this API to obtain a bucket ACL.
Method Definition
ObsClient.getBucketAcl(bucketName)
Request Parameters
|
Field |
Type |
Optional or Mandatory |
Description |
|---|---|---|---|
|
bucketName |
str |
Mandatory |
Bucket name |
Returned Results
|
Type |
Description |
|---|---|
|
SDK common result object |
|
GetResult.body Type |
Description |
|---|---|
|
Bucket ACL |
Sample Code
try:
resp = obsClient.getBucketAcl('bucketname')
if resp.status < 300:
print('requestId:', resp.requestId)
print('owner_id:', resp.body.owner.owner_id)
print('owner_name:', resp.body.owner.owner_name)
index = 1;
for grant in resp.body.grants:
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())
Last Article: Setting a Bucket ACL
Next Article: Configuring Logging for a Bucket
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.