import { ComputeQuota } from './ComputeQuota';
import { NetworkQuota } from './NetworkQuota';
import { VolumeQuota } from './VolumeQuota';
/** Quotas */
export interface AllowedQuota {
    /** Quotas for compute */
    compute: ComputeQuota;
    /** Name */
    name: string;
    /** Quotas for network */
    network: NetworkQuota;
    /** Quotas for volume */
    volume: VolumeQuota;
}
//# sourceMappingURL=AllowedQuota.d.ts.map