mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
707 B
Ruby
28 lines
707 B
Ruby
module Fog
|
|
module Compute
|
|
class VcloudDirector
|
|
class Real
|
|
require 'fog/vcloud_director/parsers/compute/vms'
|
|
|
|
# Retrieve a vApp or VM.
|
|
#
|
|
# @note This should probably be deprecated.
|
|
#
|
|
# @param [String] id Object identifier of the vApp or VM.
|
|
# @return [Excon::Response]
|
|
# * body<~Hash>:
|
|
#
|
|
# @see #get_vapp
|
|
def get_vms(id)
|
|
request(
|
|
:expects => 200,
|
|
:idempotent => true,
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::Compute::VcloudDirector::Vms.new,
|
|
:path => "vApp/#{id}"
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|