import * as $dara from '@darabonba/typescript'; import { MediaConvertOutputDetail } from "./MediaConvertOutputDetail"; import { MediaConvertOutputGroupDetail } from "./MediaConvertOutputGroupDetail"; import { MediaConvertInput } from "./MediaConvertInput"; import { MediaConvertOutputGroup } from "./MediaConvertOutputGroup"; import { MediaConvertOutput } from "./MediaConvertOutput"; export declare class SubmitMediaConvertJobResponseBodyJobConfig extends $dara.Model { /** * @remarks * The inputs of the transcoding task. */ inputs?: MediaConvertInput[]; /** * @remarks * The name of the job. * * @example * insx6-1310 */ jobName?: string; /** * @remarks * The output group configurations. */ outputGroups?: MediaConvertOutputGroup[]; /** * @remarks * The output configurations. */ outputs?: MediaConvertOutput[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitMediaConvertJobResponseBodyJob extends $dara.Model { /** * @remarks * The idempotency key of the request for creating the transcoding task. * * @example * FB7F25E9-AD9B-1603-8AF6-F1E42DF2E706 */ clientToken?: string; /** * @remarks * The error code returned when the transcoding task failed. * * @example * 200 */ code?: string; /** * @remarks * The configurations of the transcoding task. */ config?: SubmitMediaConvertJobResponseBodyJobConfig; /** * @remarks * The ID of the transcoding task. * * @example * ****20b48fb04483915d4f2cd8ac**** */ jobId?: string; /** * @remarks * The error message returned when the transcoding task failed. * * @example * ok */ message?: string; /** * @remarks * The details of the transcoded outputs. */ outputDetails?: MediaConvertOutputDetail[]; /** * @remarks * The details of the output groups. */ outputGroupDetails?: MediaConvertOutputGroupDetail[]; /** * @remarks * The ID of the queue. * * @example * 3780049 */ pipelineId?: string; /** * @remarks * The ID of the request. * * @example * A2129C9F-CE95-58B5-B8C1-07758FF6C86F */ requestId?: string; /** * @remarks * The status of the transcoding task. Valid values: * * * Inited: The task is initialized. * * Running * * Complete * * Error * * Cancelled * * @example * Inited */ state?: string; /** * @remarks * The user data. * * @example * {"videoId":"abcd"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitMediaConvertJobResponseBody extends $dara.Model { /** * @remarks * The transcoding task. */ job?: SubmitMediaConvertJobResponseBodyJob; /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }