This extension API is used to query the quota of private images of a tenant in the current region.
GET /v1/cloudimages/quota
Parameter |
Type |
Description |
---|---|---|
quotas |
Object |
Specifies the quota information. For details, see Table 1. |
Parameter |
Type |
Description |
---|---|---|
resources |
Array of objects |
Specifies the images included in the quota. For details, see Table 2. |
Parameter |
Type |
Description |
---|---|---|
type |
String |
Specifies the type of the resource to be queried. |
used |
Integer |
Specifies the used quota. |
quota |
Integer |
Specifies the total quota. |
min |
Integer |
Specifies the minimum quota. |
max |
Integer |
Specifies the maximum quota. |
STATUS CODE 200
1 2 3 4 5 6 7 8 9 10 11 12 13 | { "quotas": { "resources": [ { "type": "image", "used": 0, "quota": 20, "min": 1, "max": 1000 } ] } } |
Returned Value |
Description |
---|---|
400 Bad Request |
Request error. For details, see Error Codes. |
401 Unauthorized |
Authentication failed. |
403 Forbidden |
You do not have the rights to perform the operation. |
404 Not Found |
The requested resource was not found. |
500 Internal Server Error |
Internal service error. |
503 Service Unavailable |
The service is unavailable. |