import * as $dara from '@darabonba/typescript'; export declare class SubmitDNAJobShrinkRequest extends $dara.Model { /** * @remarks * The configurations of the media fingerprint analysis job. The value is a JSON object. If you specify this parameter, the template parameters are overwritten. * * @example * {"SaveType": "save","MediaType"":"video"} */ config?: string; /** * @remarks * The ID of the media fingerprint library. If you do not specify this parameter, the default media fingerprint library is used. For more information about how to create a media fingerprint library, see [CreateDNADB](https://help.aliyun.com/document_detail/479275.html). * * This parameter is required. * * @example * 2288c6ca184c0e47098a5b665e2a12**** */ DBId?: string; /** * @remarks * The input file for media fingerprint analysis. * * This parameter is required. */ inputShrink?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the ApsaraVideo Media Processing (MPS) queue to which the media fingerprint analysis job is submitted. * * @example * 5246b8d12a62433ab77845074039**** */ pipelineId?: string; /** * @remarks * The primary key of the video. You must make sure that each primary key is unique. * * This parameter is required. * * @example * 3ca84a39a9024f19853b21be9cf9**** */ primaryKey?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The template ID. * * @example * S00000101-100060 */ templateId?: string; /** * @remarks * The user-defined data. The data can be up to 128 bytes in length. * * @example * userData */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }