add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-source-app-create-dto
title: SourceAppCreateDto
pagination_label: SourceAppCreateDto
sidebar_label: SourceAppCreateDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceAppCreateDto', 'V2025SourceAppCreateDto']
slug: /tools/sdk/powershell/v2025/models/source-app-create-dto
tags: ['SDK', 'Software Development Kit', 'SourceAppCreateDto', 'V2025SourceAppCreateDto']
---
# SourceAppCreateDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | The source app name | [required]
**Description** | **String** | The description of the source app | [required]
**MatchAllAccounts** | **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.V2025SourceAppCreateDto -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]](#)