import * as $dara from '@darabonba/typescript'; export declare class GetClusterInspectConfigResponseBody extends $dara.Model { /** * @remarks * The list of disabled inspection items. */ disabledCheckItems?: string[]; /** * @remarks * Indicates whether inspection is enabled. * * @example * true */ enabled?: boolean; /** * @remarks * The inspection cycle 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 */ recurrence?: string; /** * @remarks * The request ID. * * @example * 49511F2D-D56A-5C24-B9AE-C8491E09B095 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }