I have defined a out binding to store file in blobstorage:
function.json:
{
"type": "blob",
"direction": "out",
"name": "outputBlob",
"path": "outcontainer/{outname}",
"connection": "storagevoyager_STORAGE"
}
Now i try to specify the "outname" in python code:
outputBlob.outname = "test.txt"
outname = "test.txt"
outputBlob.set(fileobj)
System.Private.CoreLib: Exception while executing function: Functions..Microsoft.Azure.WebJobs.Host: No value for named parameter 'outname'.
So how can i define the outname in my code ? I can't find any good reference.
Do i need to update enviroment variables? Also with {rand-guid} it will work.