# File lib/fog/vsphere/models/compute/customfields.rb, line 12 def all(filters = {}) load service.list_customfields() end
# File lib/fog/vsphere/models/compute/customfields.rb, line 16 def get(key) load(service.list_customfields()).find do | cv | cv.key == ((key.is_a? String) ? key.to_i : key) end end