Sha256: 0f38f2bdeb5f57be18a2de09e12ebd45b3d969f80f08e8dc66ca4376e7bbbd66
Contents?: true
Size: 522 Bytes
Versions: 45
Compression:
Stored size: 522 Bytes
Contents
module Fog module Compute class Vsphere class Customfields < Fog::Collection autoload :Customfield, File.expand_path('../customfield', __FILE__) model Fog::Compute::Vsphere::Customfield attr_accessor :vm def all(filters = {}) load service.list_customfields() end def get(key) load(service.list_customfields()).find do | cv | cv.key == ((key.is_a? String) ? key.to_i : key) end end end end end end
Version data entries
45 entries across 45 versions & 1 rubygems