Skip to main content

NonEmployeeSource

Properties

NameTypeDescriptionNotes
idstrNon-Employee source id.[optional]
source_idstrSource Id associated with this non-employee source.[optional]
namestrSource name associated with this non-employee source.[optional]
descriptionstrSource description associated with this non-employee source.[optional]
approvers[]IdentityReferenceWithIdList of approvers[optional]
account_managers[]IdentityReferenceWithIdList of account managers[optional]
modifieddatetimeWhen the request was last modified.[optional]
createddatetimeWhen the request was created.[optional]
non_employee_countintThe number of non-employee records on all sources that requested-for user manages.[optional]
}

Example

from sailpoint.beta.models.non_employee_source import NonEmployeeSource

non_employee_source = NonEmployeeSource(
id='a0303682-5e4a-44f7-bdc2-6ce6112549c1',
source_id='2c91808568c529c60168cca6f90c1313',
name='Retail',
description='Source description',
approvers=[
sailpoint.beta.models.identity_reference_with_id.IdentityReferenceWithId(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e', )
],
account_managers=[
sailpoint.beta.models.identity_reference_with_id.IdentityReferenceWithId(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e', )
],
modified='2019-08-23T18:52:59.162Z',
created='2019-08-23T18:40:35.772Z',
non_employee_count=2
)

[Back to top]