命名空间:microsoft.graph
表示长时间运行的Microsoft图形 API 操作的状态。
以下类型派生自此对象:
属性
| 属性 | 类型 | 说明 |
|---|---|---|
| createdDateTime | DateTimeOffset | 操作的开始时间。 时间戳类型使用 ISO 8601 格式表示日期和时间信息,并且始终采用 UTC 格式。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z。 |
| id | String | 操作的唯一标识符。 |
| lastActionDateTime | DateTimeOffset | 操作中最后一个操作的时间。 时间戳类型使用 ISO 8601 格式表示日期和时间信息,并且始终采用 UTC 格式。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z。 |
| resourceLocation | String | 执行操作的资源的 URI。 |
| status | longRunningOperationStatus | 操作的状态。 可能的值包括 notStarted、running、succeeded、failed、unknownFutureValue。 |
| statusDetail | String | 有关操作状态的详细信息。 |
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@odata.type": "#microsoft.graph.longRunningOperation",
"createdDateTime": "String (timestamp)",
"id": "String (identifier)",
"lastActionDateTime": "String (timestamp)",
"resourceLocation": "String",
"status": "String",
"statusDetail": "String"
}