/** Quotas for compute */
export interface ComputeQuota {
    /** Maximum total cores allowed in your project */
    cores: number;
    /** Maximum number of instances allowed in your project */
    instances: number;
    /** Maximum total ram allowed in your project */
    ram: number;
}
//# sourceMappingURL=ComputeQuota.d.ts.map