Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/MfaOktaConfig.md
2025-01-28 13:29:29 -05:00

1.4 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-mfa-okta-config MfaOktaConfig MfaOktaConfig MfaOktaConfig powershellsdk
powershell
PowerShell
sdk
MfaOktaConfig
V2024MfaOktaConfig
/tools/sdk/powershell/v2024/models/mfa-okta-config
SDK
Software Development Kit
MfaOktaConfig
V2024MfaOktaConfig

MfaOktaConfig

Properties

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

Examples

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

[Back to top]