/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { __awaiter } from "tslib"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { StorageManagementClient } from "@azure/arm-storage"; import { DefaultAzureCredential } from "@azure/identity"; /** * This sample demonstrates how to Regenerates one of the access keys or Kerberos keys for the specified storage account. * * @summary Regenerates one of the access keys or Kerberos keys for the specified storage account. * x-ms-original-file: specification/storage/resource-manager/Microsoft.Storage/stable/2021-09-01/examples/StorageAccountRegenerateKerbKey.json */ function storageAccountRegenerateKerbKey() { return __awaiter(this, void 0, void 0, function* () { const subscriptionId = "{subscription-id}"; const resourceGroupName = "res4167"; const accountName = "sto3539"; const regenerateKey = { keyName: "kerb1" }; const credential = new DefaultAzureCredential(); const client = new StorageManagementClient(credential, subscriptionId); const result = yield client.storageAccounts.regenerateKey(resourceGroupName, accountName, regenerateKey); console.log(result); }); } storageAccountRegenerateKerbKey().catch(console.error); /** * This sample demonstrates how to Regenerates one of the access keys or Kerberos keys for the specified storage account. * * @summary Regenerates one of the access keys or Kerberos keys for the specified storage account. * x-ms-original-file: specification/storage/resource-manager/Microsoft.Storage/stable/2021-09-01/examples/StorageAccountRegenerateKey.json */ function storageAccountRegenerateKey() { return __awaiter(this, void 0, void 0, function* () { const subscriptionId = "{subscription-id}"; const resourceGroupName = "res4167"; const accountName = "sto3539"; const regenerateKey = { keyName: "key2" }; const credential = new DefaultAzureCredential(); const client = new StorageManagementClient(credential, subscriptionId); const result = yield client.storageAccounts.regenerateKey(resourceGroupName, accountName, regenerateKey); console.log(result); }); } storageAccountRegenerateKey().catch(console.error); //# sourceMappingURL=storageAccountsRegenerateKeySample.js.map