Skip to main content

ReviewableEntitlementAccount

Properties

NameTypeDescriptionNotes
NativeIdentityStringThe native identity for this account[optional]
DisabledBooleanIndicates whether this account is currently disabled[optional] [default to $false]
LockedBooleanIndicates whether this account is currently locked[optional] [default to $false]
TypeDtoType[optional]
IdStringThe id associated with the account[optional]
NameStringThe account name[optional]
CreatedSystem.DateTimeWhen the account was created[optional]
ModifiedSystem.DateTimeWhen the account was last modified[optional]
ActivityInsightsActivityInsights[optional]
DescriptionStringInformation about the account[optional]
GovernanceGroupIdStringThe id associated with the machine Account Governance Group[optional]
OwnerReviewableEntitlementAccountOwner[optional]

Examples

  • Prepare the resource
$ReviewableEntitlementAccount = Initialize-PSSailpoint.V2024ReviewableEntitlementAccount  -NativeIdentity CN=Alison Ferguso `
-Disabled false `
-Locked false `
-Type null `
-Id 2c9180857182305e0171993737eb29e6 `
-Name Alison Ferguso `
-Created 2020-04-20T20:11:05.067Z `
-Modified 2020-05-20T18:57:16.987Z `
-ActivityInsights null `
-Description Account for Read/write to the company database `
-GovernanceGroupId 2c9180857182305e0171993737eb29e6 `
-Owner null
  • Convert the resource to JSON
$ReviewableEntitlementAccount | ConvertTo-JSON

[Back to top]