# File lib/fission/vm.rb, line 290
    def uuids
      config_response = conf_file_data
      return config_response unless config_response.successful?

      response = Response.new :code => 0, :data => {}

      { 'bios' => 'uuid.bios', 'location' => 'uuid.location' }.each_pair do |k,v|
        unless config_response.data[v].blank?
          response.data[k] = config_response.data[v]
        end
      end

      response
    end