共用方式為


Remove-DataGatewayClusterUser

從閘道叢集移除使用者(包括系統管理員)

語法

Remove-DataGatewayClusterUser
      [-Scope <PowerBIUserScope>]
      [-RegionKey <String>]
      -GatewayClusterId <Guid>
      -PrincipalObjectId <Guid>
      [<CommonParameters>]

Description

從閘道叢集移除使用者(包括系統管理員)

範例

範例 1

PS C:\> $userToRemove = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> Remove-DataGatewayClusterUser -GatewayClusterId DC8F2C49-5731-4B27-966B-3DB5094C2E77 -PrincipalObjectId $userToRemove

從閘道叢集移除使用者 「testUpn@tenant.com」。。

範例 2

PS C:\> $userToRemove = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> Remove-DataGatewayClusterUser -GatewayClusterId DC8F2C49-5731-4B27-966B-3DB5094C2E77 -PrincipalObjectId $userToRemove -RegionKey brazilsouth

從閘道叢集移除使用者 「testUpn@tenant.com」。。 此命令會在巴西南部區域執行,因此提供的閘道叢集標識碼應該位於該區域。

參數

-GatewayClusterId

需要移除使用者的閘道叢集

類型:Guid
別名:Cluster, Id
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-PrincipalObjectId

要移除之使用者的 Azure Active Directory (AAD) 主體物件識別碼 (亦即使用者識別碼)

類型:Guid
別名:User
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-RegionKey

此命令必須在其中執行的區域。 未提供 -RegionKey 會在租用戶的預設區域中執行 命令。 若要取得可用區域參數的清單,請執行 Get-DataGatewayRegion 命令

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Scope

要執行命令的安全性範圍。 這會判斷您是否在租使用者/服務管理員或閘道管理員的範圍內執行此命令

類型:PowerBIUserScope
接受的值:Individual, Organization
Position:Named
預設值:Individual
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

None

輸出

System.Void