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/google/models/compute/flavor.rb
2013-01-16 17:55:36 -08:00

24 lines
555 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class Google
class Flavor < Fog::Model
identity :name
attribute :description
attribute :guest_cpus, :aliases => 'guestCpus'
attribute :memory_mb, :aliases => 'memoryMb'
attribute :image_space_gb, :aliases => 'imageSpaceGb'
attribute :maximum_persistent_disks,
:aliases => 'maximumPersistentDisks'
attribute :maximum_persistent_disks_size,
:aliases => 'maximumPersistentDisksSizeGb'
end
end
end
end