import * as $dara from '@darabonba/typescript'; export declare class SearchIndexJobRerunRequest extends $dara.Model { /** * @remarks * The ID of the media asset. Separate multiple IDs with commas (,). * * This parameter is required. * * @example * ******b48fb04483915d4f2cd8******,******c48fb37407365d4f2cd8****** */ mediaIds?: string; /** * @remarks * Namespace. * * @example * name-1 */ namespace?: string; /** * @remarks * The search library. * * @example * test-1 */ searchLibName?: string; /** * @remarks * The type of the job. Separate multiple types with commas (,). * * - aiLabel: smart tagging. * * - face: face recognition. * * - mm: large visual model. * * @example * aiLabel,face,mm */ task?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }