Skip to main content

Transform

The representation of an internally- or customer-defined transform.

Properties

NameTypeDescriptionNotes
namestrUnique name of this transform[required]
typeEnum [ 'accountAttribute', 'base64Decode', 'base64Encode', 'concat', 'conditional', 'dateCompare', 'dateFormat', 'dateMath', 'decomposeDiacriticalMarks', 'e164phone', 'firstValid', 'rule', 'identityAttribute', 'indexOf', 'iso3166', 'lastIndexOf', 'leftPad', 'lookup', 'lower', 'normalizeNames', 'randomAlphaNumeric', 'randomNumeric', 'reference', 'replaceAll', 'replace', 'rightPad', 'split', 'static', 'substring', 'trim', 'upper', 'usernameGenerator', 'uuid', 'displayName', 'rfc5646' ]The type of transform operation[required]
attributesobjectMeta-data about the transform. Values in this list are specific to the type of transform to be executed.[required]
}

Example

from sailpoint.v2024.models.transform import Transform

transform = Transform(
name='Timestamp To Date',
type='dateFormat',
attributes=None
)

[Back to top]