fog/fog-vsphere

View on GitHub
lib/fog/vsphere/models/compute/customfield.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Vsphere
    class Compute
      class Customfield < Fog::Model
        identity :key

        attribute :name
        attribute :type

        def to_s
          name
        end
      end
    end
  end
end