2011-10-01 01:45:09 +04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Clodo
|
|
|
|
class Real
|
|
|
|
def server_action(id, action)
|
|
|
|
request(
|
2012-04-25 10:31:28 -04:00
|
|
|
:body => Fog::JSON.encode(action),
|
2011-10-01 01:45:09 +04:00
|
|
|
:expects => [204],
|
|
|
|
:method => 'POST',
|
|
|
|
:path => "servers/#{id}/action")
|
|
|
|
end
|
|
|
|
end
|
2011-10-30 20:59:43 +03:00
|
|
|
class Mock
|
|
|
|
def server_action(id, action)
|
2011-11-08 15:01:58 +04:00
|
|
|
|
|
|
|
raise Excon::Errors::BadRequest.new("Invalid server id #{id}.") unless id > 0
|
|
|
|
|
2011-10-30 20:59:43 +03:00
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 204
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end
|
2011-10-01 01:45:09 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|