Sha256: 70aa820948f056666e4eee21c3dcc4870051e1188215ca3865f0959d815e8c63
Contents?: true
Size: 1.16 KB
Versions: 111
Compression:
Stored size: 1.16 KB
Contents
module Fog module Compute class GoGrid class Real # List images # # ==== Parameters # * options<~Hash>: # * 'datacenter'<~String> - datacenter to limit results to # * 'isPublic'<~String> - If true only returns public images, in ['false', 'true'] # * 'num_items'<~Integer> - Number of items to return # * 'page'<~Integer> - Page index for paginated results # * 'state'<~String> - state to limit results to, in ['Saving', 'Available'] # * 'type'<~String> - image type to limit results to # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def grid_image_list(options={}) request( :path => 'grid/image/list', :query => options ) end end class Mock def grid_image_list(options={}) #response = Excon::Response.new #images = self.data[:list].values #for image in images # case image['state'] # when 'Available' end end end end end
Version data entries
111 entries across 111 versions & 19 rubygems