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/bare_metal_cloud/requests/compute/cancel_server.rb
John Wang 3a17e5174b Switch from NewServers to BareMetalCloud for #773
Includes changing from new_servers to bare_metal_cloud as well as newservers to baremetalcloud.
2012-03-01 18:54:49 -08:00

30 lines
718 B
Ruby

module Fog
module Compute
class BareMetalCloud
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