Accessing `stored access policy` of Azure storage account from R

I'm trying to list all "stored access policies" of all the container in Azure storage account from R with no success !
What I did is using the Azurestor package and list all the container :

account_name <- "mystorage"
account_key <- "mykey"


blob_endpoint <- sprintf("https://%s.blob.core.windows.net", account_name)
blob_client <- storage_endpoint(blob_endpoint, key=account_key)

containers <- AzureStor::list_storage_containers(blob_client)

Here I need to iterate through the containers, but I can not find a function which could return the stored access policy of each container :frowning:

I need to have identifier, start time, expiry time and permissions per stored access policies of each container in a storage account !
Any idea how to get this ?

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.