class Fog::Compute::Linode::Flavor

Public Instance Methods

bits() click to toggle source
# File lib/fog/linode/models/compute/flavor.rb, line 38
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
    1
  when 2
        2
  when 4
        4
  when 6
        6
  when 7
        8
  when 8
        12
  when 9
        16
  when 10
        20
  when 12
        20
  else
        0
  end
end