2010-05-24 13:29:01 -04:00
|
|
|
module Fog
|
|
|
|
module Bluebox
|
|
|
|
class Real
|
|
|
|
|
2010-05-24 14:03:52 -04:00
|
|
|
require 'fog/bluebox/parsers/get_images'
|
2010-05-24 13:29:01 -04:00
|
|
|
|
|
|
|
# Get list of OS templates
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Array>:
|
|
|
|
# * 'id'<~String> - UUID of the image
|
|
|
|
# * 'description'<~String> - Description of the image
|
|
|
|
# * 'public'<~Boolean> - Public / Private image
|
|
|
|
# * 'created'<~Datetime> - Timestamp of when the image was created
|
2010-05-24 14:03:52 -04:00
|
|
|
def get_images
|
2010-05-24 13:29:01 -04:00
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
2010-05-24 14:03:52 -04:00
|
|
|
:parser => Fog::Parsers::Bluebox::GetImages.new,
|
2010-05-24 13:29:01 -04:00
|
|
|
:path => 'api/block_templates.xml'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def get_images
|
|
|
|
raise MockNotImplemented.new("Contributions welcome!")
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|