1
votes

I am creating multiple azure function (HTTP trigger) to get content from blob storage,get few metadata values of a single blob and get all metadata attributes of a particular blob type.

I am confused with using binding vs using rest API of blob storage vs azure-storage sdk.

Which is the best approach to use when creating an azure function? If you can point me to some sample documentation of this kind, that would be helpful as well. Thank you.

1

1 Answers

1
votes

A simple advice would be to use the binding if it works at all for your scenario, which is when you can directly bind parameters of the request to the blob name to load.

Using the binding basically saves you from the burden of coding against SDKs directly, since you just get the blob as input parameter.