IdentityAttributeConfig
Defines all the identity attribute mapping configurations. This defines how to generate or collect data for each identity attributes in identity refresh process.
Properties
Name | Type | Description | Notes |
---|---|---|---|
enabled | bool | Backend will only promote values if the profile/mapping is enabled. | [optional] [default to False] |
attribute_transforms | []IdentityAttributeTransform | [optional] | |
} |
Example
from sailpoint.v3.models.identity_attribute_config import IdentityAttributeConfig
identity_attribute_config = IdentityAttributeConfig(
enabled=True,
attribute_transforms=[
sailpoint.v3.models.identity_attribute_transform.IdentityAttributeTransform(
identity_attribute_name = 'email',
transform_definition = sailpoint.v3.models.transform_definition.TransformDefinition(
type = 'accountAttribute',
attributes = {attributeName=e-mail, sourceName=MySource, sourceId=2c9180877a826e68017a8c0b03da1a53}, ), )
]
)