Skip to main content

MfaDuoConfig

Properties

NameTypeDescriptionNotes
mfa_methodstrMfa method name[optional]
enabledboolIf MFA method is enabled.[optional] [default to False]
hoststrThe server host name or IP address of the MFA provider.[optional]
access_keystrThe secret key for authenticating requests to the MFA provider.[optional]
identity_attributestrOptional. The name of the attribute for mapping IdentityNow identity to the MFA provider.[optional]
config_propertiesmap[string]objectA map with additional config properties for the given MFA method - duo-web.[optional]
}

Example

from sailpoint.beta.models.mfa_duo_config import MfaDuoConfig

mfa_duo_config = MfaDuoConfig(
mfa_method='duo-web',
enabled=True,
host='example.com',
access_key='qw123Y3QlA5UqocYpdU3rEkzrK2D497y',
identity_attribute='email',
config_properties={skey=qwERttyZx1CdlQye2Vwtbsjr3HKddy4BAiCXjc5x, ikey=Q123WE45R6TY7890ZXCV}
)

[Back to top]