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

    Interface BackupList

    A page of backups. When pagination is present, pass its next value as paginationToken to fetch the following page.

    Backups

    interface BackupList {
        data?: BackupModel[];
        pagination?: BackupListPagination | null;
    }

    Hierarchy

    • Omit<GeneratedBackupList, "data">
      • BackupList
    Index
    data?: BackupModel[]

    Backups returned by this page.

    pagination?: BackupListPagination | null

    BackupList