mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.5 KiB
1.5 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-auth-profile | AuthProfile | AuthProfile | AuthProfile | powershellsdk |
|
/tools/sdk/powershell/v2024/models/auth-profile |
|
AuthProfile
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Name | String | Authentication Profile name. | [optional] |
| OffNetwork | Boolean | Use it to block access from off network. | [optional] [default to $false] |
| UntrustedGeography | Boolean | Use it to block access from untrusted geoographies. | [optional] [default to $false] |
| ApplicationId | String | Application ID. | [optional] |
| ApplicationName | String | Application name. | [optional] |
| Type | Enum [ "BLOCK", "MFA", "NON_PTA", "PTA" ] | Type of the Authentication Profile. | [optional] |
| StrongAuthLogin | Boolean | Use it to enable strong authentication. | [optional] [default to $false] |
Examples
- Prepare the resource
$AuthProfile = Initialize-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