Düzenle

Aracılığıyla paylaş


longRunningOperation resource type

Namespace: microsoft.graph

Represents the status of a long-running Microsoft Graph API operation.

The following types derive from this object:

Properties

|Property|Type|Description| |:---|:---|:---| |createdDateTime|DateTimeOffset|The start time of the operation. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.| |id|String|The unique identifier of the operation. | |lastActionDateTime|DateTimeOffset|The time of the last action in the operation. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.| |resourceLocation|String| URI of the resource that the operation is performed on. | |status|longRunningOperationStatus|The status of the operation. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue.| |statusDetail|String|Details about the status of the operation.| The following JSON representation shows the resource type.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.longRunningOperation",
  "createdDateTime": "String (timestamp)",
  "id": "String (identifier)",
  "lastActionDateTime": "String (timestamp)",
  "resourceLocation": "String",
  "status": "String",
  "statusDetail": "String"
}