// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateClusterAuditLogConfigResponseBody extends $dara.Model { /** * @remarks * The cluster ID. * * @example * c93095129fc41463aa455d89444fd**** */ clusterId?: string; /** * @remarks * The request ID. * * @example * 48BD70F6-A7E6-543D-9F23-08DEB764**** */ requestId?: string; /** * @remarks * The task ID. * * @example * T-5faa48fb31b6b8078d00**** */ taskId?: string; static names(): { [key: string]: string } { return { clusterId: 'cluster_id', requestId: 'request_id', taskId: 'task_id', }; } static types(): { [key: string]: any } { return { clusterId: 'string', requestId: 'string', taskId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }