def get_total_space(storage)
        total_space = 0
        disks = storage[:physical_disks]
        disks&.each { |disk| total_space += disk[:disk_size].to_i }