Get buckets total usages of a user
ceph-proj-0160 Get buckets total usages of a user
Path Parameters
- project_id integer required
Project ID
Query Parameters
- all boolean
Possible values: [
false
,true
]Get buckets utilization for all public and private keys
- key_name string
Get buckets utilization for the specific private key. If it is not specified and all is false, only the public buckets utilization will be returned
Header Parameters
- x-api-host string required
Default value:
ceph-taichung-default
Authentication Required Parameters
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
public object
key_name stringtotal_used_space integertotal_objects integerprivate object[]
key_name stringtotal_used_space integertotal_objects integer
{
"public": {
"key_name": "string",
"total_used_space": 0,
"total_objects": 0
},
"private": [
{
"key_name": "string",
"total_used_space": 0,
"total_objects": 0
}
]
}
Loading...