import { TaskActionEnum } from '../TaskActionEnum';
import { TaskStatusEnum } from '../TaskStatusEnum';
/** IP Load Balancing Operations */
export interface Task {
    /** Operation type */
    action: TaskActionEnum;
    /** Creation date of your operation */
    creationDate: string;
    /** Done date of your operation */
    doneDate?: string;
    /** Id of the operation */
    id: number;
    /** Operation progress percentage */
    progress: number;
    /** Current status of your operation */
    status: TaskStatusEnum;
    /** Zone of your Load Balancer which are updated by current Task */
    zones: string[];
}
//# sourceMappingURL=Task.d.ts.map