Skip to main content

AccessRequestPhases

Properties

NameTypeDescriptionNotes
StartedSystem.DateTimeThe time that this phase started.[optional]
FinishedSystem.DateTimeThe time that this phase finished.[optional]
NameStringThe name of this phase.[optional]
StateEnum [ "PENDING", "EXECUTING", "COMPLETED", "CANCELLED", "NOT_EXECUTED" ]The state of this phase.[optional]
ResultEnum [ "SUCCESSFUL", "FAILED" ]The state of this phase.[optional]
PhaseReferenceStringA reference to another object on the RequestedItemStatus that contains more details about the phase. Note that for the Provisioning phase, this will be empty if there are no manual work items.[optional]

Examples

  • Prepare the resource
$AccessRequestPhases = Initialize-PSSailpoint.V2024AccessRequestPhases  -Started 2020-07-11T00:00Z `
-Finished 2020-07-12T00:00Z `
-Name APPROVAL_PHASE `
-State COMPLETED `
-Result SUCCESSFUL `
-PhaseReference approvalDetails
  • Convert the resource to JSON
$AccessRequestPhases | ConvertTo-JSON

[Back to top]