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: source-app-create-dto
title: SourceAppCreateDto
pagination_label: SourceAppCreateDto
sidebar_label: SourceAppCreateDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceAppCreateDto']
slug: /tools/sdk/powershell/v2024/models/source-app-create-dto
tags: ['SDK', 'Software Development Kit', 'SourceAppCreateDto']
---
# SourceAppCreateDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | The source app name | [required]
**Description** | **String** | The description of the source app | [required]
**MatchAllAccounts** | Pointer to **Boolean** | True if the source app match all accounts | [optional] [default to $false]
**AccountSource** | [**SourceAppCreateDtoAccountSource**](source-app-create-dto-account-source) | | [required]
## Examples
- Prepare the resource
```powershell
$SourceAppCreateDto = Initialize-PSSailpoint.V2024SourceAppCreateDto -Name my app `
-Description the source app for engineers `
-MatchAllAccounts true `
-AccountSource null
```
- Convert the resource to JSON
```powershell
$SourceAppCreateDto | ConvertTo-JSON
```
[[Back to top]](#)