mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
d50fe64007
snakecase Change in snaphot_id Added mcks for volume attach and detach Conflicts: lib/fog/openstack/requests/compute/create_volume.rb lib/fog/openstack/requests/compute/get_volume_details.rb lib/fog/openstack/requests/compute/list_volumes.rb
26 lines
532 B
Ruby
26 lines
532 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
|
|
response.status = 202
|
|
response
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|