I made an Azure Powershell function that needs to write some data into a blob, so am using an outputBlob binding along with:
Push-OutputBinding -Name <name> -Value <value>
That writes the data I need into the blob - great! But the issue is that every time the function runs it overwrites the blob content. I cannot see how to get the Push-OutputBinding cmdlet to append data into the blob, rather than 'set' it. I have tried setting the -Clobber switch, but it doesn't seem to make any difference.
Bindings seem like a nice way to interact with Blob storage without having to pull in more code to instantiate a more full-on client session, I hope this is possible? Would appreciate any pointers.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…