2010-09-08 15:58:51 -04:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
2012-03-01 21:54:49 -05:00
|
|
|
class BareMetalCloud
|
2010-09-08 15:58:51 -04: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
|