Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/MfaOktaConfig.md
2025-02-20 12:59:19 -05:00

1.2 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 pythonsdk
python
Python
sdk
MfaOktaConfig
BetaMfaOktaConfig
/tools/sdk/python/beta/models/mfa-okta-config
SDK
Software Development Kit
MfaOktaConfig
BetaMfaOktaConfig

MfaOktaConfig

Properties

Name Type Description Notes
mfa_method str Mfa method name [optional]
enabled bool If MFA method is enabled. [optional] [default to False]
host str The server host name or IP address of the MFA provider. [optional]
access_key str The secret key for authenticating requests to the MFA provider. [optional]
identity_attribute str Optional. The name of the attribute for mapping IdentityNow identity to the MFA provider. [optional]
}

Example

from sailpoint.beta.models.mfa_okta_config import MfaOktaConfig

mfa_okta_config = MfaOktaConfig(
mfa_method='okta-verify',
enabled=True,
host='example.com',
access_key='qw123Y3QlA5UqocYpdU3rEkzrK2D497y',
identity_attribute='email'
)

[Back to top]