Я пытаюсь вставить новую строку в хранилище таблиц с помощью 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}