Sha256: 116e43c26c31dcb90719a2f7418c5eb04a2503736b697fb4ac94b908b61b616b
Contents?: true
Size: 638 Bytes
Versions: 38
Compression:
Stored size: 638 Bytes
Contents
module Fog module Slicehost class Real require 'fog/slicehost/parsers/get_images' # Get list of images # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'id'<~Integer> - Id of the image # * 'name'<~String> - Name of the image def get_images request( :expects => 200, :method => 'GET', :parser => Fog::Parsers::Slicehost::GetImages.new, :path => 'images.xml' ) end end class Mock def get_images Fog::Mock.not_implemented end end end end
Version data entries
38 entries across 38 versions & 2 rubygems