adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: transform
title: Transform
pagination_label: Transform
sidebar_label: Transform
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Transform', 'Transform']
slug: /tools/sdk/powershell/v3/models/transform
tags: ['SDK', 'Software Development Kit', 'Transform', 'Transform']
---
# 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**](transform-attributes) | | [required]
## Examples
- Prepare the resource
```powershell
$Transform = Initialize-PSSailpoint.V3Transform -Name Timestamp To Date `
-Type dateFormat `
-Attributes null
```
- Convert the resource to JSON
```powershell
$Transform | ConvertTo-JSON
```
[[Back to top]](#)