import * as $dara from '@darabonba/typescript'; export declare class CreateClusterInspectConfigRequest extends $dara.Model { /** * @remarks * The list of disabled inspection items. */ disabledCheckItems?: string[]; /** * @remarks * Specifies whether to enable inspection. * * This parameter is required. * * @example * true */ enabled?: boolean; /** * @remarks * The inspection cycle defined using RFC 5545 Recurrence Rule syntax. You must specify BYHOUR and BYMINUTE. Only FREQ=DAILY is supported. COUNT and UNTIL are not supported. * * This parameter is required. * * @example * FREQ=DAILY;BYHOUR=10;BYMINUTE=15 */ recurrence?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }