Sha256: 93730344d852e6ff83ed50153e02f99c64c858350f279eac7de3496e4eaab9c2
Contents?: true
Size: 463 Bytes
Versions: 14
Compression:
Stored size: 463 Bytes
Contents
module Fog module Compute class Vsphere class Real def list_customfields() connection.serviceContent.customFieldsManager.field.map do |customfield| { :key => customfield.key.to_i, :name => customfield.name, :type => customfield.type } end end end class Mock def list_vm_customfields() end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems