import * as $dara from '@darabonba/typescript'; export declare class QuotasValue extends $dara.Model { /** * @remarks * The quota value. To request a quota increase beyond the current value, submit a request on the [Quota Center](https://quotas.console.aliyun.com/products/csk/quotas) page. * * @example * 1 */ quota?: string; /** * @remarks * The quota code. * * @example * q_Kubernetes_Cluster */ operationCode?: string; /** * @remarks * Indicates whether the quota is adjustable. * * @example * true */ adjustable?: boolean; /** * @remarks * The unit. * * @example * Cluster */ unit?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }