synchronizationProgress resource type
Namespace: microsoft.graph
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 the progress of a synchronizationJob toward completion.
Properties
Property | Type | Description |
---|---|---|
completedUnits | Int32 | The numerator of a progress ratio; the number of units of changes already processed. |
progressObservationDateTime | DateTimeOffset | The time of a progress observation as an offset in minutes from UTC. |
totalUnits | Int32 | The denominator of a progress ratio; a number of units of changes to be processed to accomplish synchronization. |
units | String | An optional description of the units. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.synchronizationProgress",
"completedUnits": "Integer",
"progressObservationDateTime": "String (timestamp)",
"totalUnits": "Integer",
"units": "String"
}