Sha256: 5f5c9a1e667668803d0796833686b7f0079dfb822178c236a3c7ff21d3b785b3
Contents?: true
Size: 730 Bytes
Versions: 10
Compression:
Stored size: 730 Bytes
Contents
module Fog module GoGrid 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
Version data entries
10 entries across 10 versions & 2 rubygems