0
votes
@BlobOutput(dataType="Binary", name="$return", path="{data.url}")

We are using an Event grid trigger in java to get blob events from blob storage. Here {data.url} represents an image url with .tiff extension, our function converts the image from .tiff to .png format and saves it back in the same storage. Is there a way to change {data.url} and set it back to path param of @BlobOutput.

1

1 Answers

1
votes

Based on my knowing, for now dynamic binding is only available for .Net language, and it creates binding at runtime rather than change declarative binding configuration.

The frank alternative should be using Storage SDK and upload blob to target container manually.