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: beta-password-info-query-dto
title: PasswordInfoQueryDTO
pagination_label: PasswordInfoQueryDTO
sidebar_label: PasswordInfoQueryDTO
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'PasswordInfoQueryDTO', 'BetaPasswordInfoQueryDTO']
slug: /tools/sdk/powershell/beta/models/password-info-query-dto
tags: ['SDK', 'Software Development Kit', 'PasswordInfoQueryDTO', 'BetaPasswordInfoQueryDTO']
---
# 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]](#)