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/compute/requests/bluebox/get_template.rb

26 lines
552 B
Ruby

module Fog
module Compute
class Bluebox
class Real
# Get details of a template
#
# ==== Parameters
# * template_id<~Integer> - Id of template to lookup
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Array>:
# TODO
def get_template(template_id)
request(
:expects => 200,
:method => 'GET',
:path => "api/block_templates/#{template_id}.json"
)
end
end
end
end
end