fog--fog/lib/fog/aws/models/ec2/flavor.rb

21 lines
265 B
Ruby
Raw Normal View History

2010-03-16 22:46:21 +00:00
require 'fog/model'
2010-01-10 21:22:18 +00:00
module Fog
module AWS
2010-03-16 22:46:21 +00:00
module EC2
2010-01-10 21:22:18 +00:00
class Flavor < Fog::Model
identity :id
attribute :bits
attribute :cores
attribute :disk
attribute :name
attribute :ram
end
end
end
end