Cmdlets for Google Directory

Build 24.0.9062

Update-GoogleDirectory Cmdlet

Parameters   Output Objects  

Google Directory データを更新します。

Syntax

Update-GoogleDirectory [parameters]

Remarks

Update-GoogleDirectory コマンドレットを使って、SQL UPDATE ステートメントに似た構文を用いてGoogle Directory データを更新できます。

$conn = Connect-GoogleDirectory -InitiateOAuth 'GETANDREFRESH' -OAuthClientId 'OAuthClientId' -OAuthClientSecret 'OAuthClientSecret'
Update-GoogleDirectory -Connection $conn -Table "Group" -Columns @("Email") -Values @("[email protected]") -Id "S"
Where パラメータはテーブルの主キーを指定するためにも使われます。
Update-GoogleDirectory -Connection $conn -Table "Group" -Columns @("Email") -Values @("[email protected]") -Where "Id = 'S'"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-GoogleDirectory -Connection $conn -Table Group -Where "CustomerId = 'eyt593htjgh'" | Update-GoogleDirectory -Columns @("CustomerId") -Values @("eyt593htjgh 2")

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9062