Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface RestoreJobModel

    The RestoreJobModel describes the status of a restore job.

    RestoreJobModel

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

    Backup used for the restore

    RestoreJobModel

    completedAt?: Date | null

    Timestamp when the restore job finished. null until the job has completed.

    RestoreJobModel

    createdAt: Date | null

    Timestamp when the restore job started

    RestoreJobModel

    percentComplete?: number

    Progress of the restore job: 100 once the job is Completed, absent while it is pending or after it has failed. Intermediate progress is not reported.

    RestoreJobModel

    restoreJobId: string

    Unique identifier for the restore job

    RestoreJobModel

    status: string

    Status of the restore job. Possible values: Pending, Completed, Failed, or Cancelled.

    RestoreJobModel

    targetIndexId: string

    ID of the index

    RestoreJobModel

    targetIndexName: string

    Name of the index into which data is being restored

    RestoreJobModel