Remove-GoogleDirectory Cmdlet
Google Directory データを削除します。
Syntax
Remove-GoogleDirectory [parameters]
Remarks
Remove-GoogleDirectory コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてGoogle Directory データを削除できます。
$conn = Connect-GoogleDirectory -InitiateOAuth 'GETANDREFRESH' -OAuthClientId 'OAuthClientId' -OAuthClientSecret 'OAuthClientSecret' Remove-GoogleDirectory -Connection $conn -Table "Group" -Id "S"Where パラメータは主キーを指定するためにも使われます。
Remove-GoogleDirectory -Connection $conn -Table "exTablePowershell;" -Where "Id = S"主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-GoogleDirectory -Connection $conn -Table Group -Where "CustomerId = 'eyt593htjgh'" | Remove-GoogleDirectory