import * as $dara from '@darabonba/typescript'; export declare class ScaleClusterNodePoolRequest extends $dara.Model { /** * @remarks * The number of nodes to add. For example, if the node pool currently has 2 nodes and you add 2 more, the node pool will have 4 nodes. Due to the node quota limit of the current cluster, you can add up to 500 nodes in a single operation. * * @example * 2 */ count?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }