mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
405 B
Ruby
20 lines
405 B
Ruby
module Fog
|
|
module Compute
|
|
class VcloudDirector
|
|
class Real
|
|
|
|
require 'fog/vcloud_director/parsers/compute/vms'
|
|
|
|
def get_vms(vapp_id)
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::Compute::VcloudDirector::Vms.new,
|
|
:path => "vApp/#{vapp_id}"
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|