2010-09-07 16:26:01 -07:00
|
|
|
module Fog
|
2011-06-16 16:28:54 -07:00
|
|
|
module Compute
|
|
|
|
class Bluebox
|
2010-09-07 16:26:01 -07:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# 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_templates
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
|
|
|
:path => 'api/block_templates.json'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|