mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
8920e7bbfb
Provide a method for attaching, listing, and detaching block storage volumes on Rackspace next-generation cloud servers.
15 lines
333 B
Ruby
15 lines
333 B
Ruby
module Fog
|
|
module Compute
|
|
class RackspaceV2
|
|
class Real
|
|
def delete_attachment(server_id, volume_id)
|
|
request(
|
|
:expects => [202],
|
|
:method => 'DELETE',
|
|
:path => "servers/#{server_id}/os-volume_attachments/#{volume_id}"
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|