# File lib/fog/compute/ecloud/requests/virtual_machine_edit.rb, line 12
        def build_request_body_edit(options)
          xml = Builder::XmlMarkup.new
          xml.VirtualMachine(:name => options[:name]) do
            if options[:description]
              xml.Description options[:description]
            end
            if options[:tags]
              xml.Tags do
                options[:tags].each do |tag|
                  xml.Tag tag
                end
              end
            end
          end
        end