Skip to content

Latest commit

 

History

History
66 lines (54 loc) · 3.55 KB

File metadata and controls

66 lines (54 loc) · 3.55 KB
title aggregatedInboundStatistics resource type
description Represents an aggregate of statistics for all inbound flows.
author mlafleur
ms.localizationpriority medium
ms.subservice industry-data-etl
doc_type resourcePageType
ms.date 07/22/2024

aggregatedInboundStatistics resource type

Namespace: microsoft.graph.industryData

[!INCLUDE beta-disclaimer]

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"
}