Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/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
beta-mfa-okta-config MfaOktaConfig MfaOktaConfig MfaOktaConfig powershellsdk
powershell
PowerShell
sdk
MfaOktaConfig
BetaMfaOktaConfig
/tools/sdk/powershell/beta/models/mfa-okta-config
SDK
Software Development Kit
MfaOktaConfig
BetaMfaOktaConfig

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-BetaMfaOktaConfig  -MfaMethod okta-verify `
 -Enabled true `
 -VarHost example.com `
 -AccessKey qw123Y3QlA5UqocYpdU3rEkzrK2D497y `
 -IdentityAttribute email
  • Convert the resource to JSON
$MfaOktaConfig | ConvertTo-JSON

[Back to top]