mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2b284849a9
If the attachment does not exist it raises a NoMethodError instead of NotFound.
32 lines
793 B
Ruby
32 lines
793 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
|
|
|
|
def detach_volume(server_id, attachment_id)
|
|
response = Excon::Response.new
|
|
if self.data[:volumes][attachment_id] &&
|
|
self.data[:volumes][attachment_id]['attachments'].reject! { |attachment| attachment['serverId'] == server_id }
|
|
response.status = 202
|
|
response
|
|
else
|
|
raise Fog::Compute::OpenStack::NotFound
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|