2012-04-09 09:42:58 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Ovirt
|
|
|
|
class Real
|
2012-04-16 05:01:00 -04:00
|
|
|
DISK_SIZE_TO_GB = 1073741824
|
2012-04-09 09:42:58 -04:00
|
|
|
def add_volume(id, options = {})
|
|
|
|
raise ArgumentError, "instance id is a required parameter" unless id
|
2012-04-16 05:01:00 -04:00
|
|
|
options[:size]=options[:size_gb].to_i*DISK_SIZE_TO_GB if options[:size_gb]
|
2012-04-09 09:42:58 -04:00
|
|
|
client.add_volume(id, options)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
def add_volume(id, options = {})
|
|
|
|
raise ArgumentError, "instance id is a required parameter" unless id
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|