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,43 @@
---
id: app-account-details-source-account
title: AppAccountDetailsSourceAccount
pagination_label: AppAccountDetailsSourceAccount
sidebar_label: AppAccountDetailsSourceAccount
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AppAccountDetailsSourceAccount']
slug: /tools/sdk/powershell/v2024/models/app-account-details-source-account
tags: ['SDK', 'Software Development Kit', 'AppAccountDetailsSourceAccount']
---
# AppAccountDetailsSourceAccount
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The account ID | [optional]
**NativeIdentity** | Pointer to **String** | The native identity of account | [optional]
**DisplayName** | Pointer to **String** | The display name of account | [optional]
**SourceId** | Pointer to **String** | The source ID of account | [optional]
**SourceDisplayName** | Pointer to **String** | The source name of account | [optional]
## Examples
- Prepare the resource
```powershell
$AppAccountDetailsSourceAccount = Initialize-PSSailpoint.V2024AppAccountDetailsSourceAccount -Id fbf4f72280304f1a8bc808fc2a3bcf7b `
-NativeIdentity CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com `
-DisplayName Abby Smith `
-SourceId 10efa58ea3954883b52bf74f489ce8f9 `
-SourceDisplayName ODS-AD-SOURCE
```
- Convert the resource to JSON
```powershell
$AppAccountDetailsSourceAccount | ConvertTo-JSON
```
[[Back to top]](#)