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,37 @@
---
id: v2024-password-digit-token
title: PasswordDigitToken
pagination_label: PasswordDigitToken
sidebar_label: PasswordDigitToken
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'PasswordDigitToken', 'V2024PasswordDigitToken']
slug: /tools/sdk/powershell/v2024/models/password-digit-token
tags: ['SDK', 'Software Development Kit', 'PasswordDigitToken', 'V2024PasswordDigitToken']
---
# PasswordDigitToken
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DigitToken** | Pointer to **String** | The digit token for password management | [optional]
**RequestId** | Pointer to **String** | The reference ID of the digit token generation request | [optional]
## Examples
- Prepare the resource
```powershell
$PasswordDigitToken = Initialize-PSSailpoint.V2024PasswordDigitToken -DigitToken 09087713 `
-RequestId e1267ecd-fcd9-4c73-9c55-12555efad136
```
- Convert the resource to JSON
```powershell
$PasswordDigitToken | ConvertTo-JSON
```
[[Back to top]](#)