import * as $dara from '@darabonba/typescript'; export declare class CreatePipelineResponseBodyPipeline extends $dara.Model { /** * @remarks * The time when the template was created. * * @example * 2022-07-12T16:17:54Z */ createTime?: string; /** * @remarks * The time when the template was last modified. * * @example * 2022-07-12T16:17:54Z */ modifiedTime?: string; /** * @remarks * The name of the MPS queue. * * @example * test-pipeline */ name?: string; /** * @remarks * The ID of the MPS queue. * * @example * ****20b48fb04483915d4f2cd8ac**** */ pipelineId?: string; /** * @remarks * The priority of the MPS queue. * * @example * 6 */ priority?: number; /** * @remarks * The type of the MPS queue. * * Valid values: * * * Boost: MPS queue with transcoding speed boosted. * * Standard: standard MPS queue. * * NarrowBandHDV2: MPS queue that supports Narrowband HD 2.0. * * @example * Standard */ speed?: string; /** * @remarks * The state of the MPS queue. * * Valid values: * * * Active * * Paused * * @example * Active */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreatePipelineResponseBody extends $dara.Model { /** * @remarks * The information about the MPS queue. */ pipeline?: CreatePipelineResponseBodyPipeline; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }