PUT Bucket acl
API Description
You can use this API to set the ACL for a bucket.
Method Definition
1. ObsClient->setBucketAcl(array $parameter) 2. ObsClient->setBucketAclAsync(array $parameter, callable $callback)
Request Parameter
|
Field |
Type |
Optional or Mandatory |
Description |
||
|---|---|---|---|---|---|
|
Bucket |
string |
Mandatory |
Bucket name |
||
|
ACL |
string |
Optional |
|||
|
Owner |
associative array |
Optional |
Bucket owner |
||
|
ID |
string |
Mandatory |
ID of the domain to which the bucket owner belongs |
||
|
DisplayName |
string |
Optional |
Name of the bucket owner |
||
|
Grants |
indexed array |
Optional |
List of grantees' permission information |
||
|
Grantee |
associative array |
Mandatory |
Grantee |
||
|
Type |
string |
Mandatory |
|||
|
ID |
string |
Mandatory when Type is CanonicalUser. In other cases, leave it null. |
ID of the domain to which the grantee belongs |
||
|
URI |
string |
Mandatory when Type is Group. In other cases, leave it null. |
|||
|
Permission |
string |
Mandatory |
|||
|
Delivered |
boolean |
Optional |
Whether an object inherits the ACL of its residing bucket |
||
- Owner and Grants must be used together and they cannot be used with ACL.
- You must set either the two fields or ACL.
Returned Result
|
Field |
Type |
Description |
|---|---|---|
|
HttpStatusCode |
integer |
HTTP status code |
|
Reason |
string |
Reason description |
|
RequestId |
string |
Request ID returned by the OBS server |
Sample Code
try{
$resp = $obsClient -> setBucketAcl([
'Bucket' => 'bucketname',
'Owner' => ['ID' => 'ownerid', 'DisplayName' => 'ownername'],
'Grants' => [
['Grantee' => ['Type' => 'CanonicalUser', 'ID' => 'userid'], 'Permission' => ObsClient::PermissionRead],
['Grantee' => ['Type' => 'CanonicalUser', 'ID' => 'userid'], 'Permission' => ObsClient::PermissionWrite],
['Grantee' => ['Type' => 'Group', 'URI' => ObsClient::GroupLogDelivery], 'Permission' => ObsClient::PermissionWrite],
['Grantee' => ['Type' => 'Group', 'URI' => ObsClient::GroupLogDelivery], 'Permission' => ObsClient::PermissionReadAcp],
]
]);
printf("RequestId:%s\n", $resp['RequestId']);
}catch (Obs\Common\ObsException $obsException){
printf("ExceptionCode:%s\n", $obsException->getExceptionCode());
printf("ExceptionMessage:%s\n", $obsException->getExceptionMessage());
}
Last Article: GET Bucket storagePolicy
Next Article: GET Bucket acl
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.