Sha256: efe557a66cf31e29f71e2aa1c87f5738134374f6083802944d68c89a4ee98d41
Contents?: true
Size: 479 Bytes
Versions: 22
Compression:
Stored size: 479 Bytes
Contents
module Fog module OpenStack class Volume module Real def accept_transfer(transfer_id, auth_key) data = { 'accept' => { 'auth_key' => auth_key } } request( :body => Fog::JSON.encode(data), :expects => [200, 202], :method => 'POST', :path => "os-volume-transfer/#{transfer_id}/accept" ) end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems