Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ReviewableEntitlementAccount.md
2025-02-28 14:46:13 +00:00

2.3 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-reviewable-entitlement-account ReviewableEntitlementAccount ReviewableEntitlementAccount ReviewableEntitlementAccount powershellsdk
powershell
PowerShell
sdk
ReviewableEntitlementAccount
V2024ReviewableEntitlementAccount
/tools/sdk/powershell/v2024/models/reviewable-entitlement-account
SDK
Software Development Kit
ReviewableEntitlementAccount
V2024ReviewableEntitlementAccount

ReviewableEntitlementAccount

Properties

Name Type Description Notes
NativeIdentity String The native identity for this account [optional]
Disabled Boolean Indicates whether this account is currently disabled [optional] [default to $false]
Locked Boolean Indicates whether this account is currently locked [optional] [default to $false]
Type DtoType [optional]
Id String The id associated with the account [optional]
Name String The account name [optional]
Created System.DateTime When the account was created [optional]
Modified System.DateTime When the account was last modified [optional]
ActivityInsights ActivityInsights [optional]
Description String Information about the account [optional]
GovernanceGroupId String The id associated with the machine Account Governance Group [optional]
Owner ReviewableEntitlementAccountOwner [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]