2011-09-30 17: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-09-30 17:45:09 -04:00
|
|
|
:expects => [204],
|
|
|
|
:method => 'POST',
|
|
|
|
:path => "servers/#{id}/action")
|
|
|
|
end
|
|
|
|
end
|
2011-10-30 13:59:43 -04:00
|
|
|
class Mock
|
|
|
|
def server_action(id, action)
|
2011-11-08 06:01:58 -05:00
|
|
|
raise Excon::Errors::BadRequest.new("Invalid server id #{id}.") unless id > 0
|
|
|
|
|
2011-10-30 13:59:43 -04:00
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 204
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end
|
2011-09-30 17:45:09 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|