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