mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: beta-source-app-create-dto
|
||||
title: SourceAppCreateDto
|
||||
pagination_label: SourceAppCreateDto
|
||||
sidebar_label: SourceAppCreateDto
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceAppCreateDto', 'BetaSourceAppCreateDto']
|
||||
slug: /tools/sdk/powershell/beta/models/source-app-create-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'SourceAppCreateDto', 'BetaSourceAppCreateDto']
|
||||
---
|
||||
|
||||
|
||||
# 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.BetaSourceAppCreateDto -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user