| title | industryDataRunActivity resource type |
|---|---|
| description | An abstract base type for all activity types. |
| author | mlafleur |
| ms.localizationpriority | medium |
| ms.subservice | industry-data-etl |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph.industryData
[!INCLUDE beta-disclaimer]
An abstract base type for all activity types. This resource represents the current or file state of the activity within a single industryDataRun. Possible statuses for a run are:
inProgress: The current industryDataRun is running the activity.completed: The activity was successfully run.completedWithErrors: The activity ran to completion but encountered one or more error conditions during the run.completedWithWarnings: The activity ran to completion but encountered one or more warning conditions during the run.skipped: The industryDataRun didn't run the activity.failed: The activity encountered an unrecoverable error during the run.
Base type of inboundFlowActivity and outboundFlowActivity.
| Property | Type | Description |
|---|---|---|
| blockingError | microsoft.graph.publicError | An error object to diagnose critical failures in an activity. |
| displayName | String | The name of the running flow. |
| status | microsoft.graph.industryData.industryDataActivityStatus | The current status of the activity. The possible values are: inProgress, skipped, failed, completed, completedWithErrors, completedWithWarnings, unknownFutureValue. |
| Relationship | Type | Description |
|---|---|---|
| activity | microsoft.graph.industryData.industryDataActivity | The flow that was run by this activity. |
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.industryData.industryDataRunActivity",
"blockingError": { "@odata.type": "microsoft.graph.publicError" },
"displayName": "String",
"status": "String"
}