Sha256: 47860e755f7a8182af804d9dfab059c9ad14c7d8f68c9e816365b7c14b45f3de
Contents?: true
Size: 926 Bytes
Versions: 44
Compression:
Stored size: 926 Bytes
Contents
module Fog module GoGrid class Compute class Real # List ips # # ==== Parameters # * options<~Hash>: # * 'datacenter'<~String> - datacenter to limit results to # * 'ip.state'<~String> - state to limit results to in ip.state # * 'ip.type'<~String> - type to limit results to in ip.type # * '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_ip_list(options={}) request( :path => 'grid/ip/list', :query => options ) end end class Mock def grid_ip_list(options={}) Fog::Mock.not_implemented end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems