@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
18 lines • 644 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PermissionMode = void 0;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* Enum for permission mode values.
*/
var PermissionMode;
(function (PermissionMode) {
/** Permission not valid. */
PermissionMode["None"] = "none";
/** Permission applicable for read operations only. */
PermissionMode["Read"] = "read";
/** Permission applicable for all operations. */
PermissionMode["All"] = "all";
})(PermissionMode || (exports.PermissionMode = PermissionMode = {}));
//# sourceMappingURL=PermissionMode.js.map