28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
"use strict";
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.KnownKeyOperations = exports.LATEST_API_VERSION = void 0;
|
|
/**
|
|
* The latest supported Key Vault service API version
|
|
*/
|
|
exports.LATEST_API_VERSION = "7.6";
|
|
/** Known values of {@link KeyOperation} that the service accepts. */
|
|
var KnownKeyOperations;
|
|
(function (KnownKeyOperations) {
|
|
/** Key operation - encrypt */
|
|
KnownKeyOperations["Encrypt"] = "encrypt";
|
|
/** Key operation - decrypt */
|
|
KnownKeyOperations["Decrypt"] = "decrypt";
|
|
/** Key operation - sign */
|
|
KnownKeyOperations["Sign"] = "sign";
|
|
/** Key operation - verify */
|
|
KnownKeyOperations["Verify"] = "verify";
|
|
/** Key operation - wrapKey */
|
|
KnownKeyOperations["WrapKey"] = "wrapKey";
|
|
/** Key operation - unwrapKey */
|
|
KnownKeyOperations["UnwrapKey"] = "unwrapKey";
|
|
/** Key operation - import */
|
|
KnownKeyOperations["Import"] = "import";
|
|
})(KnownKeyOperations || (exports.KnownKeyOperations = KnownKeyOperations = {}));
|
|
//# sourceMappingURL=keysModels.js.map
|