Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 2.83 KB

File metadata and controls

56 lines (44 loc) · 2.83 KB
title industryDataRunStatistics resource type
description Represents statistics for a single run.
author mlafleur
ms.localizationpriority medium
ms.subservice industry-data-etl
doc_type resourcePageType
ms.date 07/22/2024

industryDataRunStatistics resource type

Namespace: microsoft.graph.industryData

[!INCLUDE beta-disclaimer]

Represents statistics for a single run.

Properties

Property Type Description
activityStatistics microsoft.graph.industryData.industryDataActivityStatistics collection The collection of statistics for each activity included in this run.
inboundTotals microsoft.graph.industryData.aggregatedInboundStatistics The aggregate statistics for all inbound flows.
runId String The ID of the underlying run for the statistics.
status microsoft.graph.industryData.industryDataRunStatus The latest status of the run. The possible values are: running, failed, completed, completedWithErrors, completedWithWarnings, unknownFutureValue.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.industryData.industryDataRunStatistics",
  "activityStatistics": [
    {
      "@odata.type": "microsoft.graph.industryData.inboundActivityResults"
    }
  ],
  "inboundTotals": {
    "@odata.type": "microsoft.graph.industryData.aggregatedInboundStatistics"
  },
  "runId": "String",
  "status": "String"
}