Skip to main content

AccessRequestDynamicApproverRequestedItemsInner

Properties

NameTypeDescriptionNotes
IdStringThe unique ID of the access item.[required]
NameStringHuman friendly name of the access item.[required]
DescriptionStringExtended description of the access item.[optional]
TypeEnum [ "ACCESS_PROFILE", "ROLE", "ENTITLEMENT" ]The type of access item being requested.[required]
OperationEnum [ "Add", "Remove" ]Grant or revoke the access item[required]
CommentStringA comment from the requestor on why the access is needed.[optional]

Examples

  • Prepare the resource
$AccessRequestDynamicApproverRequestedItemsInner = Initialize-PSSailpoint.V2024AccessRequestDynamicApproverRequestedItemsInner  -Id 2c91808b6ef1d43e016efba0ce470904 `
-Name Engineering Access `
-Description Engineering Access `
-Type ACCESS_PROFILE `
-Operation Add `
-Comment William needs this access for his day to day job activities.
  • Convert the resource to JSON
$AccessRequestDynamicApproverRequestedItemsInner | ConvertTo-JSON

[Back to top]