fog--fog/lib/fog/brightbox/requests/compute/stop_server.rb

28 lines
606 B
Ruby
Raw Normal View History

module Fog
module Brightbox
class Compute
class Real
def stop_server(identifier, options = {})
return nil if identifier.nil? || identifier == ""
request(
:expects => [202],
:method => 'POST',
:path => "/1.0/servers/#{identifier}/stop",
:headers => {"Content-Type" => "application/json"},
:body => options.to_json
)
end
end
class Mock
def stop_server(identifier, options = {})
Fog::Mock.not_implemented
end
end
end
end
end