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