Sha256: ce28c2aa3b21da666760ea784dd9d6f184566ee0937b888eddacbe2feb0a99ef

Contents?: true

Size: 525 Bytes

Versions: 28

Compression:

Stored size: 525 Bytes

Contents

require 'fog/core/collection'
require 'fog/vsphere/models/compute/customfield'

module Fog
  module Compute
    class Vsphere
      class Customfields < Fog::Collection
        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

28 entries across 28 versions & 4 rubygems

Version Path
ns-fog-1.22.8 lib/fog/vsphere/models/compute/customfields.rb
ns-fog-1.22.7 lib/fog/vsphere/models/compute/customfields.rb
ns-fog-1.22.6 lib/fog/vsphere/models/compute/customfields.rb
fog-1.23.0 lib/fog/vsphere/models/compute/customfields.rb
ns-fog-1.22.4 lib/fog/vsphere/models/compute/customfields.rb
ns-fog-1.22.3 lib/fog/vsphere/models/compute/customfields.rb
ns-fog-1.22.2 lib/fog/vsphere/models/compute/customfields.rb
fog-1.22.1 lib/fog/vsphere/models/compute/customfields.rb