update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: password-info-query-dto
title: PasswordInfoQueryDTO
pagination_label: PasswordInfoQueryDTO
sidebar_label: PasswordInfoQueryDTO
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'PasswordInfoQueryDTO']
slug: /tools/sdk/powershell/beta/models/password-info-query-dto
tags: ['SDK', 'Software Development Kit', 'PasswordInfoQueryDTO']
---
# PasswordInfoQueryDTO
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**UserName** | Pointer to **String** | The login name of the user | [optional]
**SourceName** | Pointer to **String** | The display name of the source | [optional]
## Examples
- Prepare the resource
```powershell
$PasswordInfoQueryDTO = Initialize-PSSailpoint.BetaPasswordInfoQueryDTO -UserName Abby.Smith `
-SourceName My-AD
```
- Convert the resource to JSON
```powershell
$PasswordInfoQueryDTO | ConvertTo-JSON
```
[[Back to top]](#)