Obtaining Object ACL Information
API Description
You can use this API to obtain the ACL information of an object in a specified bucket.
Method Definition
ObsClient.getObjectAcl(bucketName, objectKey, versionId)
Request Parameters
| Field | Type | Optional or Mandatory | Description |
|---|---|---|---|
| bucketName | str | Mandatory | Bucket name |
| objectKey | str | Mandatory | Object name |
| versionId | str | Optional | Object version ID |
Returned Results
| Type | Description |
|---|---|
| SDK common result object |
| GetResult.body Type | Description |
|---|---|
| Object ACL |
Sample Code
try:
resp = obsClient.getObjectAcl('bucketname', 'objectkey')
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('grantee_id:', grant.grantee.grantee_id)
print('grantee_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 Object ACL
Next Article: Restoring an Archive Object
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.