Questions tagged [azure-function-app]

A function app is the container that hosts the execution of individual functions in the serverless framework Azure Functions.

A function app is the container that hosts the execution of individual functions in the framework.

Create a function app from the Azure portal

619 questions
-1
votes
1 answer

Accessing VM drives using TimeTrigger Function App

I have a requirement where i need to delete some files from Azure VM drive. I created FunctionApp (Time Trigger) that will check and delete files from drive folder. I also integrated Function APP with Azure VM VNET. Yet i am getting exception of…
-1
votes
1 answer

How do I create an Azure function app message queue via the CI/CD pipeline?

I can use the Azure portal to create a function app and functions, and add bindings for output to a message queue. For example, by using the integrate option under the function I can add a new output, in this case a message queue: After adding a…
-2
votes
1 answer

ILogger is not injected when using new DI functionality - Azure Functions

ILogger is not injected when using new DI functionality and not showing the Log Information in console public class SampleGreeter : IGreeter { private readonly ILogger logger; public SampleGreeter(ILogger
-2
votes
1 answer

Azure function execute exe by getting file from azure blob storage as input params

Here is my sample code pasted below, an HttpTriggered azure function that runs an exe and accepts a string as input parameter. and returns output.The code I posted below works perfectly fine. I am trying to expand my code from here to accept file…
roney
  • 756
  • 1
  • 10
  • 28
-2
votes
1 answer

Azure golang function does not receive request payload in the body

I have created an Azure Function in Go. The function is working properly in local machine with GET & POST requests. When published, request payload sent via POST is not available in the request object. Here's my code: # Main function mux :=…
1 2 3
41
42