Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.identityGovernance
Represents a summary of the workflows that are processed the most, or the top workflows, within a tenant, including workflow details and the total, failed, and successful run and processing history for the workflow.
Properties
| Property | Type | Description |
|---|---|---|
| failedRuns | Int32 | Count of failed runs for workflow. |
| failedUsers | Int32 | Count of failed users who were processed. |
| successfulRuns | Int32 | Count of successful runs of the workflow. |
| successfulUsers | Int32 | Count of successful users processed by the workflow. |
| totalRuns | Int32 | Count of total runs of workflow. |
| totalUsers | Int32 | Total number of users processed by the workflow. |
| workflowCategory | microsoft.graph.identityGovernance.lifecycleWorkflowCategory | The category of the workflow. The possible values are: joiner, leaver, unknownFutureValue, mover. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: mover. |
| workflowDisplayName | String | The name of the workflow. |
| workflowId | String | The workflow ID. |
| workflowVersion | Int32 | The version of the workflow that was a top workflow ran. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.identityGovernance.topWorkflowsInsightsSummary",
"workflowId": "String",
"workflowDisplayName": "String",
"workflowCategory": "String",
"totalRuns": "Integer",
"successfulRuns": "Integer",
"failedRuns": "Integer",
"totalUsers": "Integer",
"successfulUsers": "Integer",
"failedUsers": "Integer",
"workflowVersion": "Integer"
}