import * as $dara from '@darabonba/typescript'; export declare class UpdatePipelineRequest extends $dara.Model { /** * @remarks * The name of the MPS queue. * * @example * test-pipeline */ name?: string; /** * @remarks * The ID of the MPS queue. * * This parameter is required. * * @example * ****d80e4e4044975745c14b**** */ pipelineId?: string; /** * @remarks * The priority of the MPS queue. Valid values: 1 to 10. * * @example * 6 */ priority?: number; /** * @remarks * The state of the MPS queue. * * Valid values: * * * Active * * Paused * * @example * Paused */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }