У меня есть привязка httpTrigger и привязка blob, в которой я создаю blob после обработки запроса. Имя большого двоичного объекта, которое мне нужно оценить во время выполнения, и использовать его в моем выражении. Есть ли способ добиться этого в функции python?
. json
{
"scriptFile": "__init__.py",
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get",
"post"
]
},
{
"name": "outputblob",
"type": "blob",
"path": "testcntainer/attachments/{customFileName}",
"connection": "",
"direction": "out"
},
{
"name": "$return",
"type": "http",
"direction": "out"
}
]
}