Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AccessRequestDynamicApproverRequestedItemsInner.md
2025-02-03 22:09:17 +00:00

1.9 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-access-request-dynamic-approver-requested-items-inner AccessRequestDynamicApproverRequestedItemsInner AccessRequestDynamicApproverRequestedItemsInner AccessRequestDynamicApproverRequestedItemsInner powershellsdk
powershell
PowerShell
sdk
AccessRequestDynamicApproverRequestedItemsInner
V2024AccessRequestDynamicApproverRequestedItemsInner
/tools/sdk/powershell/v2024/models/access-request-dynamic-approver-requested-items-inner
SDK
Software Development Kit
AccessRequestDynamicApproverRequestedItemsInner
V2024AccessRequestDynamicApproverRequestedItemsInner

AccessRequestDynamicApproverRequestedItemsInner

Properties

Name Type Description Notes
Id String The unique ID of the access item. [required]
Name String Human friendly name of the access item. [required]
Description String Extended description of the access item. [optional]
Type Enum [ "ACCESS_PROFILE", "ROLE", "ENTITLEMENT" ] The type of access item being requested. [required]
Operation Enum [ "Add", "Remove" ] Grant or revoke the access item [required]
Comment String A 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]