Package version:

Interface GroupQuotaUsagesBase

Resource details with usages and GroupQuota.

interface GroupQuotaUsagesBase {
    limit?: number;
    name?: GroupQuotaUsagesBaseName;
    unit?: string;
    usages?: number;
}

Properties

limit?: number

Quota/limits for the resource.

Name of the resource provided by the resource provider. This property is already included in the request URI, so it is a readonly property returned in the response.

unit?: string

Representing the units of the usage quota. Possible values are: Count, Bytes, Seconds, Percent, CountPerSecond, BytesPerSecond. Based on - https://armwiki.azurewebsites.net/api_contracts/UsagesAPIContract.html?q=usages . Different RPs may have different units, Count, type as int64 should work for most of the integer values.

usages?: number

Usages for the resource.