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,45 @@
---
id: password-info
title: PasswordInfo
pagination_label: PasswordInfo
sidebar_label: PasswordInfo
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'PasswordInfo']
slug: /tools/sdk/powershell/beta/models/password-info
tags: ['SDK', 'Software Development Kit', 'PasswordInfo']
---
# PasswordInfo
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IdentityId** | Pointer to **String** | | [optional]
**SourceId** | Pointer to **String** | | [optional]
**PublicKeyId** | Pointer to **String** | | [optional]
**PublicKey** | Pointer to **String** | User's public key with Base64 encoding | [optional]
**Accounts** | Pointer to [**[]PasswordInfoAccount**](password-info-account) | Account info related to queried identity and source | [optional]
**Policies** | Pointer to **[]String** | Password constraints | [optional]
## Examples
- Prepare the resource
```powershell
$PasswordInfo = Initialize-PSSailpoint.BetaPasswordInfo -IdentityId 2c918085744fec4301746f9a5bce4605 `
-SourceId 2c918083746f642c01746f990884012a `
-PublicKeyId N2M1OTJiMGEtMDJlZS00ZWU3LTkyYTEtNjA5YmI5NWE3ZWVh `
-PublicKey MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuGFkWi2J75TztpbaPKd36bJnIB3J8gZ6UcoS9oSDYsqBzPpTsfZXYaEf4Y4BKGgJIXmE/lwhwuj7mU1itdZ2qTSNFtnXA8Fn75c3UUkk+h+wdZbkuSmqlsJo3R1OnJkwkJggcAy9Jvk9jlcrNLWorpQ1w9raUvxtvfgkSdq153KxotenQ1HciSyZ0nA/Kw0UaucLnho8xdRowZs11afXGXA9IT9H6D8T6zUdtSxm0nAyH+mluma5LdTfaM50W3l/L8q56Vrqmx2pZIiwdx/0+g3Y++jV70zom0ZBkC1MmSoLMrQYG5OICNjr72f78B2PaGXfarQHqARLjKpMVt9YIQIDAQAB `
-Accounts null `
-Policies [passwordRepeatedChar is 3, passwordMinAlpha is 1, passwordMinLength is 5, passwordMinNumeric is 1]
```
- Convert the resource to JSON
```powershell
$PasswordInfo | ConvertTo-JSON
```
[[Back to top]](#)