weaviate-client
    Preparing search index...

    Type Alias BackupArgs<C>

    The arguments required to create and restore backups.

    type BackupArgs<C extends BackupConfigCreate | BackupConfigRestore> = {
        backend: Backend;
        backupId: string;
        config?: C;
        excludeCollections?: string[];
        includeCollections?: string[];
        waitForCompletion?: boolean;
    }

    Type Parameters

    Index

    Properties

    backend: Backend

    The backend to use for the backup.

    backupId: string

    The ID of the backup.

    config?: C

    The configuration options for the backup.

    excludeCollections?: string[]

    The collections to exclude from the backup.

    includeCollections?: string[]

    The collections to include in the backup.

    waitForCompletion?: boolean

    Whether to wait for the backup to complete.