weaviate-client
Version:
JS/TS client for Weaviate
15 lines (14 loc) • 547 B
TypeScript
import Connection from '../connection/index.js';
import { BackupRestoreStatusResponse } from '../openapi/types.js';
import { CommandBase } from '../validation/commandBase.js';
import { Backend } from './index.js';
export default class BackupRestoreStatusGetter extends CommandBase {
private backend?;
private backupId?;
constructor(client: Connection);
withBackend(backend: Backend): this;
withBackupId(backupId: string): this;
validate: () => void;
do: () => Promise<BackupRestoreStatusResponse>;
private _path;
}