Skip to main content

SlimDiscoveredApplications

Discovered applications

Properties

NameTypeDescriptionNotes
idstrUnique identifier for the discovered application.[optional]
namestrName of the discovered application.[optional]
discovery_sourcestrSource from which the application was discovered.[optional]
discovered_vendorstrThe vendor associated with the discovered application.[optional]
descriptionstrA brief description of the discovered application.[optional]
recommended_connectors[]strList of recommended connectors for the application.[optional]
discovered_atdatetimeThe timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format.[optional]
created_atdatetimeThe timestamp when the application was first discovered, in ISO 8601 format.[optional]
statusstrThe 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]
}

Example

from sailpoint.v3.models.slim_discovered_applications import SlimDiscoveredApplications

slim_discovered_applications = SlimDiscoveredApplications(
id='',
name='ExampleApp',
discovery_source='csv',
discovered_vendor='ExampleVendor',
description='An application for managing examples.',
recommended_connectors=[ConnectorA, ConnectorB],
discovered_at='2023-01-01T12:00Z',
created_at='2023-01-01T12:00Z',
status='ACTIVE'
)

[Back to top]