UNPKG

ravendb

Version:
22 lines 1.15 kB
import { HttpRequestParameters } from "../../../Primitives/Http.js"; import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js"; import { DocumentConventions } from "../../Conventions/DocumentConventions.js"; import { RavenCommand } from "../../../Http/RavenCommand.js"; import { ServerNode } from "../../../Http/ServerNode.js"; import { IRaftCommand } from "../../../Http/IRaftCommand.js"; export declare class DisableIndexOperation implements IMaintenanceOperation<void> { private readonly _indexName; private readonly _clusterWide; constructor(indexName: string, clusterWide?: boolean); getCommand(conventions: DocumentConventions): DisableIndexCommand; get resultType(): OperationResultType; } export declare class DisableIndexCommand extends RavenCommand<void> implements IRaftCommand { get isReadRequest(): boolean; private readonly _indexName; private readonly _clusterWide; constructor(indexName: string, clusterWide: boolean); createRequest(node: ServerNode): HttpRequestParameters; getRaftUniqueRequestId(): string; } //# sourceMappingURL=DisableIndexOperation.d.ts.map