Skip to main content

SlimDiscoveredApplications

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for the discovered application.[optional]
NameStringName of the discovered application.[optional]
DiscoverySourceStringSource from which the application was discovered.[optional]
DiscoveredVendorStringThe vendor associated with the discovered application.[optional]
DescriptionStringA brief description of the discovered application.[optional]
RecommendedConnectors[]StringList of recommended connectors for the application.[optional]
DiscoveredAtSystem.DateTimeThe timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format.[optional]
CreatedAtSystem.DateTimeThe timestamp when the application was first discovered, in ISO 8601 format.[optional]
StatusStringThe 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-PSSailpoint.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]