2010-09-08 13:56:38 -04:00
|
|
|
module Fog
|
|
|
|
module Linode
|
|
|
|
class Compute
|
|
|
|
class Real
|
2011-05-24 18:02:59 -04:00
|
|
|
|
|
|
|
# List all linodes user has access or delete to
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * linodeId<~Integer>: Limit the list to the specified LinodeID
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Array>:
|
|
|
|
# TODO: docs
|
2010-09-08 13:56:38 -04:00
|
|
|
def linode_list(linode_id=nil)
|
|
|
|
options = {}
|
|
|
|
if linode_id
|
|
|
|
options.merge!(:linodeId => linode_id)
|
|
|
|
end
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
|
|
|
:query => { :api_action => 'linode.list' }.merge!(options)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|