class Bosh::Director::Models::RuntimeConfig
Public Instance Methods
before_create()
click to toggle source
# File lib/bosh/director/models/runtime_config.rb, line 5 def before_create self.created_at ||= Time.now end
manifest()
click to toggle source
# File lib/bosh/director/models/runtime_config.rb, line 13 def manifest Psych.load properties end
manifest=(runtime_config_hash)
click to toggle source
# File lib/bosh/director/models/runtime_config.rb, line 9 def manifest=(runtime_config_hash) self.properties = Psych.dump(runtime_config_hash) end