mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
2.2 KiB
2.2 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-lifecycle-state | LifecycleState | LifecycleState | LifecycleState | powershellsdk |
|
/tools/sdk/powershell/v2024/models/lifecycle-state |
|
LifecycleState
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Id | String | System-generated unique ID of the Object | [optional] [readonly] |
| Name | String | Name of the Object | [required] |
| Created | System.DateTime | Creation date of the Object | [optional] [readonly] |
| Modified | System.DateTime | Last modification date of the Object | [optional] [readonly] |
| Enabled | Boolean | Indicates whether the lifecycle state is enabled or disabled. | [optional] [default to $false] |
| TechnicalName | String | The lifecycle state's technical name. This is for internal use. | [required] |
| Description | String | Lifecycle state's description. | [optional] |
| IdentityCount | Int32 | Number of identities that have the lifecycle state. | [optional] [readonly] |
| EmailNotificationOption | EmailNotificationOption | [optional] | |
| AccountActions | []AccountAction | [optional] | |
| AccessProfileIds | []String | List of unique access-profile IDs that are associated with the lifecycle state. | [optional] |
| IdentityState | String | The lifecycle state's associated identity state. This field is generally 'null'. | [optional] |
Examples
- Prepare the resource
$LifecycleState = Initialize-V2024LifecycleState -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-Enabled true `
-TechnicalName Technical Name `
-Description Lifecycle description `
-IdentityCount 42 `
-EmailNotificationOption null `
-AccountActions null `
-AccessProfileIds [2c918084660f45d6016617daa9210584, 2c918084660f45d6016617daa9210500] `
-IdentityState null
- Convert the resource to JSON
$LifecycleState | ConvertTo-JSON