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/vcloudng/requests/compute/get_vm_cpu.rb

20 lines
427 B
Ruby
Raw Normal View History

2013-06-26 08:23:54 -04:00
module Fog
module Compute
class Vcloudng
class Real
def get_vm_cpu(vm_id)
request(
:expects => 200,
:headers => { 'Accept' => 'application/*+xml;version=1.5' },
:method => 'GET',
:parser => Fog::ToHashDocument.new,
:path => "vApp/#{vm_id}/virtualHardwareSection/cpu"
)
end
end
end
end
end