Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating Azure Functions programmatically

Tags:

azure

I´m looking at Azure Functions capabilities and the documentation does not say anything about uploading, creating or deleting a Function programmatically, nor anything about listing enabled/disabled Functions. Any ideas on how to do that? The Azure API reference has no section for Azure Functions.

like image 314
Jaumir Avatar asked Oct 25 '25 05:10

Jaumir


1 Answers

This functionality exists within the Azure CLI toolset.

  • Here is a guide on creating functions via the CLI
  • Documentation for the functions segment of Azure CLI

Hopefully these two resources should help get started. If you were looking for a publicly facing API, you may be out of luck.

like image 85
Stefan Crain Avatar answered Oct 26 '25 19:10

Stefan Crain