@configurator/ravendb
Version:
RavenDB client for Node.js
16 lines (15 loc) • 771 B
TypeScript
import { ConnectionString } from "./ConnectionString";
import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions";
import { EtlConfiguration } from "./EtlConfiguration";
import { DocumentConventions } from "../../Conventions/DocumentConventions";
import { RavenCommand } from "../../../Http/RavenCommand";
export declare class AddEtlOperation<T extends ConnectionString> implements IMaintenanceOperation<AddEtlOperationResult> {
private readonly _configuration;
constructor(configuration: EtlConfiguration<T>);
getCommand(conventions: DocumentConventions): RavenCommand<AddEtlOperationResult>;
get resultType(): OperationResultType;
}
export interface AddEtlOperationResult {
raftCommandIndex: number;
taskId: number;
}