# File lib/puppet/provider/zone/solaris.rb, line 74
74:   def properties
75:     if @property_hash.empty?
76:       @property_hash = status || {}
77:       if @property_hash.empty?
78:         @property_hash[:ensure] = :absent
79:       else
80:         @resource.class.validproperties.each do |name|
81:           @property_hash[name] ||= :absent
82:         end
83:       end
84: 
85:     end
86:     @property_hash.dup
87:   end