mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
814cb82f22
Done with `rubocop --auto-correct --only Alias`
25 lines
554 B
Ruby
25 lines
554 B
Ruby
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_method :volume, :drive
|
|
end
|
|
end
|
|
end
|
|
end
|