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.



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

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.



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

def architecture
  @architecture
end

#cpuObject

Returns the value of attribute cpu.



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

def cpu
  @cpu
end

#memoryObject

Returns the value of attribute memory.



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

def memory
  @memory
end

#storageObject

Returns the value of attribute storage.



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

def storage
  @storage
end

Instance Method Details

#nameObject



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

def name
  id
end

#overridesObject



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

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