Sha256: 161d1a363b8a1d70f5efa2b638b7823585c4bdc1193798519717cc8e4a6aa66b
Contents?: true
Size: 806 Bytes
Versions: 44
Compression:
Stored size: 806 Bytes
Contents
module Fog module GoGrid class Compute class Real # List load balancers # # ==== Parameters # * options<~Hash>: # * 'datacenter'<~String> - datacenter to limit results to # * 'num_items'<~Integer> - Number of items to return # * 'page'<~Integer> - Page index for paginated results # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def grid_loadbalancer_list(options={}) request( :path => 'grid/loadbalancer/list', :query => options ) end end class Mock def grid_loadbalancer_list(options={}) Fog::Mock.not_implemented end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems