Querying Quotas¶
Function¶
This API is used to query a resource quota and the used amount. The current resource refers to alarm rules only.
URI¶
GET /V1.0/{project_id}/quotas
Parameter description
¶ Parameter
Mandatory
Description
project_id
Yes
Specifies the project ID.
For details about how to obtain the project ID, see Obtaining a Project ID.
Example: Query the alarm rule quota.
GET https://{Cloud Eye endpoint}/V1.0/{project_id}/quotas
Request¶
None
Response¶
Response parameters
¶ Parameter
Type
Description
resources
Array of objects
Specifies the resource quota list.
For details, see Table 4.
¶ Parameter
Type
Description
type
String
Specifies the quota type.
alarm indicates the alarm rule.
used
Integer
Specifies the used amount of the quota.
unit
String
Specifies the quota unit.
quota
Integer
Specifies the total amount of the quota.
Example response
{ "quotas": { "resources": [ { "unit":"", "type":"alarm", "quota":1000, "used":10 } ] } }
Returned Values¶
Normal
200
Abnormal
Returned Value
Description
400 Bad Request
Request error.
401 Unauthorized
The authentication information is not provided or is incorrect.
403 Forbidden
Access to the requested page is forbidden.
408 Request Timeout
The request timed out.
429 Too Many Requests
Concurrent requests are excessive.
500 Internal Server Error
Failed to complete the request because of an internal service error.
503 Service Unavailable
The service is currently unavailable.
Error Codes¶
See Error Codes.