Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/SlimDiscoveredApplications.md
2025-05-07 14:37:48 +00:00

2.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-slim-discovered-applications SlimDiscoveredApplications SlimDiscoveredApplications SlimDiscoveredApplications powershellsdk
powershell
PowerShell
sdk
SlimDiscoveredApplications
V2024SlimDiscoveredApplications
/tools/sdk/powershell/v2024/models/slim-discovered-applications
SDK
Software Development Kit
SlimDiscoveredApplications
V2024SlimDiscoveredApplications

SlimDiscoveredApplications

Properties

Name Type Description Notes
Id String Unique identifier for the discovered application. [optional]
Name String Name of the discovered application. [optional]
DiscoverySource String Source from which the application was discovered. [optional]
DiscoveredVendor String The vendor associated with the discovered application. [optional]
Description String A brief description of the discovered application. [optional]
RecommendedConnectors []String List of recommended connectors for the application. [optional]
DiscoveredAt 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 System.DateTime The timestamp when the application was first discovered, in ISO 8601 format. [optional]
Status 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]

Examples

  • Prepare the resource
$SlimDiscoveredApplications = Initialize-V2024SlimDiscoveredApplications  -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
  • Convert the resource to JSON
$SlimDiscoveredApplications | ConvertTo-JSON

[Back to top]