We need to figure out how to have PowerServer save files to an Azure Storage file. We currently store the files in the database, but this can cause an Azure Database to grow too much for larger clients. We had a solution for this for Desktop / Server installations but in Azure we have to create a different solution. It would be nice if we could create a custom PowerServer API command that could be called within PowerScript, but that doesn't look like an option as far as I could find.
Any suggestions on how this could be done would be helpful.
Since these methods work with the HTTP PUT method and PB doesn't have a way to perform PUT requests that support large files you can upload them part by part with the Put Block and then consolidate all blocks into a file with Put Block List
Regards - Francisco