Edit

quarantineConfiguration resource type

Namespace: microsoft.graph.identityGovernance

Represents the threshold conditions that determine when a workflow is automatically quarantined to stop it from processing more users than expected. This object is configured in the quarantineConfiguration property of the following resources:

Properties

Property Type Description
conditions microsoft.graph.identityGovernance.quarantineCondition collection The set of threshold conditions evaluated for the workflow. Each condition is either a countBasedQuarantineCondition or a percentageBasedQuarantineCondition.
matchMode microsoft.graph.identityGovernance.matchMode Determines whether any or all of the conditions must be met for the workflow to be quarantined. The possible values are: any, all, unknownFutureValue.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.identityGovernance.quarantineConfiguration",
  "conditions": [
    {
      "@odata.type": "microsoft.graph.identityGovernance.countBasedQuarantineCondition"
    }
  ],
  "matchMode": "String"
}