interface Quotum {
    description: string;
    limit?: number;
    limits: QuotumLimit[];
    localityType: LocalityType;
    name: string;
    prettyName: string;
    unit: string;
    unlimited?: boolean;
}

Properties

description: string

Details about the quota.

limit?: number

Maximum limit of the quota.

One-of ('value'): at most one of 'limit', 'unlimited' could be set.

limits: QuotumLimit[]

Limits per locality.

localityType: LocalityType

Whether this quotum is applied on at the zone level, region level, or globally.

name: string

Name of the quota.

prettyName: string

A human-readable name for the quota.

unit: string

The unit in which the quota is expressed.

unlimited?: boolean

Defines whether or not the quota is unlimited.

One-of ('value'): at most one of 'limit', 'unlimited' could be set.