2010-09-08 12:58:51 -07:00
|
|
|
module Fog
|
2011-06-16 16:28:54 -07:00
|
|
|
module Compute
|
|
|
|
class NewServers
|
2010-09-08 12:58:51 -07:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Shutdown a running server
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * serverId<~String> - The id of the server to shutdown
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'server'<~Hash>:
|
|
|
|
# * 'id'<~String> - Id of the image
|
|
|
|
#
|
|
|
|
def cancel_server(server_id)
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
|
|
|
:parser => Fog::ToHashDocument.new,
|
|
|
|
:path => 'api/cancelServer',
|
|
|
|
:query => {'serverId' => server_id}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|