Skip to main content

TransformRead

Properties

NameTypeDescriptionNotes
NameStringUnique 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]
AttributesTransformAttributes[required]
IdStringUnique ID of this transform[required]
InternalBooleanIndicates whether this is an internal SailPoint-created transform or a customer-created transform[required][default to $false]

Examples

  • Prepare the resource
$TransformRead = Initialize-PSSailpoint.V2024TransformRead  -Name Timestamp To Date `
-Type dateFormat `
-Attributes null `
-Id 2cd78adghjkja34jh2b1hkjhasuecd `
-Internal false
  • Convert the resource to JSON
$TransformRead | ConvertTo-JSON

[Back to top]