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

Version Path
fog-ovirt-1.1.6 lib/fog/ovirt/models/compute/volume.rb
fog-ovirt-1.1.5 lib/fog/ovirt/models/compute/volume.rb
fog-ovirt-1.1.4 lib/fog/ovirt/models/compute/volume.rb
fog-ovirt-1.1.3 lib/fog/ovirt/models/compute/volume.rb
fog-ovirt-1.1.2 lib/fog/ovirt/models/compute/volume.rb
fog-ovirt-1.1.1 lib/fog/ovirt/models/compute/volume.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-ovirt-1.1.0/lib/fog/ovirt/models/compute/volume.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-ovirt-1.1.0/lib/fog/ovirt/models/compute/volume.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-ovirt-1.1.0/lib/fog/ovirt/models/compute/volume.rb
fog-ovirt-1.1.0 lib/fog/ovirt/models/compute/volume.rb
fog-ovirt-1.0.4 lib/fog/ovirt/models/compute/volume.rb