Sha256: 77a741b80dd4aeec978b2151c4dd9a0b5024d0b882361979277b6a1a25b87778
Contents?: true
Size: 708 Bytes
Versions: 32
Compression:
Stored size: 708 Bytes
Contents
module Fog module Compute class Linode class Real # 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 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
Version data entries
32 entries across 32 versions & 8 rubygems