1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/slicehost/requests/get_image.rb
2010-02-06 15:39:14 -08:00

40 lines
776 B
Ruby

unless Fog.mocking?
module Fog
class Slicehost
# 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
end
else
module Fog
class Slicehost
def get_image(image_id)
raise MockNotImplemented.new("Contributions welcome!")
end
end
end
end