1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/storm_on_demand/models/compute/config.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

37 lines
840 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class StormOnDemand
class Config < Fog::Model
identity :id
attribute :active
attribute :available
attribute :category
attribute :cpu_cores
attribute :cpu_count
attribute :cpu_hyperthreading
attribute :cpu_model
attribute :cpu_speed
attribute :description
attribute :disk
attribute :disk_count
attribute :disk_total
attribute :disk_type
attribute :featured
attribute :memory
attribute :raid_level
attribute :ram_available
attribute :ram_total
attribute :price
attribute :vcpu
attribute :zone_availability
def initialize(attributes={})
super
end
end
end
end
end