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 GetMediaConvertJobResponseBodyJobConfig extends $dara.Model { /** * @remarks * The inputs of the transcoding task. */ inputs?: MediaConvertInput[]; 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 GetMediaConvertJobResponseBodyJob extends $dara.Model { /** * @remarks * The idempotency key of the request for creating the transcoding task. * * @example * 780018cb-55ba-466d-8acc-946c0c319a0e */ clientToken?: string; /** * @remarks * The error code returned when the transcoding task failed. * * @example * InvalidParameter.ResourceContentBad */ code?: string; /** * @remarks * The configurations of the transcoding task. */ config?: GetMediaConvertJobResponseBodyJobConfig; createTime?: string; finishTime?: string; /** * @remarks * The ID of the transcoding task, which is a 32-bit string. * * @example * ******4579b5e748b99a27f6d6****** */ jobId?: string; /** * @remarks * The error message returned when the transcoding task failed. * * @example * The resource operated InputFile is bad */ message?: string; /** * @remarks * The details of the transcoded outputs, each corresponding to an output configuration. */ outputDetails?: MediaConvertOutputDetail[]; /** * @remarks * The details of the output groups, each corresponding to an output group configuration. */ outputGroupDetails?: MediaConvertOutputGroupDetail[]; percent?: number; /** * @remarks * The ID of the queue. * * @example * 83500cb2a3b94fabb0956e38d64bd16d */ pipelineId?: string; /** * @remarks * The ID of the request for creating the transcoding task. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The status of the transcoding task. Valid values: * * * Inited: The task is initialized. * * Running * * Success * * Failed * * Cancelled * * @example * Success */ state?: string; /** * @remarks * The user data. * * @example * {"videoId":"ddd333"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetMediaConvertJobResponseBody extends $dara.Model { /** * @remarks * The transcoding task. */ job?: GetMediaConvertJobResponseBodyJob; /** * @remarks * The ID of the request. * * @example * 4BAEA8E8-1C16-5CD3-AC50-CCBA81A53402 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }