test-integration/Microsoft.Azure.WebJobs.Extensions.OpenApi.TestApp/Post_ApplicationJson_UriObject_HttpTrigger.cs (27 lines of code) (raw):
using System;
using System.Net;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Azure.WebJobs.Extensions.OpenApi.Core.Attributes;
using Microsoft.Azure.WebJobs.Extensions.OpenApi.TestApp.Models;
using Microsoft.Extensions.Logging;
using Microsoft.OpenApi.Models;
namespace Microsoft.Azure.WebJobs.Extensions.OpenApi.TestApp
{
public static class Post_ApplicationJson_UriObject_HttpTrigger
{
[FunctionName(nameof(Post_ApplicationJson_UriObject_HttpTrigger))]
[OpenApiOperation(operationId: nameof(Post_ApplicationJson_UriObject_HttpTrigger.Post_ApplicationJson_UriObject), tags: new[] { "uri" })]
[OpenApiRequestBody(contentType: "text/plain", bodyType: typeof(Uri), Required = true, Description = "The OK response")]
[OpenApiResponseWithBody(statusCode: HttpStatusCode.OK, contentType: "application/json", bodyType: typeof(UriObjectModel), Description = "The OK response")]
public static async Task<IActionResult> Post_ApplicationJson_UriObject(
[HttpTrigger(AuthorizationLevel.Anonymous, "POST", Route = "post-applicationjson-uri")] HttpRequest req,
ILogger log)
{
var result = new OkResult();
return await Task.FromResult(result).ConfigureAwait(false);
}
}
}