Reputation: 9013
I want to have ability to upload/delete a blob to Azure storage, but deny to update (modify) blob. I see only 3 types of access - Private, Blob, Container. But none from them does not allow to upload and deny to update.
Is it possible?
Upvotes: 0
Views: 121
Reputation: 1263
In Azure Storage this can be done creating the policies on containers and blobs. checkout this msdn blog
https://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-shared-access-signature-part-1/
https://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-shared-access-signature-part-2/
Upvotes: 2