Rockstart
Rockstart

Reputation: 2377

Azure SAS token for specific tables

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

Answers (1)

Gaurav Mantri
Gaurav Mantri

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

Related Questions