Sha256: 87f9f1a85e5e64663dafe0630f151d35e869fca2e823d36f25eb617e09a00aa4
Contents?: true
Size: 811 Bytes
Versions: 111
Compression:
Stored size: 811 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
111 entries across 111 versions & 19 rubygems