interface QuotumLimit {
    global?: boolean;
    limit?: number;
    region?: Region;
    unlimited?: boolean;
    zone?: Zone;
}

Properties

global?: boolean

Whether or not the limit is applied globally.

One-of ('locality'): at most one of 'global', 'region', 'zone' could be set.

limit?: number

Maximum locality limit.

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

region?: Region

The region on which the limit is applied.

One-of ('locality'): at most one of 'global', 'region', 'zone' could be set.

unlimited?: boolean

Whether or not the quota per locality is unlimited.

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

zone?: Zone

The zone on which the limit is applied.

One-of ('locality'): at most one of 'global', 'region', 'zone' could be set.