class Fog::Compute::Linode::Flavor
Public Instance Methods
bits()
click to toggle source
# File lib/fog/linode/models/compute/flavor.rb, line 36 def bits 0 # these are determined by images you select not the hardware end
cores()
click to toggle source
# File lib/fog/linode/models/compute/flavor.rb, line 13 def cores case id when 1 2 when 3 4 when 5 6 when 6 8 when 7 12 when 8 16 when 9 20 when 11 20 else 0 end end