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,53 @@
---
id: full-discovered-applications
title: FullDiscoveredApplications
pagination_label: FullDiscoveredApplications
sidebar_label: FullDiscoveredApplications
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FullDiscoveredApplications']
slug: /tools/sdk/powershell/v2024/models/full-discovered-applications
tags: ['SDK', 'Software Development Kit', 'FullDiscoveredApplications']
---
# FullDiscoveredApplications
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Unique identifier for the discovered application. | [optional]
**Name** | Pointer to **String** | Name of the discovered application. | [optional]
**DiscoverySource** | Pointer to **String** | Source from which the application was discovered. | [optional]
**DiscoveredVendor** | Pointer to **String** | The vendor associated with the discovered application. | [optional]
**Description** | Pointer to **String** | A brief description of the discovered application. | [optional]
**RecommendedConnectors** | Pointer to **[]String** | List of recommended connectors for the application. | [optional]
**DiscoveredAt** | Pointer to **System.DateTime** | The timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format. | [optional]
**CreatedAt** | Pointer to **System.DateTime** | The timestamp when the application was first discovered, in ISO 8601 format. | [optional]
**Status** | Pointer to **String** | The status of an application within the discovery source. By default this field is set to ""ACTIVE"" when the application is discovered. If an application has been deleted from within the discovery source, the status will be set to ""INACTIVE"". | [optional]
**AssociatedSources** | Pointer to **[]String** | List of associated sources related to this discovered application. | [optional]
## Examples
- Prepare the resource
```powershell
$FullDiscoveredApplications = Initialize-PSSailpoint.V2024FullDiscoveredApplications -Id null `
-Name ExampleApp `
-DiscoverySource csv `
-DiscoveredVendor ExampleVendor `
-Description An application for managing examples. `
-RecommendedConnectors [ConnectorA, ConnectorB] `
-DiscoveredAt 2023-01-01T12:00Z `
-CreatedAt 2023-01-01T12:00Z `
-Status ACTIVE `
-AssociatedSources [e0cc5d7d-bf7f-4f81-b2af-8885b09d9923, a0303682-5e4a-44f7-bdc2-6ce6112549c1]
```
- Convert the resource to JSON
```powershell
$FullDiscoveredApplications | ConvertTo-JSON
```
[[Back to top]](#)