adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-app
title: App
pagination_label: App
sidebar_label: App
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'App']
slug: /tools/sdk/powershell/v2024/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.V2024App -Id 2c91808568c529c60168cca6f90c1313 `
-Name John Doe `
-Source null `
-Account null
```
- Convert the resource to JSON
```powershell
$App | ConvertTo-JSON
```
[[Back to top]](#)