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

1.1 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-config-test-response MfaConfigTestResponse MfaConfigTestResponse MfaConfigTestResponse pythonsdk
python
Python
sdk
MfaConfigTestResponse
V2024MfaConfigTestResponse
/tools/sdk/python/v2024/models/mfa-config-test-response
SDK
Software Development Kit
MfaConfigTestResponse
V2024MfaConfigTestResponse

MfaConfigTestResponse

Response model for configuration test of a given MFA method

Properties

Name Type Description Notes
state Enum [ 'SUCCESS', 'FAILED' ] The configuration test result. [optional] [readonly]
error str The error message to indicate the failure of configuration test. [optional] [readonly]
}

Example

from sailpoint.v2024.models.mfa_config_test_response import MfaConfigTestResponse

mfa_config_test_response = MfaConfigTestResponse(
state='SUCCESS',
error='MFA Method is disabled.'
)

[Back to top]