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/terremark/requests/shared/get_vapp_template.rb
2011-02-09 16:31:57 -08:00

35 lines
955 B
Ruby

module Fog
module Terremark
module Shared
module Real
# Get details of a vapp template
#
# ==== Parameters
# * vapp_template_id<~Integer> - Id of vapp template to lookup
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# FIXME
# * 'CatalogItems'<~Array>
# * 'href'<~String> - linke to item
# * 'name'<~String> - name of item
# * 'type'<~String> - type of item
# * 'description'<~String> - Description of catalog
# * 'name'<~String> - Name of catalog
def get_vapp_template(vapp_template_id)
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Terremark::Shared::GetVappTemplate.new,
:path => "vAppTemplate/#{vapp_template_id}"
)
end
end
end
end
end