import * as $dara from '@darabonba/typescript'; export declare class RunClusterCheckRequest extends $dara.Model { /** * @remarks * The check options. */ options?: { [key: string]: string; }; /** * @remarks * The check target. * * If the type parameter is set to NodePoolUpgrade, this parameter must be set to the node pool ID. * * If other check types are selected, this parameter does not need to be set. * * @example * np1f6779297c4444a3a1cdd29be8****** */ target?: string; /** * @remarks * The check type. * * This parameter is required. * * @example * NodePoolUpgrade */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }