Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/Transform.md
2025-02-03 22:09:17 +00:00

1.5 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 Transform Transform Transform powershellsdk
powershell
PowerShell
sdk
Transform
V2024Transform
/tools/sdk/powershell/v2024/models/transform
SDK
Software Development Kit
Transform
V2024Transform

Transform

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]

Examples

  • Prepare the resource
$Transform = Initialize-PSSailpoint.V2024Transform  -Name Timestamp To Date `
 -Type dateFormat `
 -Attributes null
  • Convert the resource to JSON
$Transform | ConvertTo-JSON

[Back to top]