FDS Restful API
Get bucket acl related api supported by FDS
Version: 1.0.0
/{bucketname}
GET
Summary:
获取Bucket的ACL列表
Description:
必须有Bucket的READ
权限才能执行该操作
Parameters
Name |
Located in |
Description |
Required |
Schema |
bucketname |
path |
Bucket名字 |
Yes |
string |
authorization |
header |
认证信息,计算方式参考签名认证相关文档 |
Yes |
string |
Date |
header |
请求时间 |
Yes |
string |
acl |
query |
表示该请求获取Bucket的ACL,值为空 |
Yes |
string |
Responses
Models
AccessControlPolicy
GrantBean
Name |
Type |
Description |
Required |
grantee |
GranteeBean |
|
No |
permission |
string |
权限描述,包括READ , WRITE , READ_OBJECTS , FULL_CONTROL , SSO_WRITE |
No |
type |
string |
授权对象类型,包括USER , GROUP |
No |
GranteeBean
Name |
Type |
Description |
Required |
id |
string |
用户ID |
No |
OwnerBean
Name |
Type |
Description |
Required |
id |
string |
所有者ID |
No |
displayName |
string |
所有者名称 |
No |
命令行示例
curl -v -X 'GET' 'http://cnbj0.fds.api.xiaomi.com/fds-demo?acl' \
> -H 'authorization: Galaxy-V2 54xxx45:dalxxxc4=' \
> -H 'date: Thu, 23 Feb 2017 04:11:56 GMT'
* 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)
> GET /fds-demo?acl HTTP/1.1
> User-Agent: curl/7.35.0
> Host: cnbj0.fds.api.xiaomi.com
> Accept: */*
> authorization: Galaxy-V2 54xxx45:dalxxxc4=
> date: Thu, 23 Feb 2017 04:11:56 GMT
>
< HTTP/1.1 200 OK
* Server Tengine is not blacklisted
< Server: Tengine
< Date: Thu, 23 Feb 2017 04:12:39 GMT
< Content-Type: application/json
< Content-Length: 353
< 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
{"accessControlList":[{"grantee":{"id":"28xxx57"},"permission":"FULL_CONTROL","type":"USER"},{"grantee":{"id":"11xxx2"},"permission":"FULL_CONTROL","type":"USER"},{"grantee":{"id":"180835"},"permission":"FULL_CONTROL","type":"USER"},{"grantee":{"id":"2882303761517436430"},"permission":"FULL_CONTROL","type":"USER"}],"owner":{"id":"18xxx5"}}