Sha256: 0c8168e6133c18ef4e92b19703ab3d34546c00fcb013952645dcabe1ccdf1d84
Contents?: true
Size: 718 Bytes
Versions: 1
Compression:
Stored size: 718 Bytes
Contents
module Fog module Linode class Compute class Real # List all linodes user has access or delete to # # ==== Parameters # * linode_id<~Integer>: id of linode to delete # * options<~Hash>: # * skipChecks<~Boolean>: skips safety checks and always deletes # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def linode_delete(linode_id, options={}) request( :expects => 200, :method => 'GET', :query => { :api_action => 'linode.delete', :linodeId => linode_id }.merge!(options) ) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-0.8.2 | lib/fog/compute/requests/linode/linode_delete.rb |