Functions.Templates/Templates/EventGridBlobTrigger-PowerShell/run.ps1 (4 lines of code) (raw):

# Input bindings are passed in via param block. param([byte[]] $InputBlob, $TriggerMetadata) # Write out the blob name and size to the information log. Write-Host "PowerShell Blob trigger function Processed blob! Name: $($TriggerMetadata.Name) Size: $($InputBlob.Length) bytes"