Set Bucket storagePolicy
API Description
You can use this API to set storage classes for buckets. The storage class of an object defaults to be that of its residing bucket.
Method Definition
1. ObsClient->setBucketStoragePolicy(array $parameter) 2. ObsClient->setBucketStoragePolicyAsync(array $parameter, callable $callback)
Request Parameter
Field |
Type |
Optional or Mandatory |
Description |
---|---|---|---|
Bucket |
string |
Mandatory |
Bucket name |
StorageClass |
string |
Mandatory |
Storage class of the bucket |
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 -> setBucketStoragePolicy([ 'Bucket' => 'bucketname', 'StorageClass' => ObsClient::StorageClassWarm ]); printf("RequestId:%s\n", $resp['RequestId']); }catch (Obs\Common\ObsException $obsException){ printf("ExceptionCode:%s\n", $obsException->getExceptionCode()); printf("ExceptionMessage:%s\n", $obsException->getExceptionMessage()); }
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