1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Destroying drives is easy.

This commit is contained in:
Sean Handley 2012-04-27 15:18:21 +01:00
parent 02db287340
commit d4863eb29d

View file

@ -0,0 +1,13 @@
module Fog
module Compute
class Serverlove
class Real
def destroy_drive(drive_id)
request(:method => "post", :path => "/drives/#{drive_id}/destroy", :expects => 204)
end
end
end
end
end