Sha256: 435ae41dd776b0ec91c7750fe0507cc8d6a2262d79eff870493c1c17f4ddd4b3
Contents?: true
Size: 728 Bytes
Versions: 9
Compression:
Stored size: 728 Bytes
Contents
module Fog module GoGrid class Compute class Real # List options and lookups # # ==== Parameters # * 'lookup'<~String> - the lookup to be listed # * options<~Hash>: # * 'sort'<~String> - column to sort result by in ['description', 'id', 'name'] # * 'asc'<~String> - order to sort in ['true','false'] # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def common_lookup_list(lookup, options={}) request( :path => 'common/lookup/list', :query => {'lookup' => lookup}.merge!(options) ) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems