# File lib/fog/azure/models/compute/storage_accounts.rb, line 31 def all() accounts = [] service.list_storage_accounts.each do |account| hash = {} account.instance_variables.each do |var| hash[var.to_s.delete("@")] = account.instance_variable_get(var) end accounts << hash end load(accounts) end