BusinessApplicationRef
Reference to a Business Application associated with a machine identity.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | Reference type. | [optional] |
| id | str | Business Application ID. | [optional] |
| name | str | Business Application display name. | [optional] |
| sanctioned_status | SanctionedStatus | [optional] | |
| correlation_type | Enum [ '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'
)