starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
---
id: v2024-transform
title: Transform
pagination_label: Transform
sidebar_label: Transform
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Transform', 'V2024Transform']
slug: /tools/sdk/python/v2024/models/transform
tags: ['SDK', 'Software Development Kit', 'Transform', 'V2024Transform']
---
# Transform
The representation of an internally- or customer-defined transform.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | 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** | **object** | Meta-data about the transform. Values in this list are specific to the type of transform to be executed. | [required]
}
## Example
```python
from sailpoint.v2024.models.transform import Transform
transform = Transform(
name='Timestamp To Date',
type='dateFormat',
attributes=None
)
```
[[Back to top]](#)