Reputation: 3648
Is there a way to update KeyVault access policy with C# SDK?
It is rather easy to do it with Powershell Set-AzureRmKeyVaultAccessPolicy
, but I can't seem to find the same method in C# SDK.
Upvotes: 0
Views: 517
Reputation: 171
KeyVault PowerShell uses the KeyVault Management C# SDK - https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.management.keyvault.keyvaultmanagementclient
Here is it's usage:
So, the answer to your question is no. Having said that, I hope the above reference helps you.
Upvotes: 1