Sha256: e34bb82ce1671b62999c27e53b3b3f251954abee15ac2cf32c8565cebffd6fd9
Contents?: true
Size: 481 Bytes
Versions: 4
Compression:
Stored size: 481 Bytes
Contents
module Fog module Volume class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems