adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: account-info-dto
title: AccountInfoDto
pagination_label: AccountInfoDto
sidebar_label: AccountInfoDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountInfoDto']
slug: /tools/sdk/powershell/beta/models/account-info-dto
tags: ['SDK', 'Software Development Kit', 'AccountInfoDto']
---
# AccountInfoDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**NativeIdentity** | Pointer to **String** | The unique ID of the account generated by the source system | [optional]
**DisplayName** | Pointer to **String** | Display name for this account | [optional]
**Uuid** | Pointer to **String** | UUID associated with this account | [optional]
## Examples
- Prepare the resource
```powershell
$AccountInfoDto = Initialize-PSSailpoint.BetaAccountInfoDto -NativeIdentity CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com `
-DisplayName Abby.Smith `
-Uuid {ad9fc391-246d-40af-b248-b6556a2b7c01}
```
- Convert the resource to JSON
```powershell
$AccountInfoDto | ConvertTo-JSON
```
[[Back to top]](#)