Skip to main content

AccessRequestPreApprovalRequestedItemsInner

Properties

NameTypeDescriptionNotes
IdStringThe unique ID of the access item being requested.[required]
NameStringThe human friendly name of the access item.[required]
DescriptionStringDetailed description of the access item.[optional]
TypeEnum [ "ACCESS_PROFILE", "ROLE", "ENTITLEMENT" ]The type of access item.[required]
OperationEnum [ "Add", "Remove" ]The action to perform on the access item.[required]
CommentStringA comment from the identity requesting the access.[optional]

Examples

  • Prepare the resource
$AccessRequestPreApprovalRequestedItemsInner = Initialize-PSSailpoint.BetaAccessRequestPreApprovalRequestedItemsInner  -Id 2c91808b6ef1d43e016efba0ce470904 `
-Name Engineering Access `
-Description Access to engineering database `
-Type ACCESS_PROFILE `
-Operation Add `
-Comment William needs this access to do his job.
  • Convert the resource to JSON
$AccessRequestPreApprovalRequestedItemsInner | ConvertTo-JSON

[Back to top]