Sha256: 6bbe311b74cf91a449c5695545f203e696cd175c9efa3aa0855df68380166af1
Contents?: true
Size: 836 Bytes
Versions: 111
Compression:
Stored size: 836 Bytes
Contents
module Fog module Compute class GoGrid class Real # List servers # # ==== Parameters # * options<~Hash>: # * 'datacenter'<~String> - datacenter to limit results to # * 'isSandbox'<~String> - If true only returns Image Sandbox servers, in ['false', 'true'] # * 'num_items'<~Integer> - Number of items to return # * 'page'<~Integer> - Page index for paginated results # * 'server.type'<~String> - server type to limit results to # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def grid_server_list(options={}) request( :path => 'grid/server/list', :query => options ) end end end end end
Version data entries
111 entries across 111 versions & 19 rubygems