Nilesh Patil

Nilesh Patil

  • NA
  • 3k
  • 111.7k

How to Create Azure Storage Account with Specific Parameters

May 13 2019 7:51 AM
Hi All,
 
I am able to create new storage accont in Azure by using this code
 
 
var storageAccount = azure.StorageAccounts.Define(storageName)
.WithRegion(location)
.WithNewResourceGroup(rgName)
.Create();
 
But i want to create with following options
 
Performance
Account Kind
Replications
 
In above code there is only 2 options Region and RG Name
 
Thanks in advance 
 

Answers (1)