The possible values for SharedAccessBlobPermissions
are:
- None (0)
- Read (1)
- Write (2)
- Delete (4)
- List (8)
- Add (16)
- Create (32)
What are the differences between Add
, Create
and Write
? I can't find any documentation that clarifies this.
The possible values for SharedAccessBlobPermissions
are:
What are the differences between Add
, Create
and Write
? I can't find any documentation that clarifies this.
You can find information about these permissions here: https://msdn.microsoft.com/en-us/library/azure/dn140255.aspx.
From what I understand reading about these permissions:
In our application, we use Shared Access Signature extensively and we make use of Write
permission almost exclusively on all the blob related operations.