public async Task <HttpResponseMessage> GetHostSettings()
        {
            var tracer = _traceFactory.GetTracer();

            using (tracer.Step("FunctionsController.GetHostSettings()"))
            {
                return(Request.CreateResponse(HttpStatusCode.OK, await _manager.GetHostConfigAsync()));
            }
        }