ravendb
Version:
RavenDB client for Node.js
18 lines • 896 B
TypeScript
import { ConnectionString } from "./ConnectionString.js";
import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js";
import { EtlConfiguration } from "./EtlConfiguration.js";
import { RavenCommand } from "../../../Http/RavenCommand.js";
import { DocumentConventions } from "../../Conventions/DocumentConventions.js";
export declare class UpdateEtlOperation<T extends ConnectionString> implements IMaintenanceOperation<UpdateEtlOperationResult> {
private readonly _taskId;
private readonly _configuration;
constructor(taskId: number, configuration: EtlConfiguration<T>);
getCommand(conventions: DocumentConventions): RavenCommand<UpdateEtlOperationResult>;
get resultType(): OperationResultType;
}
interface UpdateEtlOperationResult {
raftCommandIndex: number;
taskId: number;
}
export {};
//# sourceMappingURL=UpdateEtlOperation.d.ts.map