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

19 lines
243 B
Ruby
Raw Normal View History

2010-01-10 21:22:18 +00:00
module Fog
module AWS
class EC2
class Flavor < Fog::Model
identity :id
attribute :bits
attribute :cores
attribute :disk
attribute :name
attribute :ram
end
end
end
end