Querying Central Network Resource Quotas
Function
This API is used to query the resource quotas.
URI
GET /v3/{domain_id}/gcn/quotas
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
domain_id |
Yes |
String |
Account ID. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
quota_type |
No |
Array of arrays |
Quota type. Multiple quota types can be queried. |
limit |
No |
Integer |
Number of records returned on each page. Value range: 1-1000 |
marker |
No |
String |
Pagination query information. You can obtain the marker values from the response of the last API call. You can enter the marker value of the previous page or the next page. If you enter the marker value of the previous page, the previous page will be queried. If you enter the marker value of the next page, the next page will be queried. During pagination query, the query criteria, including the filters, sorting criteria, and the limit value, cannot be modified. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
No |
String |
User token. |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
request_id |
String |
Request ID. |
quotas |
Array of CentralNetworkQuota objects |
Quota list. |
Parameter |
Type |
Description |
---|---|---|
quota_key |
String |
Quota type of a central network.
|
quota_limit |
Integer |
Quotas. |
used |
Integer |
Used quotas. |
unit |
String |
Unit of the quota value. |
Example Requests
Querying resource quotas
GET https://{cc_endpoint}/v3/{domain_id}/gcn/quotas
Example Responses
Status code: 200
The central network resource quotas have been queried.
{ "request_id" : "a3bad420-33b8-4e26-9e9b-bdf67aa8e72b", "quotas" : [ { "quota_key" : "central_networks_per_account", "quota_limit" : 6, "used" : 0, "unit" : "count" } ] }
Status Codes
Status Code |
Description |
---|---|
200 |
The central network resource quotas have been queried. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.