import * as $dara from '@darabonba/typescript'; export declare class ListLiveSnapshotJobsResponseBodyJobListSnapshotOutput extends $dara.Model { /** * @remarks * The name of the OSS Bucket. * * @example * testbucket */ bucket?: string; /** * @remarks * The domain name of the OSS endpoint. * * @example * oss-cn-shanghai.aliyuncs.com */ endpoint?: string; /** * @remarks * The storage type. Only Object Storage Service (OSS) is supported. * * @example * oss */ storageType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListLiveSnapshotJobsResponseBodyJobList extends $dara.Model { /** * @remarks * The creation time of the job. * * @example * 2022-07-20T02:48:58Z */ createTime?: string; /** * @remarks * The job ID. * * @example * ****a046-263c-3560-978a-fb287782**** */ jobId?: string; /** * @remarks * The job name. * * @example * Screenshot task1 */ jobName?: string; /** * @remarks * Details of the snapshot output. */ snapshotOutput?: ListLiveSnapshotJobsResponseBodyJobListSnapshotOutput; /** * @remarks * The job status. * * @example * started */ status?: string; /** * @remarks * The template ID. * * @example * ****a046-263c-3560-978a-fb287666**** */ templateId?: string; /** * @remarks * The template name. * * @example * Template 1 */ templateName?: string; /** * @remarks * The interval between snapshots, in seconds. * * @example * 5 */ timeInterval?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListLiveSnapshotJobsResponseBody extends $dara.Model { /** * @remarks * The list of jobs. */ jobList?: ListLiveSnapshotJobsResponseBodyJobList[]; /** * @remarks * The page number. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of jobs to return per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The sort order for the job list. For example, "desc" indicates descending order. * * @example * desc */ sortBy?: string; /** * @remarks * The total number of jobs found. * * @example * 100 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }