add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2025-transform-definition
title: TransformDefinition
pagination_label: TransformDefinition
sidebar_label: TransformDefinition
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TransformDefinition', 'V2025TransformDefinition']
slug: /tools/sdk/powershell/v2025/models/transform-definition
tags: ['SDK', 'Software Development Kit', 'TransformDefinition', 'V2025TransformDefinition']
---
# TransformDefinition
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **String** | Transform definition type. | [optional]
**Attributes** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | Arbitrary key-value pairs to store any metadata for the object | [optional]
## Examples
- Prepare the resource
```powershell
$TransformDefinition = Initialize-PSSailpoint.V2025TransformDefinition -Type accountAttribute `
-Attributes {attributeName=e-mail, sourceName=MySource, sourceId=2c9180877a826e68017a8c0b03da1a53}
```
- Convert the resource to JSON
```powershell
$TransformDefinition | ConvertTo-JSON
```
[[Back to top]](#)