import * as $dara from '@darabonba/typescript'; export declare class CreatePipelineRequest extends $dara.Model { /** * @remarks * The name of the MPS queue. * * This parameter is required. * * @example * test-pipeline */ name?: string; /** * @remarks * The priority. Default value: 6. Valid values: 1 to 10. A greater value specifies a higher priority. * * @example * 6 */ priority?: number; /** * @remarks * The type of the MPS queue. Valid values: * * 1. Standard: standard MPS queue. * 2. Boost: MPS queue with transcoding speed boosted. * 3. NarrowBandHDV2: MPS queue that supports Narrowband HD 2.0. * * This parameter is required. * * @example * Standard */ speed?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }