Azure / Azure/azure-functions-powershell-worker

Push-OutputBinding Blob name

Open
#772 2 comments 1 reaction 1 assignee Claimed by @stefanushinardi View on GitHub
enhancement
Dominant language
C#
Stars
215
Forks
61
Avg merge
21h 4m
Merged PRs (30d)
6

Description

Hi! Currently working on a function in Powershell with queue trigger. The queue item will contain some information, for example Blob name that a report should be saved as. However, I cannot find a way to set the Blob name during runtime.

The function.json looks like this:
```
{
"bindings": [
{
"name": "QueueItem",
"type": "queueTrigger",
"direction": "in",
"queueName": "report-queue",
"connection": "AzureWebJobsStorage"
},
{
"name": "myOutputBlob",
"type": "blob",
"direction": "out",
"path": "reports/{blobname}",
"connection": "AzureWebJobsStorage"
}
]
}
```

Can I set the {blobname} inside the function? Cannot find any information about this scenario in any documentation.

Thanks!

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.