import * as $dara from '@darabonba/typescript'; export declare class GetClusterAuditProjectResponseBody extends $dara.Model { /** * @remarks * Indicates whether the API server audit feature is enabled for the cluster. Valid values: * * - `true`: Enabled. * * - `false`: Not enabled. * * @example * true */ auditEnabled?: boolean; /** * @remarks * The SLS project that stores the API server audit logs of the cluster. * * @example * k8s-log-cad1230511cbb4db4a488e58518****** */ slsProjectName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }