Sha256: ded2748092687d279007ee21b8d923303691a77166f1ee50bf953b5689ca906e
Contents?: true
Size: 810 Bytes
Versions: 11
Compression:
Stored size: 810 Bytes
Contents
module Fog module Compute class Ovirt class Volume < Fog::Model attr_accessor :raw identity :id attribute :storage_domain attribute :size attribute :disk_type attribute :bootable attribute :interface attribute :format attribute :sparse attribute :size_gb attribute :status attribute :quota attribute :alias attribute :wipe_after_delete def size_gb attributes[:size_gb] ||= attributes[:size].to_i / Fog::Compute::Ovirt::DISK_SIZE_TO_GB if attributes[:size] end def size_gb=(size) attributes[:size] = size.to_i * Fog::Compute::Ovirt::DISK_SIZE_TO_GB if size end def to_s id end end end end end
Version data entries
11 entries across 9 versions & 2 rubygems