import * as $dara from '@darabonba/typescript'; export declare class SubmitLiveTranscodeJobRequestStreamInput extends $dara.Model { /** * @remarks * The URL of the input stream. * * This parameter is required. * * @example * rtmp://mydomain/app/stream1 */ inputUrl?: string; /** * @remarks * The type of the input stream. The value can only be rtmp. * * This parameter is required. * * @example * rtmp */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitLiveTranscodeJobRequestTimedConfig extends $dara.Model { /** * @remarks * The stop time of the transcoding job. Note: The time span between the stop time and the current time cannot exceed seven days. * * @example * 2022-07-20T08:20:32Z */ endTime?: string; /** * @remarks * The start time of the transcoding job. Note: The time span between the start time and the current time cannot exceed seven days. * * @example * 2022-02-21T00:00:00Z */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitLiveTranscodeJobRequestTranscodeOutput extends $dara.Model { /** * @remarks * The streaming domain name of ApsaraVideo Live. * * @example * mydomain */ domainName?: string; /** * @remarks * The type of the output stream. A value of LiveCenter indicates that the URL of the output stream is generated based on the domain name of ApsaraVideo Live. The value can only be LiveCenter. * * This parameter is required. * * @example * LiveCenter */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitLiveTranscodeJobRequest extends $dara.Model { /** * @remarks * The name of the transcoding job. * * This parameter is required. * * @example * task1 */ name?: string; /** * @remarks * The start mode of the transcoding job. * * * 0: The transcoding job immediately starts. * * 1: The transcoding job starts at the scheduled time. * * This parameter is required. * * @example * 0 */ startMode?: number; /** * @remarks * The information about the input stream. * * This parameter is required. */ streamInput?: SubmitLiveTranscodeJobRequestStreamInput; /** * @remarks * The template ID. * * This parameter is required. * * @example * ****96e8864746a0b6f3**** */ templateId?: string; /** * @remarks * The configuration of a timed transcoding job. This parameter is required if you set StartMode to 1. */ timedConfig?: SubmitLiveTranscodeJobRequestTimedConfig; /** * @remarks * The information about the transcoding output. * * This parameter is required. */ transcodeOutput?: SubmitLiveTranscodeJobRequestTranscodeOutput; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }