bubka85
bubka85

Reputation: 59

What api documentation tool can be used for Spring boot-Azure function?

Azure functions use HTTP trigger(HTTP protocol) not exactly the REST. Enough resource is available for API documentation for Spring-Rest but not for Spring-Azure

Upvotes: 1

Views: 418

Answers (1)

PramodValavala
PramodValavala

Reputation: 6647

The official way to generate OpenAPI definitions with Azure Functions is to use Azure API Management (APIM) to generate it for you. There is even a consumption tier for APIM which pairs well as a custom gateway for Azure Functions.

The same should work with Spring Cloud Functions deployed on Azure too.

Upvotes: 1

Related Questions