protected static void createStorageAccount(String storageAccountName, String storageContainer) throws Exception {
//String storageAccountCreateName = testStoragePrefix + randomString(10);
String storageAccountLabel = storageAccountName + "Label1";
//Arrange
StorageAccountCreateParameters createParameters = new StorageAccountCreateParameters();
//required
createParameters.setName(storageAccountName);
//required
createParameters.setLabel(storageAccountLabel);
//required if no affinity group has set
createParameters.setLocation(vmLocation);
//act
OperationResponse operationResponse = storageManagementClient.getStorageAccountsOperations().create(createParameters);
//Assert