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

19 lines
243 B
Ruby

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