Reviewed-by: Hajba, László Antal <laszlo-antal.hajba@t-systems.com> Co-authored-by: fanqinying <fanqinying@huawei.com> Co-committed-by: fanqinying <fanqinying@huawei.com>
19 KiB
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 strings |
Quota type. Multiple quota types can be queried. |
limit |
No |
Integer |
Number of records returned on each page. The value ranges from 1 to 2000. |
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. |
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"
}, {
"quota_key" : "policy_versions_per_central_network",
"quota_limit" : 500,
"unit" : "count"
}, {
"quota_key" : "er_instances_per_region_per_central_network",
"quota_limit" : 1,
"unit" : "count"
}, {
"quota_key" : "connections_per_central_network",
"quota_limit" : -1,
"unit" : "count"
}, {
"quota_key" : "GDGW_attachments_per_region_per_central_network",
"quota_limit" : 3,
"unit" : "count"
}, {
"quota_key" : "ER_ROUTE_TABLE_attachments_per_region_per_central_network",
"quota_limit" : 3,
"unit" : "count"
}, {
"quota_key" : "attachments_per_central_network",
"quota_limit" : -1,
"unit" : "count"
}, {
"quota_key" : "size_of_document_per_central_network_policy_version",
"quota_limit" : 10240,
"unit" : "KB"
} ]
}
Status Codes
Status Code |
Description |
|---|---|
200 |
The central network resource quotas have been queried. |
Error Codes
See Error Codes.