# File lib/fog/ecloud/models/compute/node.rb, line 25
        def edit(options)
          options[:uri] = href
          options[:description] ||= ""
          options = {:name => name}.merge(options)
          data = connection.node_service_edit(options).body
          task = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => data[:href])[0]
        end