cloudPcRemoteActionResult 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 Cloud PC-specified remote action result.

Methods

Method Return type Description
getCloudPcRemoteActionResults cloudPcRemoteActionResult Check the Cloud PC specified remote action results. Cloud PC supports reprovision and resize remote actions.

Properties

Property Type Description
actionName String The specified action. Supported values in the Microsoft Endpoint Manager portal are: Reprovision, Resize, Restore. Supported values in enterprise Cloud PC devices are: Reboot, Rename, Reprovision, Troubleshoot.
actionState actionState State of the action. Possible values are: None, pending, canceled, active, done, failed, notSupported. Read-only.
cloudPcId String The ID of the Cloud PC device on which the remote action is performed. Read-only.
managedDeviceId String The ID of the Intune managed device on which the remote action is performed. Read-only.
startDateTime DateTimeOffset Time the action was initiated. The Timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as '2014-01-01T00:00:00Z'.
lastUpdatedDateTime DateTimeOffset Last update time for action. The Timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as '2014-01-01T00:00:00Z'.
statusDetails cloudPcStatusDetails The details of the Cloud PC status.

actionState values

Member Description
none Not a valid action state.
pending Action is pending.
canceled Action has been canceled.
active Action is active.
done Action completed without errors.
failed Action failed.
notSupported Action isn't supported.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.cloudPcRemoteActionResult",
  "actionName": "String",
  "actionState": "String",
  "startDateTime": "String (timestamp)",
  "lastUpdatedDateTime": "String (timestamp)",
  "cloudPcId": "String",
  "managedDeviceId": "String",
  "statusDetails": {
    "@odata.type": "microsoft.graph.cloudPcStatusDetails"
  }
}