mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
---
|
||||
id: v2025-expansion-item
|
||||
title: ExpansionItem
|
||||
pagination_label: ExpansionItem
|
||||
sidebar_label: ExpansionItem
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'ExpansionItem', 'V2025ExpansionItem']
|
||||
slug: /tools/sdk/python/v2025/models/expansion-item
|
||||
tags: ['SDK', 'Software Development Kit', 'ExpansionItem', 'V2025ExpansionItem']
|
||||
---
|
||||
|
||||
# ExpansionItem
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**account_id** | **str** | The ID of the account | [optional]
|
||||
**cause** | **str** | Cause of the expansion item. | [optional]
|
||||
**name** | **str** | The name of the item | [optional]
|
||||
**attribute_request** | [**AttributeRequest**](attribute-request) | | [optional]
|
||||
**source** | [**AccountSource**](account-source) | | [optional]
|
||||
**id** | **str** | ID of the expansion item | [optional]
|
||||
**state** | **str** | State of the expansion item | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2025.models.expansion_item import ExpansionItem
|
||||
|
||||
expansion_item = ExpansionItem(
|
||||
account_id='2c91808981f58ea601821c3e93482e6f',
|
||||
cause='Role',
|
||||
name='smartsheet-role',
|
||||
attribute_request=sailpoint.v2025.models.attribute_request.AttributeRequest(
|
||||
name = 'groups',
|
||||
op = 'Add',
|
||||
value = null, ),
|
||||
source=,
|
||||
id='ac2887ffe0e7435a8c18c73f7ae94c7b',
|
||||
state='EXECUTING'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user