Set-DataGatewayInstaller
Modificare l'elenco di utenti che possono installare e registrare nuovi gateway nell'organizzazione È necessario accedere come tenant Amministrazione per eseguire questo comando.
Sintassi
Set-DataGatewayInstaller
[-PrincipalObjectIds <String[]>]
-Operation <OperationType>
-GatewayType <GatewayType>
[<CommonParameters>]
Descrizione
Impostare gli utenti che possono installare e registrare nuovi gateway nell'organizzazione.
Esempio
Esempio 1
PS C:\> $user1 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> $user2 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> Set-DataGatewayInstaller -PrincipalObjectIds $user1,$user2 -Operation Add -GatewayType Resource
Consentire agli utenti testUpn1@tenant.come testUpn2@tenant.com di registrare e installare un gateway dati locale in modalità standard.
Esempio 2
PS C:\> $user1 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> $user2 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> Set-DataGatewayInstaller -PrincipalObjectIds $user1,$user2 -Operation Remove -GatewayType Resource
Gli utenti testUpn1@tenant.come testUpn2@tenant.com non sono più autorizzati a registrare e installare un gateway dati locale in modalità standard.
Parametri
-GatewayType
Il tipo di gateway ha effetto sul comando. Il valore Resource
seguente indica il gateway dati locale in esecuzione in modalità standard.
Type: | GatewayType |
Accepted values: | Resource, Personal, VirtualNetwork |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Operation
Operazione da eseguire per l'utente specificato.
Type: | OperationType |
Accepted values: | None, Add, Remove |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PrincipalObjectIds
Elenco di ID oggetto principale di Azure Active Directory (AAD), ad esempio ID utente, in grado di configurare i gateway nell'organizzazione.
Type: | String[] |
Aliases: | Users |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Input
None
Output
System.Void