Skip to main content

IdentityAccess

Properties

NameTypeDescriptionNotes
IdStringThe unique ID of the referenced object.[optional]
NameStringThe human readable name of the referenced object.[optional]
DisplayNameString[optional]
DescriptionStringDescription of access item.[optional]
TypeStringType of the access item.[optional]
SourceReference1[optional]
OwnerDisplayReference[optional]
RevocableBoolean[optional]
PrivilegedBoolean[optional]
AttributeString[optional]
ValueString[optional]
StandaloneBoolean[optional]
DisabledBoolean[optional]

Examples

  • Prepare the resource
$IdentityAccess = Initialize-PSSailpoint.V2024IdentityAccess  -Id 2c91808568c529c60168cca6f90c1313 `
-Name John Doe `
-DisplayName John Q. Doe `
-Description null `
-Type ROLE `
-Source null `
-Owner null `
-Revocable null `
-Privileged false `
-Attribute memberOf `
-Value CN=Buyer,OU=Groups,OU=Demo,DC=seri,DC=sailpointdemo,DC=com `
-Standalone false `
-Disabled null
  • Convert the resource to JSON
$IdentityAccess | ConvertTo-JSON

[Back to top]