Yutao Huang
Yutao Huang

Reputation: 1571

Azure ARM REST API for manipulating Azure Functions?

I believe Azure ARM does support Azure Functions because obviously this GitHub project https://github.com/sedouard/azure-functions-node is calling ARM to create/get/list/delete Azure Functions. But I couldn't find anything about Azure Functions on Azure REST API Reference (https://learn.microsoft.com/en-us/rest/api/).

Is it an officially supported feature in ARM to manipulate Azure Functions? Where can I find the complete (and up-to-date) documentation of Azure ARM REST API for Azure Functions?

Upvotes: 3

Views: 537

Answers (1)

Fabio Cavalcante
Fabio Cavalcante

Reputation: 12538

Azure Functions is built on top of App Service, and ARM is indeed supported.

You can find links to the REST API and template format for Function Apps under the Web & Mobile section here

Upvotes: 4

Related Questions