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,39 @@
---
id: beta-app-account-details
title: AppAccountDetails
pagination_label: AppAccountDetails
sidebar_label: AppAccountDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AppAccountDetails', 'BetaAppAccountDetails']
slug: /tools/sdk/powershell/beta/models/app-account-details
tags: ['SDK', 'Software Development Kit', 'AppAccountDetails', 'BetaAppAccountDetails']
---
# AppAccountDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AppId** | Pointer to **String** | The source app ID | [optional]
**AppDisplayName** | Pointer to **String** | The source app display name | [optional]
**SourceAccount** | Pointer to [**AppAccountDetailsSourceAccount**](app-account-details-source-account) | | [optional]
## Examples
- Prepare the resource
```powershell
$AppAccountDetails = Initialize-PSSailpoint.BetaAppAccountDetails -AppId fbf4f72280304f1a8bc808fc2a3bcf7b `
-AppDisplayName AD source app `
-SourceAccount null
```
- Convert the resource to JSON
```powershell
$AppAccountDetails | ConvertTo-JSON
```
[[Back to top]](#)