Azure Cloud Shell を使用してテーブル ストレージに新しい行を挿入しようとしていますが、以下の例外に直面しています。挿入に使用する必要がある他のコマンドを教えてください。
引用符
Add-AzTableRow: The term 'Add-AzTableRow' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
引用符
以下はコマンドです:
$partitionKey1 = "partition1"
$partitionKey2 = "partition2"
Add-AzTableRow `
-table $cloudTable `
-partitionKey $partitionKey1 `
-rowKey ("CA") -property @{"username"="Chris";"userid"=1}