Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AccessRequestPreApproval1.md
2025-02-03 22:09:17 +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
beta-access-request-pre-approval1 AccessRequestPreApproval1 AccessRequestPreApproval1 AccessRequestPreApproval1 powershellsdk
powershell
PowerShell
sdk
AccessRequestPreApproval1
BetaAccessRequestPreApproval1
/tools/sdk/powershell/beta/models/access-request-pre-approval1
SDK
Software Development Kit
AccessRequestPreApproval1
BetaAccessRequestPreApproval1

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-PSSailpoint.BetaAccessRequestPreApproval1  -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]