Estructura inicial del proyecto

This commit is contained in:
2026-06-02 16:57:08 +00:00
commit 8b306b9afc
9864 changed files with 1435687 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* The latest supported Key Vault service API version
*/
export const LATEST_API_VERSION = "7.6";
/** Known values of {@link KeyOperation} that the service accepts. */
export 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 || (KnownKeyOperations = {}));
//# sourceMappingURL=keysModels.js.map