Remove-Azure Cmdlet
Azure Table Storage データを削除します。
Syntax
Remove-Azure [parameters]
Remarks
Remove-Azure コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてAzure Table Storage データを削除できます。
$conn = Connect-Azure -AccessKey 'myAccessKey' -Account 'myAccountName' Remove-Azure -Connection $conn -Table "NorthwindProducts" -Id "1"Where パラメータは主キーを指定するためにも使われます。
Remove-Azure -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-Azure -Connection $conn -Table NorthwindProducts -Where "Industry = 'Floppy Disks'" | Remove-Azure