2010-09-08 10:56:38 -07:00
|
|
|
module Fog
|
2011-06-16 16:28:54 -07:00
|
|
|
module Compute
|
|
|
|
class Linode
|
2010-09-08 10:56:38 -07:00
|
|
|
class Real
|
2011-05-24 18:02:59 -04:00
|
|
|
|
|
|
|
# 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
|
2010-09-08 10:56:38 -07:00
|
|
|
def linode_delete(linode_id, options={})
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
|
|
|
:query => { :api_action => 'linode.delete', :linodeId => linode_id }.merge!(options)
|
|
|
|
)
|
|
|
|
end
|
2011-06-16 16:28:54 -07:00
|
|
|
|
2010-09-08 10:56:38 -07:00
|
|
|
end
|
2012-05-17 11:31:15 -07:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
def linode_delete(linode_id, options={})
|
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
"ERRORARRAY" => [],
|
|
|
|
"ACTION" => "linode.delete",
|
|
|
|
"DATA" => { "LinodeID" => linode_id }
|
|
|
|
}
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end
|
2010-09-08 10:56:38 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|