Configuring a Bucket Policy
Functions
This operation creates or modifies policies for buckets. The existing policy in a bucket is overwritten by the policy in the request. You can add as many statements as you would like to a bucket. All these statements in JSON cannot exceed 20 KB.
To perform this operation, the user must be the bucket owner or the bucket owner's IAM user that has permissions required for configuring bucket policies.
Request Syntax
PUT /?policy HTTP/1.1Host: bucketname.obs.region.example.comDate: dateAuthorization: signatureValuePolicy written in JSON
Request Parameters
This request contains no message parameters.
Request Headers
This request uses common headers. For details, see Table 3.
Request Elements
The request body is a JSON string that contains the bucket policy information.
Response Syntax
HTTP/1.1 status_codeDate: dateContent-Length: length
Response Headers
The response to the request uses common headers. For details, see Table 1.
Response Elements
This response contains no elements.
Error Responses
No special error responses are returned. For details, see Table 2.
Sample Request 1
Grant permissions to an OBS tenant.
Grant permissions to the tenant whose ID is 783fc6652cf246c096ea836694f71855.
For details about how to obtain the tenant ID, see Obtaining a Domain ID and a User ID.
PUT /?policy HTTP/1.1Host: examplebucket.obs.region.example.comDate: WED, 01 Jul 2015 02:32:25 GMTAuthorization: OBS H4IPJX0TQTHTHEBQQCEC:jZiAT8Vx4azWEvPRMWi0X5BpJMA={"Statement": [{"Sid": "Stmt1375240018061","Action": ["GetBucketLogging"],"Effect": "Allow","Resource": "logging.bucket","Principal": {"ID": ["domain/783fc6652cf246c096ea836694f71855:user/*"]}}]}
Sample Response 1
HTTP/1.1 204 No Contentx-obs-request-id: 7B6DFC9BC71DD58B061285551605709x-obs-id-2: N0I2REZDOUJDNzFERDU4QjA2MTI4NTU1MTYwNTcwOUFBQUFBQUFBYmJiYmJiYmJDDate: WED, 01 Jul 2015 02:32:25 GMTContent-Length: 0Server: OBS
Sample Request 2
Grant permissions to an OBS user.
The user ID is 71f3901173514e6988115ea2c26d1999, and the account ID is 783fc6652cf246c096ea836694f71855.
For details about how to obtain the account ID and user ID, see Obtaining a Domain ID and a User ID.
PUT /?policy HTTP/1.1Host: examplebucket.obs.region.example.comDate: WED, 01 Jul 2015 02:33:28 GMTAuthorization: OBS H4IPJX0TQTHTHEBQQCEC:jZiAT8Vx4azWEvPRMWi0X5BpJMA={"Statement": [{"Sid": "Stmt1375240018062","Action": ["PutBucketLogging"],"Effect": "Allow","Resource": "examplebucket","Principal": {"ID": ["domain/783fc6652cf246c096ea836694f71855:user/71f3901173514e6988115ea2c26d1999"]}}]}
Sample Response 2
HTTP/1.1 204 No Contentx-obs-request-id: 7B6DFC9BC71DD58B061285551605709x-obs-id-2: N0I2REZDOUJDNzFERDU4QjA2MTI4NTU1MTYwNTcwOUFBQUFBQUFBYmJiYmJiYmJDDate: WED, 01 Jul 2015 02:33:28 GMTContent-Length: 0Server: OBS
Sample Request 3
Deny all users except the specified one all the operation permissions.
The user ID is 71f3901173514e6988115ea2c26d1999, and the account ID is 783fc6652cf246c096ea836694f71855.
For details about how to obtain the account ID and user ID, see Obtaining a Domain ID and a User ID.
PUT /?policy HTTP/1.1Host: examplebucket.obs.region.example.comDate: WED, 01 Jul 2015 02:34:34 GMTAuthorization: OBS H4IPJX0TQTHTHEBQQCEC:jZiAT8Vx4azWEvPRMWi0X5BpJMA={"Statement": [{"Effect": "Deny","Action": ["*"],"Resource": ["examplebucket/*","examplebucket"],"NotPrincipal": {"ID": ["domain/783fc6652cf246c096ea836694f71855:user/71f3901173514e6988115ea2c26d1999","domain/783fc6652cf246c096ea836694f71855"]}}]}
Sample Response 3
HTTP/1.1 204 No Contentx-obs-request-id: A603000001604A7DFE4A4AF31E301891x-obs-id-2: BKOvGmTlt6sda5X4G89PuMO4fabObGYmnpRGkaMba1LqPt0fCACEuCMllAObRK1nDate: WED, 01 Jul 2015 02:34:34 GMTContent-Length: 0Server: OBS
Sample Request 4
Request to allow only the specified domain name and external link requests that have no referer headers by using the URL validation whitelist.
URL validation whitelist: http://storage.example.com
PUT /?policy HTTP/1.1Host: examplebucket.obs.region.example.comDate: WED, 01 Jul 2015 02:34:34 GMTAuthorization: OBS H4IPJX0TQTHTHEBQQCEC:jZiAT8Vx4azWEvPRMWi0X5BpJMA={"Statement": [{"Effect": "Deny","Action": ["GetObject","GetObjectVersion"],"Principal": {"ID": ["*"]},"Resource": ["examplebucket/*"],"Condition": {"StringNotLike": {"Referer": ["http://storage.example.com*","${null}"]}}}]}
Sample Response 4
HTTP/1.1 204 No Contentx-obs-request-id: A603000001604A7DFE4A4AF31E301891x-obs-id-2: BKOvGmTlt6sda5X4G89PuMO4fabObGYmnpRGkaMba1LqPt0fCACEuCMllAObRK1nDate: WED, 01 Jul 2015 02:34:34 GMTContent-Length: 0Server: OBS
- Functions
- Request Syntax
- Request Parameters
- Request Headers
- Request Elements
- Response Syntax
- Response Headers
- Response Elements
- Error Responses
- Sample Request 1
- Sample Response 1
- Sample Request 2
- Sample Response 2
- Sample Request 3
- Sample Response 3
- Sample Request 4
- Sample Response 4