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

    Interface CreateIndexFromBackupOptions

    Options for the deprecated flat backup restore method.

    interface CreateIndexFromBackupOptions {
        backupId: string;
        deletionProtection?: DeletionProtection;
        name: string;
        readCapacity?: ReadCapacity | CreateIndexReadCapacity;
        tags?: Record<string, string>;
    }
    Index
    backupId: string

    The ID of the backup to restore.

    deletionProtection?: DeletionProtection

    Whether to enable deletion protection on the created index.

    name: string

    The new index name, such as product-catalog-restored. Must be unique within the project.

    Native nested or deprecated flat read capacity configuration. Omit for on-demand capacity.

    tags?: Record<string, string>

    Optional tags to apply to the created index. Overrides backup tags if provided.