I'm trying to set up a blob trigger function that only triggers on a blob update. Looking at the Microsoft docs I've only been able to figure out the example that triggers on a create and update. I haven't found anywhere that gives an example of how to specify when it fires off the trigger. Is there a way to specify it to only trigger when a blob is updated and not created? Like an attribute or something?
[Function("BlobTrigger")]
public void Run([BlobTrigger("blob/{name}", Connection = "")] string myBlob, string name)
{
_logger.LogInformation($"C# Blob trigger function Processed blob\n Name: {name} \n Data: {myBlob}");
}