mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2a9224cfa7
Added basic spec framework; changed class names to match the template fog seems to prefer Servers tests pass; create and delete implemented. Added an example script Properly handle a 409 response from the API Fixed BBG code to work with the new api endpoint changes; tweaks to the (currently nonexistent) reboot api call Implement the reboot command for blocks
35 lines
830 B
Ruby
35 lines
830 B
Ruby
module Fog
|
|
module Bluebox
|
|
class Real
|
|
|
|
require 'fog/bluebox/parsers/get_images'
|
|
|
|
# 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
|
|
def get_images
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::Bluebox::GetImages.new,
|
|
:path => 'api/block_templates.xml'
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_images
|
|
raise MockNotImplemented.new("Contributions welcome!")
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|