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,59 @@
---
id: v2024-source-app-patch-dto
title: SourceAppPatchDto
pagination_label: SourceAppPatchDto
sidebar_label: SourceAppPatchDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceAppPatchDto', 'V2024SourceAppPatchDto']
slug: /tools/sdk/powershell/v2024/models/source-app-patch-dto
tags: ['SDK', 'Software Development Kit', 'SourceAppPatchDto', 'V2024SourceAppPatchDto']
---
# SourceAppPatchDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The source app id | [optional]
**CloudAppId** | Pointer to **String** | The deprecated source app id | [optional]
**Name** | Pointer to **String** | The source app name | [optional]
**Created** | Pointer to **System.DateTime** | Time when the source app was created | [optional]
**Modified** | Pointer to **System.DateTime** | Time when the source app was last modified | [optional]
**Enabled** | Pointer to **Boolean** | True if the source app is enabled | [optional] [default to $false]
**ProvisionRequestEnabled** | Pointer to **Boolean** | True if the source app is provision request enabled | [optional] [default to $false]
**Description** | Pointer to **String** | The description of the source app | [optional]
**MatchAllAccounts** | Pointer to **Boolean** | True if the source app match all accounts | [optional] [default to $false]
**AppCenterEnabled** | Pointer to **Boolean** | True if the source app is shown in the app center | [optional] [default to $true]
**AccessProfiles** | Pointer to **[]String** | List of IDs of access profiles | [optional]
**AccountSource** | Pointer to [**SourceAppAccountSource**](source-app-account-source) | | [optional]
**Owner** | Pointer to [**BaseReferenceDto**](base-reference-dto) | The owner of source app | [optional]
## Examples
- Prepare the resource
```powershell
$SourceAppPatchDto = Initialize-PSSailpoint.V2024SourceAppPatchDto -Id 2c91808874ff91550175097daaec161c `
-CloudAppId 9854520 `
-Name my app `
-Created 2020-10-08T18:33:52.029Z `
-Modified 2020-10-08T18:33:52.029Z `
-Enabled true `
-ProvisionRequestEnabled true `
-Description the source app for engineers `
-MatchAllAccounts true `
-AppCenterEnabled true `
-AccessProfiles [2c9180857725c14301772a93bb77242d, c9dc28e148a24d65b3ccb5fb8ca5ddd9] `
-AccountSource null `
-Owner null
```
- Convert the resource to JSON
```powershell
$SourceAppPatchDto | ConvertTo-JSON
```
[[Back to top]](#)