# File lib/cloudservers/server.rb, line 275 def unshare_ip(options) raise CloudServers::Exception::MissingArgument, "Ip Address must be supplied" unless options[:ipAddress] response = @connection.csreq("DELETE",@svrmgmthost,"#{@svrmgmtpath}/servers/#{URI.encode(self.id.to_s)}/ips/public/#{options[:ipAddress]}",@svrmgmtport,@svrmgmtscheme) CloudServers::Exception.raise_exception(response) unless response.code.match(/^20.$/) true end