fog--fog/lib/fog/cloudstack/requests/compute/reboot_router.rb

26 lines
580 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Starts a router.
#
# {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/rebootRouter.html]
def reboot_router(*args)
options = {}
if args[0].is_a? Hash
options = args[0]
options.merge!('command' => 'rebootRouter')
else
options.merge!('command' => 'rebootRouter',
'id' => args[0])
end
request(options)
end
end
end
end
end