Skip to main content

Fulldiscoveredapplications

Discovered applications with their respective associated sources

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]
associated_sources[]strList of associated sources related to this discovered application.[optional]
operational_statusstrThe operational status of the application.[optional]
discovery_source_categorystrThe category of the discovery source.[optional]
license_countintThe number of licenses associated with the application.[optional]
is_sanctionedboolIndicates whether the application is sanctioned.[optional] [default to False]
logostrURL of the application's logo.[optional]
app_urlstrThe URL of the application.[optional]
groups[]objectList of groups associated with the application.[optional]
users_countstrThe count of users associated with the application.[optional]
application_owner[]strThe owners of the application.[optional]
it_application_owner[]strThe IT owners of the application.[optional]
business_criticalitystrThe business criticality level of the application.[optional]
data_classificationstrThe data classification level of the application.[optional]
business_unitstrThe business unit associated with the application.[optional]
install_typestrThe installation type of the application.[optional]
environmentstrThe environment in which the application operates.[optional]
risk_scoreintThe risk score of the application ranging from 0-100, 100 being highest risk.[optional]
is_businessboolIndicates whether the application is used for business purposes.[optional] [default to True]
total_signins_countintThe total number of sign-in accounts for the application.[optional]
risk_levelEnum [ 'High', 'Medium', 'Low' ]The risk level of the application.[optional]
is_privilegedboolIndicates whether the application has privileged access.[optional] [default to False]
warranty_expirationstrThe warranty expiration date of the application.[optional]
attributesobjectAdditional attributes of the application useful for visibility of governance posture.[optional]
}

Example

from sailpoint.application_discovery.models.fulldiscoveredapplications import Fulldiscoveredapplications

fulldiscoveredapplications = Fulldiscoveredapplications(
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',
associated_sources=["e0cc5d7d-bf7f-4f81-b2af-8885b09d9923","a0303682-5e4a-44f7-bdc2-6ce6112549c1"],
operational_status='Operational',
discovery_source_category='sso',
license_count=175,
is_sanctioned=True,
logo='https://spdojtest1.oktapreview.com/api/v1/apps/0oaeuef9hiipHcMgR0h7/logo',
app_url='https://spdojtest1.oktapreview.com/home/salesforce/0oaeuef9hiipHcMgR0h7/24',
groups=[{"map":{"id":"id","name":"JIRA Users","nativeIdentifiers":{"map":{"distinguishedName":"CN=Engineering users,OU=Engineering,DC=corp,DC=example,DC=com","id":"nativeId","objectSid":"S-1-5-21-717838489-685202119-709183397-1177"}},"type":"EXTERNAL_GROUP|LOCAL_GROUP"}}],
users_count='175',
application_owner=["owner1@example.com","owner2@example.com"],
it_application_owner=["itowner1@example.com","itowner2@example.com"],
business_criticality='High',
data_classification='Restricted',
business_unit='Finance',
install_type='On Premise',
environment='Production',
risk_score=1,
is_business=False,
total_signins_count=1,
risk_level='Low',
is_privileged=False,
warranty_expiration='2023-09-25T14:07:27.000+0000',
attributes={"features":["IMPORT_PROFILE_UPDATES","IMPORT_USER_SCHEMA","IMPORT_NEW_USERS"],"identityStack":"NOT_SHARED","selfService":false,"signOnMode":"SAML_2_0"}
)

[Back to top]