# File lib/fog/azure/requests/compute/create_storage_account.rb, line 32
        def create_storage_account(name, options)
          storage = ::Azure::StorageManagement::StorageAccount.new
          storage.name = name
          storage.status = "Created"
          storage.label = name
          storage.location = options[:location]
          storage
        end