Skip to main content

AuthProfile

Properties

NameTypeDescriptionNotes
NameStringAuthentication Profile name.[optional]
OffNetworkBooleanUse it to block access from off network.[optional] [default to $false]
UntrustedGeographyBooleanUse it to block access from untrusted geoographies.[optional] [default to $false]
ApplicationIdStringApplication ID.[optional]
ApplicationNameStringApplication name.[optional]
TypeEnum [ "BLOCK", "MFA", "NON_PTA", "PTA" ]Type of the Authentication Profile.[optional]
StrongAuthLoginBooleanUse it to enable strong authentication.[optional] [default to $false]

Examples

  • Prepare the resource
$AuthProfile = Initialize-PSSailpoint.V2024AuthProfile  -Name EndToEnd-Profile `
-OffNetwork true `
-UntrustedGeography true `
-ApplicationId 2c91808458ae7a4f0158b1bbf8af0628 `
-ApplicationName EndToEnd-Source `
-Type PTA `
-StrongAuthLogin true
  • Convert the resource to JSON
$AuthProfile | ConvertTo-JSON

[Back to top]