Query Quota Policies

Query Quota Policies

Get list of quota policies. Results can be filtered by id Returns all the quota policies which are available in the system.

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/quotaPolicies
COPY
Query Parameters
string
filter
Optional

Filter for a query. FIQL format.

string
sortAsc
Optional

Field to use for ascending sort

string
sortDesc
Optional

Field to use for descending sort

integer
page
Required

Page to fetch, zero offset.

integer
pageSize
Required

Results per page to fetch.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns QuotaPolicies of type(s) application/json;version=36.3
This response body class contains all of the following: Page , InlineQuotaPolicies1
{
    "resultTotal": 0,
    "pageCount": 0,
    "page": 0,
    "pageSize": 0,
    "associations": [
        {
            "entityId": "string",
            "associationId": "string"
        }
    ],
    "values": [
        {
            "id": "string",
            "description": "string",
            "name": "string",
            "orgId": "string",
            "quotaPoolDefinitions": [
                {
                    "quotaResourceName": "Running VMs quota is the user friendly name for resource type VM with qualifiers deployed == true. Consumed Memory quota is the user fiendly name for resource type memory.",
                    "resourceType": "string",
                    "quotaResourceUnit": "memory unit - MB, cpu unit - MHz, storage unit - MB",
                    "quota": 0,
                    "qualifiers": [
                        "string"
                    ]
                }
            ],
            "isAutoGenerated": false
        }
    ]
}