Sha256: 8fe0b46e5cef37fd2ac4abe58b0e4cc804454002c34b7f69d284686f58a99058
Contents?: true
Size: 809 Bytes
Versions: 43
Compression:
Stored size: 809 Bytes
Contents
module Fog module Compute class GoGrid 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 end end end
Version data entries
43 entries across 41 versions & 6 rubygems