Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: guoyanyan <guoyanyan3@huawei.com> Co-committed-by: guoyanyan <guoyanyan3@huawei.com>
10 KiB
Querying the DeH Quota of a Tenant
Function
This API is used to query the DeH quota of a tenant.
URI
GET /v1.0/{project_id}/quota-sets/{tenant_id}
Table 1 describes the parameters.
Parameter |
Type |
Mandatory |
Description |
---|---|---|---|
project_id |
String |
Yes |
Specifies the project ID. For details about how to obtain the project ID, see Obtaining Required Information. |
tenant_id |
String |
Yes |
Specifies the tenant ID. You can obtain the DeH ID from the DeH console or using the Querying DeHs API. |
Request
- Request parameters
You can add the resource parameter to the URI. For example:
/v1.0/{project_id}/quota-sets/{tenant_id}?resource={resource}
Table 2 Request parameters Parameter
In
Type
Mandatory
Description
resource
query
String
No
Specifies the resource type.
- Example request
GET https://{Endpoint}/v1.0/9c53a566cb3443ab910cf0daebca90c4/quota-sets/45df5566cb3443ab910cf0daebcapoi8
Response
- Response parameters
Table 3 Response parameters Parameter
Type
Description
quota_set
Array of objects
Specifies the quota set of a DeH.
resource
String
Specifies the resource type.
hard_limit
Integer
Specifies the quota limit.
-1 indicates that the resource quota is not limited.
used
Integer
Specifies the used amount of the quota.
- Example response
{ "quota_set": [ { "resource": "c1", "hard_limit": 5, "used": 2 }, { "resource": "m1", "hard_limit": 5, "used": 0 }, { "resource": "h1", "hard_limit": 5, "used": 2 }, { "resource": "d1", "hard_limit": 5, "used": 2 } ] }
Status Code
See Status Codes.