I have an Azure Function triggered by blob: BlobTrigger("input/{name}"
From Microsoft Azure Storage Explorer, is there an easy way to (re-)trigger this function other than downloading the file, deleting the blob and uploading the file?
I have an Azure Function triggered by blob: BlobTrigger("input/{name}"
From Microsoft Azure Storage Explorer, is there an easy way to (re-)trigger this function other than downloading the file, deleting the blob and uploading the file?
One of the ways is using event hub trigger to azure function, I have reproduced in my environment and followed below steps: Created an event subscription as below from Azure Blob storage:
So, whenever you do any of the events in azure storage explorer such as renamed, blob tier changed , etc this event grid subscription triggers the end point (i.e the azure function).
You can trigger function when you change blob tier, blob renamed,get SAS token for your container.