Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/NonEmployeeApprovalItem.md
2025-01-28 13:29:29 -05: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
beta-non-employee-approval-item NonEmployeeApprovalItem NonEmployeeApprovalItem NonEmployeeApprovalItem powershellsdk
powershell
PowerShell
sdk
NonEmployeeApprovalItem
BetaNonEmployeeApprovalItem
/tools/sdk/powershell/beta/models/non-employee-approval-item
SDK
Software Development Kit
NonEmployeeApprovalItem
BetaNonEmployeeApprovalItem

NonEmployeeApprovalItem

Properties

Name Type Description Notes
Id Pointer to String Non-Employee approval item id [optional]
Approver Pointer to IdentityReferenceWithId [optional]
AccountName Pointer to String Requested identity account name [optional]
ApprovalStatus Pointer to ApprovalStatus [optional]
ApprovalOrder Pointer to Double Approval order [optional]
Comment Pointer to String comment of approver [optional]
Modified Pointer to System.DateTime When the request was last modified. [optional]
Created Pointer to System.DateTime When the request was created. [optional]
NonEmployeeRequest Pointer to NonEmployeeRequestLite [optional]

Examples

  • Prepare the resource
$NonEmployeeApprovalItem = Initialize-PSSailpoint.BetaNonEmployeeApprovalItem  -Id 2c1e388b-1e55-4b0a-ab5c-897f1204159c `
 -Approver null `
 -AccountName test.account `
 -ApprovalStatus null `
 -ApprovalOrder 1 `
 -Comment true `
 -Modified 2019-08-23T18:52:59.162Z `
 -Created 2019-08-23T18:40:35.772Z `
 -NonEmployeeRequest null
  • Convert the resource to JSON
$NonEmployeeApprovalItem | ConvertTo-JSON

[Back to top]