Sha256: 95cfd760672ad9db02c46d823764a7e0e581eb115bb90f056cf84252f9b08f23
Contents?: true
Size: 727 Bytes
Versions: 37
Compression:
Stored size: 727 Bytes
Contents
module Fog module Slicehost class Compute class Real require 'fog/slicehost/parsers/compute/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::Compute::GetImages.new, :path => 'images.xml' ) end end class Mock def get_images Fog::Mock.not_implemented end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems