[FunctionName("Execute")]
[OpenApiOperation("Run", tags: new[] { "Run" }, Visibility = OpenApiVisibilityType.Important)]
[OpenApiSecurity("function", SecuritySchemeType.ApiKey, Name = "code", In = OpenApiSecurityLocationType.Query)]
[OpenApiRequestBody(contentType: "application/json; charset=utf-8", bodyType: typeof(RequestBody),
Description = "The example request JSON body", Example = typeof(RequestBodyExample))]
[OpenApiResponseWithBody(contentType: "application/json", bodyType: typeof(ResponseBody),
statusCode: HttpStatusCode.OK, Description = "The result", Example = typeof(ResponseBodyExample))]
public static async Task<IActionResult> RunAsync(
[FunctionName("Execute")]
[OpenApiOperation("Run", tags: new[] { "Run" }, Visibility = OpenApiVisibilityType.Important)]
[OpenApiSecurity("function", SecuritySchemeType.ApiKey, Name = "code", In = OpenApiSecurityLocationType.Query)]
[OpenApiRequestBody(contentType: "application/json; charset=utf-8", bodyType: typeof(RequestBody),
Description = "The example request JSON body", Example = typeof(RequestBodyExample))]
[OpenApiResponseWithBody(contentType: "application/json", bodyType: typeof(ResponseBody),
statusCode: HttpStatusCode.OK, Description = "The result", Example = typeof(ResponseBodyExample))]
public static async Task<IActionResult> RunAsync(