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/cloudstack/requests/compute/detach_volume.rb

21 lines
432 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Deletes a specified domain.
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/detachVolume.html]
def detach_volume(id)
options = {
'command' => 'detachVolume',
'id' => id
}
request(options)
end
end
end
end
end