According to this article detailing the limits of Azure Storage, there is a limit on the number of Azure Resource Manager requests that can be made.
Additionally, this article details limits of the ARM API. A post here claims they ran into issues running a list operations after making too many requests.
My question is, is there a limit on number of SAS Keys generated per hour for blob storage? Is creating a SAS Key an ARM event?
For example, if I'm using the Python Azure Storage SDK and I attempt to create 160,000 SAS keys in one hour for various blobs (files in containers in storage accounts), will I be throttled or stopped?
My application depends on these keys for allowing micro services access to protected data, but I cannot scale this application if I cannot create a large amount of SAS keys in a short period of time.