Skip to main content

IdentityProfile

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the Object[optional] [readonly]
namestrName of the Object[required]
createddatetimeCreation date of the Object[optional] [readonly]
modifieddatetimeLast modification date of the Object[optional] [readonly]
descriptionstrIdentity profile's description.[optional]
ownerIdentityProfileAllOfOwner[optional]
priorityintIdentity profile's priority.[optional]
authoritative_sourceIdentityProfileAllOfAuthoritativeSource[required]
identity_refresh_requiredboolSet this value to 'True' if an identity refresh is necessary. You would typically want to trigger an identity refresh when a change has been made on the source.[optional] [default to False]
identity_countintNumber of identities belonging to the identity profile.[optional]
identity_attribute_configIdentityAttributeConfig[optional]
identity_exception_report_referenceIdentityExceptionReportReference[optional]
has_time_based_attrboolIndicates the value of requiresPeriodicRefresh attribute for the identity profile.[optional] [default to True]
}

Example

from sailpoint.beta.models.identity_profile import IdentityProfile

identity_profile = IdentityProfile(
id='id12345',
name='aName',
created='2023-01-03T21:16:22.432Z',
modified='2023-01-03T21:16:22.432Z',
description='My custom flat file profile',
owner=sailpoint.beta.models.identity_profile_all_of_owner.IdentityProfile_allOf_owner(
type = 'IDENTITY',
id = '2c9180835d191a86015d28455b4b232a',
name = 'William Wilson', ),
priority=10,
authoritative_source=sailpoint.beta.models.identity_profile_all_of_authoritative_source.IdentityProfile_allOf_authoritativeSource(
type = 'SOURCE',
id = '2c9180835d191a86015d28455b4b232a',
name = 'HR Active Directory', ),
identity_refresh_required=True,
identity_count=8,
identity_attribute_config=sailpoint.beta.models.identity_attribute_config.IdentityAttributeConfig(
enabled = True,
attribute_transforms = [
sailpoint.beta.models.identity_attribute_transform.IdentityAttributeTransform(
identity_attribute_name = 'email',
transform_definition = sailpoint.beta.models.transform_definition.TransformDefinition(
type = 'accountAttribute',
attributes = {attributeName=e-mail, sourceName=MySource, sourceId=2c9180877a826e68017a8c0b03da1a53}, ), )
], ),
identity_exception_report_reference=sailpoint.beta.models.identity_exception_report_reference.IdentityExceptionReportReference(
task_result_id = '',
report_name = 'My annual report', ),
has_time_based_attr=True
)

[Back to top]