Sha256: 2db72d6081fc305b9b7d1b35db66522d288b90a7e80289e15ec7acb0ca8f200a
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
module Fog module Compute class DigitalOceanV2 class Real def transfer_image(id, region) body = { :type => 'transfer', :region => region } encoded_body = Fog::JSON.encode(body) request( :expects => [201], :headers => { 'Content-Type' => "application/json; charset=UTF-8", }, :method => 'POST', :path => "v2/images/#{id}/actions", :body => encoded_body, ) end end class Mock def transfer_image(id, name) response = Excon::Response.new response.status = 201 response.body = { 'action' => { 'id' => 36805527, 'status' => 'in-progress', 'type' => 'transfer', 'started_at' => '2014-11-14T16:42:45Z', 'completed_at' => null, 'resource_id' => 7938269, 'resource_type' => 'image', 'region' => 'nyc3', 'region_slug' => 'nyc3' } } response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems