1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/cloudsigma/requests/clone_snapshot.rb
zephyrean 0eea58de12 [CloudSigma] add snapshots (#3491)
* [CloudSigma] add snapshots
2016-08-12 10:26:17 -03:00

31 lines
785 B
Ruby

module Fog
module Compute
class CloudSigma
class Real
def clone_snapshot(snap_id, clone_params={})
request(:path => "snapshots/#{snap_id}/action/",
:method => 'POST',
:query => {:do => :clone},
:body => clone_params,
:expects => [200, 202])
end
end
class Mock
def clone_snapshot(snap_id, clone_params={})
snapshot = self.data[:snapshots][snap_id].dup
uuid = self.class.random_uuid
snapshot['uuid'] = uuid
self.data[:snapshots][uuid] = snapshot
response = Excon::Response.new
response.status = 200
response.body = snapshot
response
end
end
end
end
end