如果我具有特定Azure存储表的只读SAS令牌,如何使用Get-AzureStorageTableRowAll
?无论我尝试了什么,都行不通!
答案 0 :(得分:0)
在生成sas令牌时,还应包括list
权限:
请尝试以下代码:
$saContext = New-AzureStorageContext -StorageAccountName "account_name" -SasToken "your sas token"
$table = Get-AzureStorageTable -Name $tableName -Context $saContext
Get-AzureStorageTableRowAll -table $table
测试结果:
答案 1 :(得分:0)
使用Az模块目前无法实现,因为Get-AzureStorageTableRowAll
不存在。