Update to powershell SDK docs: 14864324692

This commit is contained in:
developer-relations-sp
2025-05-06 16:03:31 +00:00
parent 5a3b35df70
commit ad3e7b2b11
15 changed files with 1019 additions and 3 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-attribute-mappings-all-of-transform-definition
title: AttributeMappingsAllOfTransformDefinition
pagination_label: AttributeMappingsAllOfTransformDefinition
sidebar_label: AttributeMappingsAllOfTransformDefinition
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AttributeMappingsAllOfTransformDefinition', 'V2024AttributeMappingsAllOfTransformDefinition']
slug: /tools/sdk/powershell/v2024/models/attribute-mappings-all-of-transform-definition
tags: ['SDK', 'Software Development Kit', 'AttributeMappingsAllOfTransformDefinition', 'V2024AttributeMappingsAllOfTransformDefinition']
---
# AttributeMappingsAllOfTransformDefinition
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **String** | The type of transform | [optional]
**Attributes** | [**AttributeMappingsAllOfTransformDefinitionAttributes**](attribute-mappings-all-of-transform-definition-attributes) | | [optional]
**Id** | **String** | Transform Operation | [optional]
## Examples
- Prepare the resource
```powershell
$AttributeMappingsAllOfTransformDefinition = Initialize-PSSailpoint.V2024AttributeMappingsAllOfTransformDefinition -Type reference `
-Attributes null `
-Id ToUpper
```
- Convert the resource to JSON
```powershell
$AttributeMappingsAllOfTransformDefinition | ConvertTo-JSON
```
[[Back to top]](#)