Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/NonEmployeeSourceWithNECount.md
2025-03-10 11:34:32 -04:00

2.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-non-employee-source-with-ne-count NonEmployeeSourceWithNECount NonEmployeeSourceWithNECount NonEmployeeSourceWithNECount pythonsdk
python
Python
sdk
NonEmployeeSourceWithNECount
BetaNonEmployeeSourceWithNECount
/tools/sdk/python/beta/models/non-employee-source-with-ne-count
SDK
Software Development Kit
NonEmployeeSourceWithNECount
BetaNonEmployeeSourceWithNECount

NonEmployeeSourceWithNECount

Properties

Name Type Description Notes
id str Non-Employee source id. [optional]
source_id str Source Id associated with this non-employee source. [optional]
name str Source name associated with this non-employee source. [optional]
description str Source description associated with this non-employee source. [optional]
approvers []IdentityReferenceWithId List of approvers [optional]
account_managers []IdentityReferenceWithId List of account managers [optional]
modified datetime When the request was last modified. [optional]
created datetime When the request was created. [optional]
non_employee_count int Number of non-employee records associated with this source. This value is 'null' by default. To get the non-employee count, you must set the non-employee-count flag in your request to 'true'. [optional]
}

Example

from sailpoint.beta.models.non_employee_source_with_ne_count import NonEmployeeSourceWithNECount

non_employee_source_with_ne_count = NonEmployeeSourceWithNECount(
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]