Method: IBMSmartCloud#delete

Defined in:
lib/smartcloud.rb

#delete(path) ⇒ Object



621
622
623
624
625
626
# File 'lib/smartcloud.rb', line 621

def delete(path)
  rescue_and_retry_errors do
    output = @http_client.delete File.join(@api_url, path), :accept => :response
    response = XmlSimple.xml_in(output, {'ForceArray' => nil})
  end
end