Skip to main content

LifecycleState

Properties

NameTypeDescriptionNotes
IdStringLifecycle state ID.[optional] [readonly]
NameStringLifecycle state name.[optional] [readonly]
TechnicalNameStringLifecycle state technical name. This is for internal use.[optional] [readonly]
DescriptionStringLifecycle state description.[optional]
CreatedSystem.DateTimeLifecycle state created date.[optional] [readonly]
ModifiedSystem.DateTimeLifecycle state modified date.[optional] [readonly]
EnabledBooleanIndicates whether the lifecycle state is enabled or disabled.[optional] [default to $false]
IdentityCountInt32Number of identities that have the lifecycle state.[optional] [readonly]
EmailNotificationOptionEmailNotificationOption[optional]
AccountActions[]AccountAction[optional]
AccessProfileIds[]StringList of access-profile IDs that are associated with the lifecycle state.[optional]

Examples

  • Prepare the resource
$LifecycleState = Initialize-PSSailpoint.BetaLifecycleState  -Id 2c9180835d2e5168015d32f890ca1581 `
-Name Lifecycle Name `
-TechnicalName lifecycleTechnicalName `
-Description LifecycleDescription `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-Enabled true `
-IdentityCount 12 `
-EmailNotificationOption null `
-AccountActions null `
-AccessProfileIds [2c918084660f45d6016617daa9210584, 2c918084660f45d6016617daa9210500]
  • Convert the resource to JSON
$LifecycleState | ConvertTo-JSON

[Back to top]