adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: kba-question
title: KbaQuestion
pagination_label: KbaQuestion
sidebar_label: KbaQuestion
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'KbaQuestion', 'KbaQuestion']
slug: /tools/sdk/powershell/v3/models/kba-question
tags: ['SDK', 'Software Development Kit', 'KbaQuestion', 'KbaQuestion']
---
# KbaQuestion
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | KBA Question Id | [required]
**Text** | **String** | KBA Question description | [required]
**HasAnswer** | **Boolean** | Denotes whether the KBA question has an answer configured for any user in the tenant | [required]
**NumAnswers** | **Int32** | Denotes the number of KBA configurations for this question | [required]
## Examples
- Prepare the resource
```powershell
$KbaQuestion = Initialize-PSSailpoint.V3KbaQuestion -Id 143cfd3b-c23f-426b-ae5f-d3db06fa5919 `
-Text [{"text":"Nouvelle question MFA -1 ?","locale":"fr"},{"text":"MFA new question -1 ?","locale":""}] `
-HasAnswer true `
-NumAnswers 5
```
- Convert the resource to JSON
```powershell
$KbaQuestion | ConvertTo-JSON
```
[[Back to top]](#)