The RestoreJobModel describes the status of a restore job.

RestoreJobModel

interface RestoreJobModel {
    backupId: string;
    completedAt?: Date;
    createdAt: Date;
    percentComplete?: number;
    restoreJobId: string;
    status: string;
    targetIndexId: string;
    targetIndexName: string;
}

Properties

backupId: string

Backup used for the restore

RestoreJobModel

completedAt?: Date

Timestamp when the restore job finished

RestoreJobModel

createdAt: Date

Timestamp when the restore job started

RestoreJobModel

percentComplete?: number

The progress made by the restore job out of 100

RestoreJobModel

restoreJobId: string

Unique identifier for the restore job

RestoreJobModel

status: string

Status of the restore job

RestoreJobModel

targetIndexId: string

ID of the index

RestoreJobModel

targetIndexName: string

Name of the index into which data is being restored

RestoreJobModel