Managing Bucket ACLs
If you have any questions during development, post them on the Issues page of GitHub. For details about parameters and usage of each API, see API Reference.
A bucket ACL can be configured in any of the following ways:
- Specify a pre-defined access policy during bucket creation.
- Call ObsClient->setBucketAcl to specify a pre-defined access policy.
- Call ObsClient->setBucketAcl to set the ACL directly.
The following table lists the five permission types supported by OBS.
Permission |
Description |
Value in OBS PHP SDK |
---|---|---|
READ |
A grantee with this permission for a bucket can obtain the list of objects in the bucket and the metadata of the bucket. A grantee with this permission for an object can obtain the object content and metadata. |
ObsClient::PermissionRead |
WRITE |
A grantee with this permission for a bucket can upload, overwrite, and delete any object in the bucket. This permission is not applicable to objects. |
ObsClient::PermissionWrite |
READ_ACP |
A grantee with this permission can obtain the ACL of a bucket or object. A bucket or object owner has this permission permanently. |
ObsClient::PermissionReadAcp |
WRITE_ACP |
A grantee with this permission can update the ACL of a bucket or object. A bucket or object owner has this permission permanently. A grantee with this permission can modify the access control policy and thus the grantee obtains full access permissions. |
ObsClient::PermissionWriteAcp |
FULL_CONTROL |
A grantee with this permission for a bucket has READ, WRITE, READ_ACP, and WRITE_ACP permissions for the bucket. A grantee with this permission for an object has READ, WRITE, READ_ACP, and WRITE_ACP permissions for the object. |
ObsClient::PermissionFullControl |
There are five access control policies pre-defined in OBS, as described in the following table:
Policy |
Description |
Value in OBS PHP SDK |
---|---|---|
private |
Indicates that the owner of a bucket or object has the FULL_CONTROL permission for the bucket or object. Other users have no permission to access the bucket or object. |
ObsClient::AclPrivate |
public-read |
If this permission is set for a bucket, everyone can obtain the list of objects, multipart uploads, and object versions in the bucket, as well as metadata of the bucket. If this permission is set for an object, everyone can obtain the content and metadata of the object. |
ObsClient::AclPublicRead |
public-read-write |
If this permission is set for a bucket, everyone can obtain the object list in the bucket, multipart uploads in the bucket, metadata of the bucket; upload objects; delete objects; initialize multipart uploads; upload parts; combine parts; copy parts; and abort multipart uploads. If this permission is set for an object, everyone can obtain the content and metadata of the object. |
ObsClient::AclPublicReadWrite |
public-read-delivered |
If this permission is set for a bucket, everyone can obtain the object list, multipart uploads, and bucket metadata in the bucket, and obtain the content and metadata of the objects in the bucket. This permission cannot be set for objects. |
ObsClient::AclPublicReadDelivered |
public-read-write-delivered |
If this permission is set for a bucket, everyone can obtain the object list in the bucket, multipart tasks in the bucket, metadata of the bucket; upload objects; delete objects; initialize multipart uploads; upload parts; combine parts; copy parts; abort multipart uploads; and obtain content and metadata of objects in the bucket. This permission cannot be set for objects. |
ObsClient::AclPublicReadWriteDelivered |
Specifying a Pre-defined Access Control Policy During Bucket Creation
Sample code:
// Import the dependency library. require 'vendor/autoload.php'; // Import the SDK code library during the installation with source code. // require 'obs-autoloader.php'; // Declare the namespace. use Obs\ObsClient; // Create an ObsClient instance. $obsClient = new ObsClient ( [ //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage. //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html. 'key' => getenv('ACCESS_KEY_ID'), 'secret' => getenv('SECRET_ACCESS_KEY'), 'endpoint' => 'https://your-endpoint' ] ); // Create a bucket. $resp = $obsClient->createBucket([ 'Bucket' => 'bucketname', // Set the bucket ACL to public-read-write. 'ACL' => ObsClient::AclPublicReadWrite ]); printf("RequestId:%s\n",$resp['RequestId']);
Setting a Pre-defined Access Control Policy for a Bucket
Sample code:
// Import the dependency library. require 'vendor/autoload.php'; // Import the SDK code library during the installation with source code. // require 'obs-autoloader.php'; // Declare the namespace. use Obs\ObsClient; // Create an ObsClient instance. $obsClient = new ObsClient ( [ //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage. //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html. 'key' => getenv('ACCESS_KEY_ID'), 'secret' => getenv('SECRET_ACCESS_KEY'), 'endpoint' => 'https://your-endpoint' ] ); // Use a pre-specified access policy to set the bucket ACL. $resp = $obsClient->setBucketAcl([ 'Bucket' => 'bucketname', // Set the bucket ACL to private. 'ACL' => ObsClient::AclPrivate ]); printf("RequestId:%s\n",$resp['RequestId']);
Use the ACL parameter to specify the ACL for a bucket.
Directly Setting a Bucket ACL
Sample code:
// Import the dependency library. require 'vendor/autoload.php'; // Import the SDK code library during the installation with source code. // require 'obs-autoloader.php'; // Declare the namespace. use Obs\ObsClient; // Create an ObsClient instance. $obsClient = new ObsClient ( [ //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage. //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html. 'key' => getenv('ACCESS_KEY_ID'), 'secret' => getenv('SECRET_ACCESS_KEY'), 'endpoint' => 'https://your-endpoint' ] ); // Directly set the bucket ACL. $resp = $obsClient->setBucketAcl([ 'Bucket' => 'bucketname', // Set the bucket owner. 'Owner' => [ 'ID' => 'ownerid' ], 'Grants' => [ // Grant all permissions to a specified user. ['Grantee' => ['Type' => 'CanonicalUser', 'ID' => 'userid'], 'Permission' => ObsClient::PermissionFullControl], // Grant the READ permission to all users. ['Grantee' => ['Type' => 'Group', 'URI' => ObsClient::GroupAllUsers], 'Permission' => ObsClient::PermissionRead], ] ]); printf("RequestId:%s\n",$resp['RequestId']);
- Use the Owner parameter to specify the bucket owner and the Grants parameter to specify the information about authorized users.
- The owner or grantee ID needed in the ACL indicates the account ID, which can be viewed on the My Credentials page of OBS Console.
- OBS buckets support the following grantee group:
- All users: ObsClient::GroupAllUsers
Obtaining a Bucket ACL
You can call ObsClient->getBucketAcl to obtain the bucket ACL. Sample code is as follows:
// Import the dependency library. require 'vendor/autoload.php'; // Import the SDK code library during the installation with source code. // require 'obs-autoloader.php'; // Declare the namespace. use Obs\ObsClient; // Create an ObsClient instance. $obsClient = new ObsClient ( [ //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage. //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html. 'key' => getenv('ACCESS_KEY_ID'), 'secret' => getenv('SECRET_ACCESS_KEY'), 'endpoint' => 'https://your-endpoint' ] ); $resp = $obsClient->getBucketAcl([ 'Bucket' => 'bucketname' ]); printf ("RequestId:%s\n", $resp ['RequestId']); printf ("Owner[ID]:%s\n", $resp ['Owner']['ID']); foreach ( $resp ['Grants'] as $index => $grant ) { printf ("Grants[%d]\n", $index + 1); printf ("Grantee[ID]:%s\n", $grant['Grantee']['ID']); printf ("Grantee[URI]:%s\n", $grant['Grantee']['URI']); printf ("Permission:%s\n", $grant['Permission']); }
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot