hardwareConfigurationRunSummary resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Contains properties for the run summary of a hardware configuration script.

Methods

Method Return Type Description
Get hardwareConfigurationRunSummary hardwareConfigurationRunSummary Read properties and relationships of the hardwareConfigurationRunSummary object.
Update hardwareConfigurationRunSummary hardwareConfigurationRunSummary Update the properties of a hardwareConfigurationRunSummary object.

Properties

Property Type Description
id String Key of the hardware configuration run summary entity. This property is read-only.
successfulDeviceCount Int32 Number of devices for which hardware configured without any issue
failedDeviceCount Int32 Number of devices for which hardware configuration found an issue
pendingDeviceCount Int32 Number of devices for which hardware configuration is in pending state
errorDeviceCount Int32 Number of devices for which hardware configuration state is error
notApplicableDeviceCount Int32 Number of devices for which hardware configuration state is not applicable
unknownDeviceCount Int32 Number of devices for which hardware configuration state is unknown
successfulUserCount Int32 Number of users for which hardware configured without any issue
failedUserCount Int32 Number of users for which hardware configuration found an issue
pendingUserCount Int32 Number of users for which hardware configuration is in pending state
errorUserCount Int32 Number of users for which hardware configuration state is error
notApplicableUserCount Int32 Number of users for which hardware configuration state is not applicable
unknownUserCount Int32 Number of users for which hardware configuration state is unknown
lastRunDateTime DateTimeOffset Last run time for the configuration across all devices

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.hardwareConfigurationRunSummary",
  "id": "String (identifier)",
  "successfulDeviceCount": 1024,
  "failedDeviceCount": 1024,
  "pendingDeviceCount": 1024,
  "errorDeviceCount": 1024,
  "notApplicableDeviceCount": 1024,
  "unknownDeviceCount": 1024,
  "successfulUserCount": 1024,
  "failedUserCount": 1024,
  "pendingUserCount": 1024,
  "errorUserCount": 1024,
  "notApplicableUserCount": 1024,
  "unknownUserCount": 1024,
  "lastRunDateTime": "String (timestamp)"
}