Class: Bosh::Director::Models::Vm
- Defined in:
- lib/bosh/director/models/vm.rb
Instance Method Summary collapse
- #apply_spec ⇒ Object
- #apply_spec=(spec) ⇒ Object
- #credentials ⇒ Object
- #credentials=(spec) ⇒ Object
-
#env ⇒ Hash
VM environment hash.
- #env=(env_hash) ⇒ Object
- #validate ⇒ Object
Instance Method Details
#apply_spec ⇒ Object
11 12 13 14 |
# File 'lib/bosh/director/models/vm.rb', line 11 def apply_spec return nil if apply_spec_json.nil? Yajl::Parser.parse(apply_spec_json) end |
#apply_spec=(spec) ⇒ Object
16 17 18 |
# File 'lib/bosh/director/models/vm.rb', line 16 def apply_spec=(spec) self.apply_spec_json = Yajl::Encoder.encode(spec) end |
#credentials ⇒ Object
31 32 33 34 |
# File 'lib/bosh/director/models/vm.rb', line 31 def credentials return nil if credentials_json.nil? Yajl::Parser.parse(credentials_json) end |
#credentials=(spec) ⇒ Object
36 37 38 |
# File 'lib/bosh/director/models/vm.rb', line 36 def credentials=(spec) self.credentials_json = Yajl::Encoder.encode(spec) end |
#env ⇒ Hash
Returns VM environment hash.
26 27 28 29 |
# File 'lib/bosh/director/models/vm.rb', line 26 def env return nil if env_json.nil? Yajl::Parser.parse(env_json) end |
#env=(env_hash) ⇒ Object
21 22 23 |
# File 'lib/bosh/director/models/vm.rb', line 21 def env=(env_hash) self.env_json = Yajl::Encoder.encode(env_hash) end |
#validate ⇒ Object
6 7 8 9 |
# File 'lib/bosh/director/models/vm.rb', line 6 def validate validates_presence [:deployment_id, :agent_id] validates_unique :agent_id end |