mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: v2024-mfa-okta-config
|
||||
title: MfaOktaConfig
|
||||
pagination_label: MfaOktaConfig
|
||||
sidebar_label: MfaOktaConfig
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'MfaOktaConfig', 'V2024MfaOktaConfig']
|
||||
slug: /tools/sdk/python/v2024/models/mfa-okta-config
|
||||
tags: ['SDK', 'Software Development Kit', 'MfaOktaConfig', 'V2024MfaOktaConfig']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.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]](#)
|
||||
|
||||
Reference in New Issue
Block a user