Authenticator Identity Source
  • 28 Oct 2024
  • 2 Minutes to read
  • Dark
    Light
  • PDF

Authenticator Identity Source

  • Dark
    Light
  • PDF

Article summary

Get-LiquitAuthenticatorIdentitySource

Synopsis

Use this command to find out which authenticator is linked to which identity source.

Get-LiquitAuthenticatorIdentitySource
    [-Authenticator] <Authenticator>  
    [-LiquitContext <LiquitContext>]
    [<CommonParameters>]

Get-LiquitAuthenticatorIdentitySource
    [-Authenticator] <Authenticator>  
    [-ID] <guid[]>  
    [-LiquitContext <LiquitContext>] 
    [<CommonParameters>]
 
Get-LiquitAuthenticatorIdentitySource
    [-Authenticator] <Authenticator>  
    [-EntityRef] <EntityRef[]>  
    [-LiquitContext <LiquitContext>] 
    [<CommonParameters>]
 
Get-LiquitAuthenticatorIdentitySource
    [-Authenticator] <Authenticator>  
    [-Search] <string>  
    [-LiquitContext <LiquitContext>] 
    [<CommonParameters>]
 
Get-LiquitAuthenticatorIdentitySource
    [-Name] <string>  
    [-LiquitContext <LiquitContext>]
    [<CommonParameters>]

Examples

$AuthenticatorIdentitySource = Get-LiquitAuthenticatorIdentitySource -Authenticator $Authenticator[0] 

This command selects a specific authenticator.

Parameters

NameValueDescriptionRequiredDefault value
Authenticator<Authenticator>The name of authenticator used to provide multi-factor authentication in the Liquit Workspace.YesNo
Search<string>It enables users to search multiple columns within the table of the authenticatos from the Liquit Workspace UI, such as Name and Type. When a search term is provided, the parameter filters records by matching values in these indexed columns. However, it's important to note that not all columns in the table are indexed, meaning that searches for values in these non-indexed columns will not return results. Non-indexed columns include for example the ID and columns containing checkboxes.
Name<string>Searches on the authenticator identity source name itself.
LiquitContext<LiquitContext>Determines the selected zone.NoDefault

New-LiquitAuthenticatorIdentitySource

Synopsis

This command links a specific authenticator to a specific identity source.

New-LiquitAuthenticatorIdentitySource
    [-Authenticator] <Authenticator>  
    [-IdentitySource] <IdentitySource>  
    [-Prefix <string>]  
    [-Suffix <string>]  
    [-LiquitContext <LiquitContext>]
    [-WhatIf]
    [-Confirm] 
    [<CommonParameters>]

Parameters

NameValueDescriptionRequiredDefault value
Authenticator<Authenticator>The name of authenticator used to provide multi-factor authentication in the Liquit Workspace.YesNo
IdentitySource<IdentitySource>The identity source for which the authenticator will provide multi-factor authenticationYes
Prefix<string>If the authenticator has a realm prefix string specified, it is appended to the beginning of the username when it is submitted to the RADIUS server.
Suffix<string>If the authenticator has a realm suffix string specified, it is appended to the end of the username when it is submitted to the RADIUS server.
LiquitContext<LiquitContext>Determines the selected zone.NoDefault

Set-LiquitAuthenticatorIdentitySource

Synopsis

This command appends a suffix or a prefix to the username when it is submitted to the RADIUS server.

Set-LiquitAuthenticatorIdentitySource
    [-IdentitySourceAuthenticator] <IdentitySourceAuthenticator[]>  
    [-Suffix <string>]  
    [-Prefix <string>]  
    [-LiquitContext <LiquitContext>]
    [-WhatIf] 
    [-Confirm]
    [<CommonParameters>]

Examples

Set-LiquitAuthenticatorIdentitySource -IdentitySourceAuthenticator $AuthenticatorIdentitySource -Prefix "new" 

This command appends the "new" prefix to the beginning of the username when it is submitted to the RADIUS server.

Set-LiquitAuthenticatorIdentitySource -IdentitySourceAuthenticator $AuthenticatorIdentitySource -Suffix "new" 

This command appends the "new" suffix to the end of the username when it is submitted to the RADIUS server.

Parameters

NameValueDescriptionRequiredDefault value
IdentitySourceAuthenticator<IdentitySourceAuthenticator>Parameter that represents the connection between the authenticator and identity source.
Prefix<string>If the authenticator has a realm prefix string specified, it is appended to the beginning of the username when it is submitted to the RADIUS server.
Suffix<string>If the authenticator has a realm suffix string specified, it is appended to the end of the username when it is submitted to the RADIUS server.
LiquitContext<LiquitContext>Determines the selected zone.NoDefault

Remove-LiquitAuthenticatorIdentitySource

Synopsis

This command removes the link between an authenticator and an identity source.

Remove-LiquitAuthenticatorIdentitySource
    [-IdentitySourceAuthenticator] <IdentitySourceAuthenticator[]>  
    [-LiquitContext <LiquitContext>] 

Parameters

NameValueDescriptionRequiredDefault value
IdentitySourceAuthenticator<IdentitySourceAuthenticator>Parameter that represents the connection between the authenticator and identity source.
LiquitContext<LiquitContext>Determines the selected zone.NoDefault

Was this article helpful?

What's Next