Class: Bosh::Director::Models::Vm

Inherits:
Object
  • Object
show all
Defined in:
lib/bosh/director/models/vm.rb

Instance Method Summary collapse

Instance Method Details

#apply_specObject



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

#credentialsObject



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

#envHash

Returns VM environment hash.

Returns:

  • (Hash)

    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

Parameters:

  • env_hash (Hash)

    Environment hash



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

#validateObject



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