Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AccessRequestPreApproval1.md
2025-05-07 14:37:48 +00:00

1.3 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-pre-approval1 AccessRequestPreApproval1 AccessRequestPreApproval1 AccessRequestPreApproval1 powershellsdk
powershell
PowerShell
sdk
AccessRequestPreApproval1
V2024AccessRequestPreApproval1
/tools/sdk/powershell/v2024/models/access-request-pre-approval1
SDK
Software Development Kit
AccessRequestPreApproval1
V2024AccessRequestPreApproval1

AccessRequestPreApproval1

Properties

Name Type Description Notes
Approved Boolean Whether or not to approve the access request. [required]
Comment String A comment about the decision to approve or deny the request. [required]
Approver String The name of the entity that approved or denied the request. [required]

Examples

  • Prepare the resource
$AccessRequestPreApproval1 = Initialize-V2024AccessRequestPreApproval1  -Approved false `
 -Comment This access should be denied, because this will cause an SOD violation. `
 -Approver AcmeCorpExternalIntegration
  • Convert the resource to JSON
$AccessRequestPreApproval1 | ConvertTo-JSON

[Back to top]