removing part of model docs from v2024

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:52:12 -05:00
parent cb679653ff
commit fb685431b3
639 changed files with 0 additions and 26446 deletions

View File

@@ -1,37 +0,0 @@
---
id: v2024-manual-discover-applications
title: ManualDiscoverApplications
pagination_label: ManualDiscoverApplications
sidebar_label: ManualDiscoverApplications
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ManualDiscoverApplications']
slug: /tools/sdk/powershell/v2024/models/manual-discover-applications
tags: ['SDK', 'Software Development Kit', 'ManualDiscoverApplications']
---
# 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.V2024ManualDiscoverApplications -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]](#)