aggregatedInboundStatistics resource type
Namespace: microsoft.graph.industryData
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents an aggregate of statistics for all inbound flows.
Properties
Property | Type | Description |
---|---|---|
errors | Int32 | The aggregate count of errors encountered by activities during this run. |
groups | Int32 | The aggregate count of active inbound groups processed during the run. |
matchedPeopleByRole | microsoft.graph.industryData.industryDataRunRoleCountMetric collection | The aggregate count of active people matched to a Microsoft Entra user, by role. |
memberships | Int32 | The aggregate count of active inbound memberships processed during the run. |
organizations | Int32 | The aggregate count of active inbound organizations processed during the run. |
people | Int32 | The aggregate count of active inbound people processed during the run. |
unmatchedPeopleByRole | microsoft.graph.industryData.industryDataRunRoleCountMetric collection | The aggregate count of active people not matched to a Microsoft Entra user, by role. |
warnings | Int32 | The aggregate count of warnings generated by activities during this run. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.industryData.aggregatedInboundStatistics",
"errors": "Int32",
"groups": "Int32",
"matchedPeopleByRole": [
{
"@odata.type": "microsoft.graph.industryData.industryDataRunRoleCountMetric"
}
],
"memberships": "Int32",
"organizations": "Int32",
"people": "Int32",
"unmatchedPeopleByRole": [
{
"@odata.type": "microsoft.graph.industryData.industryDataRunRoleCountMetric"
}
],
"warnings": "Int32"
}