starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,36 @@
---
id: beta-mfa-config-test-response
title: MfaConfigTestResponse
pagination_label: MfaConfigTestResponse
sidebar_label: MfaConfigTestResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'MfaConfigTestResponse', 'BetaMfaConfigTestResponse']
slug: /tools/sdk/python/beta/models/mfa-config-test-response
tags: ['SDK', 'Software Development Kit', 'MfaConfigTestResponse', 'BetaMfaConfigTestResponse']
---
# 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
```python
from sailpoint.beta.models.mfa_config_test_response import MfaConfigTestResponse
mfa_config_test_response = MfaConfigTestResponse(
state='SUCCESS',
error='MFA Method is disabled.'
)
```
[[Back to top]](#)