Remove-GoogleAdsManager Cmdlet
Deletes Google Ad Manager data.
Syntax
Remove-GoogleAdsManager [parameters]
Remarks
The Remove-GoogleAdsManager cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Google Ad Manager data.
$conn = Connect-GoogleAdsManager Remove-GoogleAdsManager -Connection $conn -Table "Orders" -Id "300000002693011"The Where parameter can also be used to specify the primary key:
Remove-GoogleAdsManager -Connection $conn -Table "exTablePowershell;" -Where "Id = 300000002693011"The primary key can also be passed to the cmdlet along the pipeline:
Select-GoogleAdsManager -Connection $conn -Table Orders -Where "Id = '2112976978'" | Remove-GoogleAdsManager