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

1.6 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-phases AccessRequestPhases AccessRequestPhases AccessRequestPhases powershellsdk
powershell
PowerShell
sdk
AccessRequestPhases
V2024AccessRequestPhases
/tools/sdk/powershell/v2024/models/access-request-phases
SDK
Software Development Kit
AccessRequestPhases
V2024AccessRequestPhases

AccessRequestPhases

Properties

Name Type Description Notes
Started System.DateTime The time that this phase started. [optional]
Finished System.DateTime The time that this phase finished. [optional]
Name String The name of this phase. [optional]
State Enum [ "PENDING", "EXECUTING", "COMPLETED", "CANCELLED", "NOT_EXECUTED" ] The state of this phase. [optional]
Result Enum [ "SUCCESSFUL", "FAILED" ] The state of this phase. [optional]
PhaseReference String A 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-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]