richLongRunningOperation 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.

Contains metadata about long running operation.

Methods

Method Return type Description
List richLongRunningOperations in a site richLongRunningOperation collection Get a list of the richLongRunningOperation objects and their properties in a site.
List richLongRunningOperations in a list richLongRunningOperation collection Get a list of the richLongRunningOperation objects and their properties in a list.
Get richLongRunningOperation richLongRunningOperation Read the properties of a richLongRunningOperation object.

Properties

Property Type Description
createdDateTime DateTimeOffset Time when this operation was created.
error publicError Error due to which the operation failed.
id String Operation identifier. Inherits from entity.
lastActionDateTime DateTimeOffset Time when last action was performed on this operation.
percentageComplete Int32 A value between 0 and 100 that indicates the progress of the operation.
resourceId String A unique identifier for the result.
resourceLocation String Canonical url of the resource.
status longRunningOperationStatus Status of the opertaion.The possible values are: notStarted, running, succeeded, failed, skipped, unknownFutureValue. Inherited from longRunningOperation.
statusDetail String Detail about the status value.
type String Type of the operation.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.richLongRunningOperation",
  "id": "String (identifier)",
  "createdDateTime": "String (timestamp)",
  "lastActionDateTime": "String (timestamp)",
  "resourceLocation": "String",
  "status": "String",
  "statusDetail": "String",
  "error": {
    "@odata.type": "microsoft.graph.publicError"
  },
  "percentageComplete": "Integer",
  "resourceId": "String",
  "type": "String"
}