I use the following code to add multiple messages to an Azure Storage Queue through an output binding on my Azure Function:
context.bindings.myQueue = [];
for (var msg of messages) {
context.bindings.myQueue.push(msg);
}
This doesn't seem possible with a Blob output binding, I can store a blob using context.bindings.myBlob = {...}
but I don't see a way to add multple blobs at once.
The data I'm trying to save to my Blob Storage is quite large so I would like to split it up into chunks and save them separately.
Is this possible through an output binding or would I have to use the azure-storage module to do this manually?