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,37 @@
---
id: beta-manual-discover-applications
title: ManualDiscoverApplications
pagination_label: ManualDiscoverApplications
sidebar_label: ManualDiscoverApplications
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ManualDiscoverApplications', 'BetaManualDiscoverApplications']
slug: /tools/sdk/powershell/beta/models/manual-discover-applications
tags: ['SDK', 'Software Development Kit', 'ManualDiscoverApplications', 'BetaManualDiscoverApplications']
---
# ManualDiscoverApplications
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**File** | **System.IO.FileInfo** | The CSV file to upload containing `application_name` and `description` columns. Each row represents an application to be discovered. | [required]
## Examples
- Prepare the resource
```powershell
$ManualDiscoverApplications = Initialize-PSSailpoint.BetaManualDiscoverApplications -File application_name,description
"Sample App","This is a sample description for Sample App."
"Another App","Description for Another App."
```
- Convert the resource to JSON
```powershell
$ManualDiscoverApplications | ConvertTo-JSON
```
[[Back to top]](#)