Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/MfaOktaConfig.md
2025-05-07 14:37:48 +00:00

1.3 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
v2025-mfa-okta-config MfaOktaConfig MfaOktaConfig MfaOktaConfig powershellsdk
powershell
PowerShell
sdk
MfaOktaConfig
V2025MfaOktaConfig
/tools/sdk/powershell/v2025/models/mfa-okta-config
SDK
Software Development Kit
MfaOktaConfig
V2025MfaOktaConfig

MfaOktaConfig

Properties

Name Type Description Notes
MfaMethod String Mfa method name [optional]
Enabled Boolean If MFA method is enabled. [optional] [default to $false]
VarHost String The server host name or IP address of the MFA provider. [optional]
AccessKey String The secret key for authenticating requests to the MFA provider. [optional]
IdentityAttribute String Optional. The name of the attribute for mapping IdentityNow identity to the MFA provider. [optional]

Examples

  • Prepare the resource
$MfaOktaConfig = Initialize-V2025MfaOktaConfig  -MfaMethod okta-verify `
 -Enabled true `
 -VarHost example.com `
 -AccessKey qw123Y3QlA5UqocYpdU3rEkzrK2D497y `
 -IdentityAttribute email
  • Convert the resource to JSON
$MfaOktaConfig | ConvertTo-JSON

[Back to top]