FDS Restful API
Add/Delete bucket acl related api supported by FDS
Version: 1.0.0
/{bucketname}
PUT
Summary: change Bucket's ACL
Description: must be the owner of the bucket
Parameters
Name | Located in | Description | Required | Schema |
---|---|---|---|---|
bucketname | path | Bucket name | Yes | string |
authorization | header | authentication info,The calculation method is referred to the relevant document of signature verification | Yes | string |
Date | header | request time | Yes | string |
acl | query | indicate this request is for Bucket's ACL operation, value is void | Yes | string |
action | query | Operation executed, if it's delete ,indicate deleting ACL, default is adding ACL |
No | string |
body | body | ACL info that needs to be changed | Yes | AccessControlPolicy |
Responses
Code | Description |
---|---|
200 | request successfully |
Models
Name | Type | Description | Required |
---|---|---|---|
owner | OwnerBean | No | |
accessControlList | [ GrantBean ] | No |
Name | Type | Description | Required |
---|---|---|---|
grantee | GranteeBean | No | |
permission | string | permission description, including READ , WRITE , READ_OBJECTS , FULL_CONTROL , SSO_WRITE |
No |
type | string | Type of authorization object, including USER , GROUP |
No |
Name | Type | Description | Required |
---|---|---|---|
id | string | user ID | No |
Name | Type | Description | Required |
---|---|---|---|
id | string | owner ID | No |
displayName | string | owner name | No |
command line examples
# authorize demo-user to read all fds-demo Bucket's buckets
curl -v -X 'PUT' 'http://cnbj0.fds.api.xiaomi.com/fds-demo?acl' \
> -H 'content-type: application/json; charset=UTF-8' \
> -H 'authorization: Galaxy-V2 541xxxx45:64xxxE=' \
> -H 'date: Thu, 23 Feb 2017 10:47:34 GMT' \
> -d '{"owner":{"id":"541xxxx45"},"accessControlList":[{"grantee":{"id":"demo-user"},"permission":"READ_OBJECTS","type":"USER"}]}'
* Hostname was NOT found in DNS cache
* Trying 111.206.200.99...
* Connected to cnbj0.fds.api.xiaomi.com (111.206.200.99) port 80 (#0)
> PUT /fds-demo?acl HTTP/1.1
> User-Agent: curl/7.35.0
> Host: cnbj0.fds.api.xiaomi.com
> Accept: */*
> content-type: application/json; charset=UTF-8
> authorization: Galaxy-V2 541xxxx45:64xxxE=
> date: Thu, 23 Feb 2017 10:47:34 GMT
> Content-Length: 123
>
* upload completely sent off: 123 out of 123 bytes
< HTTP/1.1 200 OK
* Server Tengine is not blacklisted
< Server: Tengine
< Date: Thu, 23 Feb 2017 10:48:18 GMT
< Content-Length: 0
< Connection: keep-alive
< Access-Control-Allow-Credentials: true
< Access-Control-Max-Age: 1728000
< Access-Control-Allow-Methods: GET, POST, PUT, HEAD, DELETE, OPTIONS
< Access-Control-Allow-Headers: DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization,Content-MD5
< Access-Control-Expose-Headers: content-md5, upload-time, x-xiaomi-meta-content-length
<
* Connection #0 to host cnbj0.fds.api.xiaomi.com left intact
# delete the ACL that added earlier
curl -v -X 'PUT' 'http://cnbj0.fds.api.xiaomi.com/fds-demo?acl&action=delete' \
> -H 'content-type: application/json; charset=UTF-8' \
> -H 'authorization: Galaxy-V2 541xxxx45:E8AxxxxzT0=' \
> -H 'date: Thu, 23 Feb 2017 11:13:34 GMT' \
> -d '{"owner":{"id":"541xxxx45"},"accessControlList":[{"grantee":{"id":"demo-user"},"permission":"READ_OBJECTS","type":"USER"}]}'
* Hostname was NOT found in DNS cache
* Trying 111.206.200.99...
* Connected to cnbj0.fds.api.xiaomi.com (111.206.200.99) port 80 (#0)
> PUT /fds-demo?acl&action=delete HTTP/1.1
> User-Agent: curl/7.35.0
> Host: cnbj0.fds.api.xiaomi.com
> Accept: */*
> content-type: application/json; charset=UTF-8
> authorization: Galaxy-V2 541xxxx45:E8AxxxxzT0=
> date: Thu, 23 Feb 2017 11:13:34 GMT
> Content-Length: 123
>
* upload completely sent off: 123 out of 123 bytes
< HTTP/1.1 200 OK
* Server Tengine is not blacklisted
< Server: Tengine
< Date: Thu, 23 Feb 2017 11:14:15 GMT
< Content-Length: 0
< Connection: keep-alive
< Access-Control-Allow-Credentials: true
< Access-Control-Max-Age: 1728000
< Access-Control-Allow-Methods: GET, POST, PUT, HEAD, DELETE, OPTIONS
< Access-Control-Allow-Headers: DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization,Content-MD5
< Access-Control-Expose-Headers: content-md5, upload-time, x-xiaomi-meta-content-length
<
* Connection #0 to host cnbj0.fds.api.xiaomi.com left intact