Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/TransformRead.md
2025-05-07 14:37:48 +00:00

1.8 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
v2024-transform-read TransformRead TransformRead TransformRead powershellsdk
powershell
PowerShell
sdk
TransformRead
V2024TransformRead
/tools/sdk/powershell/v2024/models/transform-read
SDK
Software Development Kit
TransformRead
V2024TransformRead

TransformRead

Properties

Name Type Description Notes
Name String Unique name of this transform [required]
Type Enum [ "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]
Attributes TransformAttributes [required]
Id String Unique ID of this transform [required]
Internal Boolean Indicates whether this is an internal SailPoint-created transform or a customer-created transform [required][default to $false]

Examples

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

[Back to top]