import * as $dara from '@darabonba/typescript'; export declare class GetLiveSnapshotJobResponseBodySnapshotOutput extends $dara.Model { /** * @remarks * The bucket of the output endpoint. If the storage type is set to oss, the OSS bucket is returned. * * @example * testbucket */ bucket?: string; /** * @remarks * The output endpoint. If the storage type is set to oss, the Object Storage Service (OSS) domain name is returned. * * @example * oss-cn-shanghai.aliyuncs.com */ endpoint?: string; /** * @remarks * The storage type. The value can only be oss. * * @example * oss */ storageType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetLiveSnapshotJobResponseBodyStreamInput extends $dara.Model { /** * @remarks * The type of the input stream. The value can only be rtmp. * * @example * rtmp */ type?: string; /** * @remarks * The URL of the input stream. * * @example * rtmp://www.aliyun.com/stream */ url?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetLiveSnapshotJobResponseBody extends $dara.Model { /** * @remarks * The snapshot callback URL. * * @example * http://www.aliyun.com/snapshot/callback */ callbackUrl?: string; /** * @remarks * The time when the file was created. * * @example * 2022-02-02T22:22:22Z */ createTime?: string; /** * @remarks * The job ID. * * @example * ****a046-263c-3560-978a-fb287782**** */ jobId?: string; /** * @remarks * The name of the job. */ jobName?: string; /** * @remarks * The time when the file was last modified. * * @example * 2022-02-02T22:22:22Z */ lastModified?: string; /** * @remarks * The naming format of the snapshot captured in overwrite mode. * * @example * snapshot/{JobId}.jpg */ overwriteFormat?: string; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The naming format of the snapshot captured in time series mode. * * @example * snapshot/{JobId}/{UnixTimestamp}.jpg */ sequenceFormat?: string; /** * @remarks * The output information. */ snapshotOutput?: GetLiveSnapshotJobResponseBodySnapshotOutput; /** * @remarks * The state of the job. * * Valid values: * * * init: The job is not started. * * paused: The job is paused. * * started: The job is in progress. * * @example * started */ status?: string; /** * @remarks * The input information. */ streamInput?: GetLiveSnapshotJobResponseBodyStreamInput; /** * @remarks * The template ID. * * @example * ****a046-263c-3560-978a-fb287666**** */ templateId?: string; /** * @remarks * The name of the template. */ templateName?: string; /** * @remarks * The interval between two adjacent snapshots. * * @example * 5 */ timeInterval?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }