mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
376 B
Ruby
22 lines
376 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class OpenStack
|
||
|
class Real
|
||
|
|
||
|
def detach_volume(server_id, attachment_id)
|
||
|
request(
|
||
|
:expects => 202,
|
||
|
:method => 'DELETE',
|
||
|
:path => "servers/%s/os-volume_attachments/%s" % [server_id, attachment_id]
|
||
|
)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|