Reputation: 2377
I want to create SAS token for Azure storage account, which has Read permissions on TableA & TableB.
Is that possible with current storage client library?
Upvotes: 2
Views: 531
Reputation: 136306
As of today it is not possible to create one SAS token for 2 tables. You would either need to create SAS token for each table separately or create an Account SAS which will give access to all tables.
Upvotes: 1