Skip to content

Latest commit

 

History

History
77 lines (63 loc) · 2.67 KB

File metadata and controls

77 lines (63 loc) · 2.67 KB
title longRunningOperation resource type
description Represents the status of a long-running Microsoft Graph API operation.
author stuartcl
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType
ms.date 07/19/2024

longRunningOperation resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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

The following types derive from this object:

Methods

Method Return type Description
Get longRunningOperation object Read the properties and relationships of a longRunningOperation 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. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
id String The unique identifier for 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. 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, skipped, unknownFutureValue.
statusDetail String Details about the status of the operation.

Relationships

None.

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"
}