Skip to main content

BusinessApplicationRef

Reference to a Business Application associated with a machine identity.

Properties

NameTypeDescriptionNotes
typestrReference type.[optional]
idstrBusiness Application ID.[optional]
namestrBusiness Application display name.[optional]
sanctioned_statusSanctionedStatus[optional]
correlation_typeEnum [ 'MANUAL', 'AUTOMATIC' ]Whether the Business Application reference was manually assigned or automatically correlated.[optional]
}

Example

from sailpoint.machine_identities.models.business_application_ref import BusinessApplicationRef

business_application_ref = BusinessApplicationRef(
type='BUSINESS_APPLICATION',
id='a1b2c3d4-e5f6-7890-abcd-ef1234567890',
name='Cursor',
sanctioned_status='SANCTIONED',
correlation_type='MANUAL'
)

[Back to top]