import * as $dara from '@darabonba/typescript'; export declare class SubmitLiveRecordJobRequestRecordOutput extends $dara.Model { /** * @remarks * The bucket name. * * @example * imsbucket1 */ bucket?: string; /** * @remarks * The endpoint of the storage service. * * @example * oss-cn-hangzhou.aliyuncs.com */ endpoint?: string; /** * @remarks * The type of the storage address. * * This parameter is required. * * @example * oss */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitLiveRecordJobRequestStreamInput extends $dara.Model { /** * @remarks * The type of the live stream URL. The value can only be rtmp. * * This parameter is required. * * @example * rtmp */ type?: string; /** * @remarks * The URL of the live stream. * * @example * rtmp://example.com/live/stream1 */ url?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitLiveRecordJobRequest extends $dara.Model { /** * @remarks * The name of the recording job. * * This parameter is required. * * @example * live stream record 1 */ name?: string; /** * @remarks * The callback URL. * * @example * https://example.com/imsnotify */ notifyUrl?: string; /** * @remarks * The storage address of the recording. * * This parameter is required. */ recordOutput?: SubmitLiveRecordJobRequestRecordOutput; /** * @remarks * The URL of the live stream. * * This parameter is required. */ streamInput?: SubmitLiveRecordJobRequestStreamInput; /** * @remarks * The ID of the recording template. * * This parameter is required. * * @example * 69e1f9fe-1e97-11ed-ba64-0c42a1b73d66 */ templateId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }