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,47 @@
---
id: v2025-expansion-item
title: ExpansionItem
pagination_label: ExpansionItem
sidebar_label: ExpansionItem
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ExpansionItem', 'V2025ExpansionItem']
slug: /tools/sdk/powershell/v2025/models/expansion-item
tags: ['SDK', 'Software Development Kit', 'ExpansionItem', 'V2025ExpansionItem']
---
# ExpansionItem
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccountId** | **String** | The ID of the account | [optional]
**Cause** | **String** | Cause of the expansion item. | [optional]
**Name** | **String** | The name of the item | [optional]
**AttributeRequest** | [**AttributeRequest**](attribute-request) | | [optional]
**Source** | [**AccountSource**](account-source) | | [optional]
**Id** | **String** | ID of the expansion item | [optional]
**State** | **String** | State of the expansion item | [optional]
## Examples
- Prepare the resource
```powershell
$ExpansionItem = Initialize-PSSailpoint.V2025ExpansionItem -AccountId 2c91808981f58ea601821c3e93482e6f `
-Cause Role `
-Name smartsheet-role `
-AttributeRequest null `
-Source null `
-Id ac2887ffe0e7435a8c18c73f7ae94c7b `
-State EXECUTING
```
- Convert the resource to JSON
```powershell
$ExpansionItem | ConvertTo-JSON
```
[[Back to top]](#)