Edit

awaitedWorkflowProcessingResult resource type

Namespace: microsoft.graph.identityGovernance

Represents the result of a workflow execution that waits for completion. This type is returned by the activateAndWait action on the workflow resource.

Methods

None.

Properties

Property Type Description
processingStatus microsoft.graph.identityGovernance.lifecycleWorkflowProcessingStatus The processing status of the workflow execution.
statusReasons String collection A collection of reasons for the current processing status. May be empty.
subject microsoft.graph.identityGovernance.workflowSubject The subject that was processed by the workflow.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.identityGovernance.awaitedWorkflowProcessingResult",
  "processingStatus": "String",
  "statusReasons": [
    "String"
  ],
  "subject": {
    "@odata.type": "microsoft.graph.identityGovernance.workflowSubject"
  }
}