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/vcloud_director/requests/compute/get_vapp.rb

19 lines
326 B
Ruby
Raw Normal View History

module Fog
2013-06-18 10:57:32 -04:00
module Compute
2013-08-27 05:19:54 -04:00
class VcloudDirector
class Real
def get_vapp(vapp_id)
request(
:expects => 200,
:method => 'GET',
2013-06-19 11:08:20 -04:00
:parser => Fog::ToHashDocument.new,
:path => "vApp/#{vapp_id}"
)
end
end
end
end
end