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,41 @@
---
id: app
title: App
pagination_label: App
sidebar_label: App
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'App']
slug: /tools/sdk/powershell/v3/models/app
tags: ['SDK', 'Software Development Kit', 'App']
---
# App
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The unique ID of the referenced object. | [optional]
**Name** | Pointer to **String** | The human readable name of the referenced object. | [optional]
**Source** | Pointer to [**Reference1**](reference1) | | [optional]
**Account** | Pointer to [**AppAllOfAccount**](app-all-of-account) | | [optional]
## Examples
- Prepare the resource
```powershell
$App = Initialize-PSSailpoint.V3App -Id 2c91808568c529c60168cca6f90c1313 `
-Name John Doe `
-Source null `
-Account null
```
- Convert the resource to JSON
```powershell
$App | ConvertTo-JSON
```
[[Back to top]](#)