Class: InstanceProfile

Inherits:
BaseModel show all
Defined in:
lib/deltacloud/models/instance_profile.rb

Overview

Model to store the hardware profile applied to an instance together with any instance-specific overrides

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

attr_accessor, attributes, #attributes, #id, #to_hash, #to_json

Constructor Details

#initialize(hwp_name, args = {}) ⇒ InstanceProfile

Returns a new instance of InstanceProfile.



27
28
29
30
31
32
33
34
# File 'lib/deltacloud/models/instance_profile.rb', line 27

def initialize(hwp_name, args = {})
  opts = args.inject({ :id => hwp_name.to_s }) do |m, e|
    k, v = e
    m[$1] = v if k.to_s =~ /^hwp_(.*)$/
    m
  end
  super(opts)
end

Instance Attribute Details

#architectureObject

Returns the value of attribute architecture.



24
25
26
# File 'lib/deltacloud/models/instance_profile.rb', line 24

def architecture
  @architecture
end

#cpuObject

Returns the value of attribute cpu.



25
26
27
# File 'lib/deltacloud/models/instance_profile.rb', line 25

def cpu
  @cpu
end

#memoryObject

Returns the value of attribute memory.



22
23
24
# File 'lib/deltacloud/models/instance_profile.rb', line 22

def memory
  @memory
end

#storageObject

Returns the value of attribute storage.



23
24
25
# File 'lib/deltacloud/models/instance_profile.rb', line 23

def storage
  @storage
end

Instance Method Details

#nameObject



36
37
38
# File 'lib/deltacloud/models/instance_profile.rb', line 36

def name
  id
end

#overridesObject



40
41
42
43
44
45
46
47
# File 'lib/deltacloud/models/instance_profile.rb', line 40

def overrides
  [:memory, :storage, :architecture, :cpu].inject({}) do |h, p|
    if v = instance_variable_get("@#{p}")
      h[p] = v
    end
    h
  end
end