# File lib/client/template_api.rb, line 31
    def template_volumes template_id
      http_get("/templates/%s/disks" % template_id, http_headers).xpath('/disks/disk').collect do |disk|
        OVIRT::Volume::new(self, disk)
      end
    end