Sha256: ebcf33a2bd6b1d920dbb72415223fa537ed152cf2f3956fb70f27cba34722580
Contents?: true
Size: 631 Bytes
Versions: 30
Compression:
Stored size: 631 Bytes
Contents
module Fog module NewServers class Real # List images # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'id'<~String> - Id of the image # * 'name'<~String> - Name of the image # * 'size'<~String> - Size of the image # def list_images request( :expects => 200, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => 'api/listImages' ) end end class Mock def list_images Fog::Mock.not_implemented end end end end
Version data entries
30 entries across 30 versions & 2 rubygems