interface Task {
    description: string;
    hrefFrom: string;
    hrefResult: string;
    id: string;
    progress: number;
    startedAt?: Date;
    status: Instance.v1.TaskStatus;
    terminatedAt?: Date;
    zone: Zone;
}

Properties

description: string

Description of the task.

hrefFrom: string
hrefResult: string
id: string

Unique ID of the task.

progress: number

Progress of the task in percent.

startedAt?: Date

Task start date.

Task status.

terminatedAt?: Date

Task end date.

zone: Zone

Zone in which the task is excecuted.