使用 JavaScript 在 Azure Key Vault 中啟用和停用金鑰
若要啟用金鑰以搭配 Azure Key Vault 中的密碼編譯作業使用,請使用 SecretClient 類別的 updateKeyProperties 方法。
啟用金鑰
若要在 Azure Key Vault 中啟用金鑰,請使用 KeyClient 類別的 updateKeyProperties 方法。
const properties = await keyClient.updateKeyProperties(
keyName,
version, // optional, remove to update the latest version
{ enabled: true }
);
如需完整的程式碼範例,請參閱更新金鑰屬性範例。
停用新的金鑰
若要停用新的金鑰,請使用 createKey 方法,並使用 createKeyOptions 來停用金鑰。
const keyVaultKey = await keyClient.createKey(keyName, keyType, { enabled: false });
停用現有的金鑰
若要在 Azure Key Vault 中停用金鑰,請使用 KeyClient 類別的 updateKeyProperties 方法。
const properties = await keyClient.updateKeyProperties(
keyName,
version, // optional, remove to update the latest version
{ enabled: false }
);
如需完整的程式碼範例,請參閱更新金鑰屬性範例。