Sha256: e56aa594daf241f7a45bc65834e5c0e0fda173a2ac4eedfd8d12ef749eddb8c0
Contents?: true
Size: 532 Bytes
Versions: 23
Compression:
Stored size: 532 Bytes
Contents
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
Version data entries
23 entries across 23 versions & 9 rubygems