@configurator/ravendb
Version:
RavenDB client for Node.js
13 lines (12 loc) • 481 B
TypeScript
import { ExternalReplicationBase } from "../../Replication/ExternalReplicationBase";
import { PullReplicationMode } from "./PullReplicationMode";
export interface PullReplicationAsSink extends ExternalReplicationBase {
mode: PullReplicationMode;
allowedHubToSinkPaths?: string[];
allowedSinkToHubPaths?: string[];
certificateWithPrivateKey?: string;
certificatePassword?: string;
accessName?: string;
hubName?: string;
hubDefinitionName?: string;
}