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_images.rb
2010-03-17 20:51:55 -07:00

33 lines
667 B
Ruby

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
raise MockNotImplemented.new("Contributions welcome!")
end
end
end
end