# File lib/fog/rackspace/requests/compute_v2/reboot_server.rb, line 22
        def reboot_server(server_id, type)
          body = {
            "reboot" => {
              "type" => type.upcase
            }
          }
          response(
            :body => body,
            :status => 202
          )
        end