import * as $dara from '@darabonba/typescript'; import { QuotasValue } from "./QuotasValue"; export declare class DescribeUserQuotaResponseBodyEdgeImprovedNodepoolQuota extends $dara.Model { bandwidth?: number; count?: number; period?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeUserQuotaResponseBody extends $dara.Model { /** * @remarks * The quota for managed clusters. Default value: 20. To request a quota increase beyond the default value, [submit a request on the Quota Center page](https://quotas.console.aliyun.com/products/csk/quotas). * * @example * 20 */ amkClusterQuota?: number; /** * @remarks * The quota for ASK clusters. Default value: 20. To request a quota increase beyond the default value, [submit a request on the Quota Center page](https://quotas.console.aliyun.com/products/csk/quotas). * * @example * 3 */ askClusterQuota?: number; /** * @remarks * The node pool quota per cluster. Default value: 20. To request a quota increase beyond the default value, [submit a request on the Quota Center page](https://quotas.console.aliyun.com/products/csk/quotas). * * @example * 10 */ clusterNodepoolQuota?: number; /** * @remarks * The total cluster quota per account. Default value: 50. To request a quota increase beyond the default value, [submit a request on the Quota Center page](https://quotas.console.aliyun.com/products/csk/quotas). * * @example * 50 */ clusterQuota?: number; edgeImprovedNodepoolQuota?: DescribeUserQuotaResponseBodyEdgeImprovedNodepoolQuota; /** * @remarks * The node quota per cluster. Default value: 100. To request a quota increase beyond the default value, [submit a request on the Quota Center page](https://quotas.console.aliyun.com/products/csk/quotas). * * @example * 100 */ nodeQuota?: number; /** * @remarks * The new quota items. If this field is returned, the values in this field take precedence. */ quotas?: { [key: string]: QuotasValue; }; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }