Azure Powershell-使用SAS令牌从Azure表读取所有行(只读)

时间:2019-03-05 15:53:55

标签: azure powershell azure-table-storage azure-powershell

如果我具有特定Azure存储表的只读SAS令牌,如何使用Get-AzureStorageTableRowAll?无论我尝试了什么,都行不通!

2 个答案:

答案 0 :(得分:0)

在生成sas令牌时,还应包括list权限:

enter image description here

请尝试以下代码:

$saContext = New-AzureStorageContext -StorageAccountName "account_name" -SasToken "your sas token"
$table = Get-AzureStorageTable -Name $tableName -Context $saContext
Get-AzureStorageTableRowAll -table $table

测试结果:

enter image description here

答案 1 :(得分:0)

使用Az模块目前无法实现,因为Get-AzureStorageTableRowAll不存在。