Sha256: fdc98633752a3a039e3ce311339863775ca1b506008af869eeb93c5a50471aa2
Contents?: true
Size: 426 Bytes
Versions: 54
Compression:
Stored size: 426 Bytes
Contents
module Fog module Compute class Vsphere class Real def list_vm_customvalues(vm_id) get_vm_ref(vm_id).summary.customValue.map do |customvalue| { :key => customvalue.key.to_i, :value => customvalue.value, } end end end class Mock def list_vm_customfields(vm_id) end end end end end
Version data entries
54 entries across 54 versions & 3 rubygems