mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
update to doc files
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: mfa-duo-config
|
||||
title: MfaDuoConfig
|
||||
pagination_label: MfaDuoConfig
|
||||
sidebar_label: MfaDuoConfig
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'MfaDuoConfig']
|
||||
slug: /tools/sdk/powershell/beta/models/mfa-duo-config
|
||||
tags: ['SDK', 'Software Development Kit', 'MfaDuoConfig']
|
||||
---
|
||||
|
||||
|
||||
# MfaDuoConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**MfaMethod** | Pointer to **String** | Mfa method name | [optional]
|
||||
**Enabled** | Pointer to **Boolean** | If MFA method is enabled. | [optional] [default to $false]
|
||||
**VarHost** | Pointer to **String** | The server host name or IP address of the MFA provider. | [optional]
|
||||
**AccessKey** | Pointer to **String** | The secret key for authenticating requests to the MFA provider. | [optional]
|
||||
**IdentityAttribute** | Pointer to **String** | Optional. The name of the attribute for mapping IdentityNow identity to the MFA provider. | [optional]
|
||||
**ConfigProperties** | Pointer to [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | A map with additional config properties for the given MFA method - duo-web. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$MfaDuoConfig = Initialize-PSSailpoint.BetaMfaDuoConfig -MfaMethod duo-web `
|
||||
-Enabled true `
|
||||
-VarHost example.com `
|
||||
-AccessKey qw123Y3QlA5UqocYpdU3rEkzrK2D497y `
|
||||
-IdentityAttribute email `
|
||||
-ConfigProperties {skey=qwERttyZx1CdlQye2Vwtbsjr3HKddy4BAiCXjc5x, ikey=Q123WE45R6TY7890ZXCV}
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$MfaDuoConfig | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user