Sha256: b57506bd7584136fdaf8f84167061186616e172acc196ba00c59c2687729549e
Contents?: true
Size: 742 Bytes
Versions: 15
Compression:
Stored size: 742 Bytes
Contents
module Fog module 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 class Mock def linode_list(options={}) Fog::Mock.not_implemented end end end end
Version data entries
15 entries across 15 versions & 2 rubygems