reveal-sdk-node
Version:
RevealBI Node.js SDK
15 lines (14 loc) • 838 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RVAzureCosmosDBConnectionMode = void 0;
/**
* Specifies the connection mode used to communicate with the Azure CosmosDB service.
* See {@link RVAzureCosmosDBDataSource.connectionMode}.
*/
var RVAzureCosmosDBConnectionMode;
(function (RVAzureCosmosDBConnectionMode) {
/** Uses direct TCP connections to CosmosDB replicas. Offers lower latency and higher throughput. */
RVAzureCosmosDBConnectionMode["Direct"] = "Direct";
/** Uses HTTPS connections through the CosmosDB gateway. Compatible with environments that restrict direct TCP traffic. */
RVAzureCosmosDBConnectionMode["Gateway"] = "Gateway";
})(RVAzureCosmosDBConnectionMode = exports.RVAzureCosmosDBConnectionMode || (exports.RVAzureCosmosDBConnectionMode = {}));