I have an Azure storage account. It has a number of access keys associated. From the Azure web GUI it is possible to "rotate" these keys.
It is also possible to rotate them from the command line, using (I believe) az storage account keys renew
.
I would like to rotate these keys from C# code. I have trouble finding the right object that lets me do this.
I know of NuGet packages like Azure.Storage.Blobs and Microsoft.Azure.Cosmos.Table. Is there any class in any NuGet package of one of those families that has a feature that lets me rotate/renew/regenerate these storage account access keys?
Thanks in advance!