Skip to main content

AccessProfileSummary

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]

Examples

  • Prepare the resource
$AccessProfileSummary = Initialize-PSSailpoint.V2024AccessProfileSummary  -Id 2c91808568c529c60168cca6f90c1313 `
-Name John Doe `
-DisplayName John Q. Doe `
-Description null `
-Type ACCESS_PROFILE `
-Source null `
-Owner null `
-Revocable true
  • Convert the resource to JSON
$AccessProfileSummary | ConvertTo-JSON

[Back to top]