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/cloudsigma/models/mountpoint.rb

26 lines
546 B
Ruby
Raw Normal View History

require 'fog/core/model'
module Fog
module Compute
class CloudSigma
class MountPoint < Fog::Model
attribute :device, :type => 'string'
attribute :dev_channel, :type => 'string'
attribute :drive
attribute :boot_order, :type => 'integer'
def drive
drive = attributes[:drive]
drive.kind_of?(Hash) ? drive['uuid'] : drive
end
def drive=(new_drive)
attributes[:drive] = new_drive
end
alias :volume :drive
end
end
end
end