Sha256: 5bb21a0308d5e6e485cee7282f456ebfd92341a8fdd418cf09646004fcd7b504
Contents?: true
Size: 785 Bytes
Versions: 46
Compression:
Stored size: 785 Bytes
Contents
module Fog module Slicehost class Real require 'fog/slicehost/parsers/get_image' # Get details of an image # # ==== Parameters # * image_id<~Integer> - Id of image to lookup # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'id'<~Integer> - Id of the image # * 'name'<~String> - Name of the image def get_image(image_id) request( :expects => 200, :method => 'GET', :parser => Fog::Parsers::Slicehost::GetImage.new, :path => "images/#{image_id}.xml" ) end end class Mock def get_image(image_id) raise MockNotImplemented.new("Contributions welcome!") end end end end
Version data entries
46 entries across 46 versions & 1 rubygems