Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/NonEmployeeSourceWithCloudExternalId.md
2025-04-01 09:23:12 -04:00

2.7 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
v2025-non-employee-source-with-cloud-external-id NonEmployeeSourceWithCloudExternalId NonEmployeeSourceWithCloudExternalId NonEmployeeSourceWithCloudExternalId pythonsdk
python
Python
sdk
NonEmployeeSourceWithCloudExternalId
V2025NonEmployeeSourceWithCloudExternalId
/tools/sdk/python/v2025/models/non-employee-source-with-cloud-external-id
SDK
Software Development Kit
NonEmployeeSourceWithCloudExternalId
V2025NonEmployeeSourceWithCloudExternalId

NonEmployeeSourceWithCloudExternalId

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 []NonEmployeeIdentityReferenceWithId List of approvers [optional]
account_managers []NonEmployeeIdentityReferenceWithId List of account managers [optional]
modified datetime When the request was last modified. [optional]
created datetime When the request was created. [optional]
cloud_external_id str Legacy ID used for sources from the V1 API. This attribute will be removed from a future version of the API and will not be considered a breaking change. No clients should rely on this ID always being present. [optional]
}

Example

from sailpoint.v2025.models.non_employee_source_with_cloud_external_id import NonEmployeeSourceWithCloudExternalId

non_employee_source_with_cloud_external_id = NonEmployeeSourceWithCloudExternalId(
id='a0303682-5e4a-44f7-bdc2-6ce6112549c1',
source_id='2c91808568c529c60168cca6f90c1313',
name='Retail',
description='Source description',
approvers=[
                    sailpoint.v2025.models.non_employee_identity_reference_with_id.NonEmployeeIdentityReferenceWithId(
                        type = 'IDENTITY', 
                        id = '5168015d32f890ca15812c9180835d2e', )
                    ],
account_managers=[
                    sailpoint.v2025.models.non_employee_identity_reference_with_id.NonEmployeeIdentityReferenceWithId(
                        type = 'IDENTITY', 
                        id = '5168015d32f890ca15812c9180835d2e', )
                    ],
modified='2019-08-23T18:52:59.162Z',
created='2019-08-23T18:40:35.772Z',
cloud_external_id='99999'
)

[Back to top]