Updates the quota for the specified bucket. The payload specifies a limit at which a notification will be raised in the event log and a limit at which access will be blocked.
Both notification and block values must be supplied. If you do not want to define one of them, you can set its value to -1. You cannot set both values to -1 using this API. To set both notification and block values to -1, use the delete quota API.
bucketName | Name of the bucket for which the quota is to be updated. |
Requires one of the following roles:
SYSTEM_ADMIN
NAMESPACE_ADMIN
The following conditions must be met in order to call this operation.
Bucket must exist.
All parameters are required unless otherwise stated.
Field | Description | Type | Notes |
bucket_quota_param | |||
blockSize | Block size in GB. Cannot be less than 1GB or use decimal values. Can be set to -1 to indicate quota value not defined. | Long | |
notificationSize | Notification size in GB. Cannot be less than 1GB or use decimal values. Can be set to -1 to indicate quota value not defined. | Long | |
namespace | Namespace to which this bucket belongs | String |
Response indicating Success or Failure of the operation
PUT https://192.168.0.0:4443/object/bucket/standalone-bucket/quota: HTTP/1.1 Content-Type: application/xml X-SDS-AUTH-TOKEN: <AUTH_TOKEN> <bucket_quota_param> <blockSize>1</blockSize> <notificationSize>2</notificationSize> <namespace>s3</namespace> </bucket_quota_param>
HTTP/1.1 200 OK Content-Type: application/xml