question

JianyingHuang-9069 avatar image
0 Votes"
JianyingHuang-9069 asked MayankBargali-MSFT answered

Can I deploy and manage Function App vis REST API?

Hi ,

Can I deploy and manage Function App vis REST API similar to the way I could do for Logic App?

Thanks,
Jianying

azure-functions
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

MayankBargali-MSFT avatar image
1 Vote"
MayankBargali-MSFT answered

@JianyingHuang-9069 As @BrigLamoreaux has already shared the details. I am also sharing previous discussion. There are multiple challenges while creating the function dynamically and the recommended way is through code deployment. One more thing to note that if the app ever gets deployed using Run-From-Package that will take precedence and the functions created using the rest API will no longer be available inside the app. We recommend using Run-From-Package for performance reasons as well.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

BrigLamoreaux avatar image
0 Votes"
BrigLamoreaux answered

Yes you can. Here is the documentation on creating a Function: https://docs.microsoft.com/en-us/rest/api/appservice/webapps/createfunction

However, most use cases it is best to use tools or SDKs that wrap the api and make it easier to work with. See the Deployment guides here: https://docs.microsoft.com/en-us/azure/azure-functions/functions-deployment-technologies

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.