mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
15 lines
299 B
Ruby
15 lines
299 B
Ruby
![]() |
module Fog
|
||
|
module Compute
|
||
|
class Serverlove
|
||
|
class Real
|
||
|
|
||
|
def create_drive(options)
|
||
|
return nil if options.empty? || options.nil?
|
||
|
request(:method => "post", :path => "/drives/create", :expects => 200, :options => options)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|