windowsDriverUpdateProfile 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.

Windows Driver Update Profile

Methods

Method Return Type Description
List windowsDriverUpdateProfiles windowsDriverUpdateProfile collection List properties and relationships of the windowsDriverUpdateProfile objects.
Get windowsDriverUpdateProfile windowsDriverUpdateProfile Read properties and relationships of the windowsDriverUpdateProfile object.
Create windowsDriverUpdateProfile windowsDriverUpdateProfile Create a new windowsDriverUpdateProfile object.
Delete windowsDriverUpdateProfile None Deletes a windowsDriverUpdateProfile.
Update windowsDriverUpdateProfile windowsDriverUpdateProfile Update the properties of a windowsDriverUpdateProfile object.
assign action None
executeAction action bulkDriverActionResult
syncInventory action None Sync the driver inventory of a WindowsDriverUpdateProfile.

Properties

Property Type Description
id String The Intune policy id.
displayName String The display name for the profile.
description String The description of the profile which is specified by the user.
approvalType driverUpdateProfileApprovalType Driver update profile approval type. For example, manual or automatic approval. Possible values are: manual, automatic.
deviceReporting Int32 Number of devices reporting for this profile
newUpdates Int32 Number of new driver updates available for this profile.
deploymentDeferralInDays Int32 Deployment deferral settings in days, only applicable when ApprovalType is set to automatic approval.
createdDateTime DateTimeOffset The date time that the profile was created.
lastModifiedDateTime DateTimeOffset The date time that the profile was last modified.
roleScopeTagIds String collection List of Scope Tags for this Driver Update entity.
inventorySyncStatus windowsDriverUpdateProfileInventorySyncStatus Driver inventory sync status for this profile.

Relationships

Relationship Type Description
assignments windowsDriverUpdateProfileAssignment collection The list of group assignments of the profile.
driverInventories windowsDriverUpdateInventory collection Driver inventories for this profile.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.windowsDriverUpdateProfile",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "approvalType": "String",
  "deviceReporting": 1024,
  "newUpdates": 1024,
  "deploymentDeferralInDays": 1024,
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "roleScopeTagIds": [
    "String"
  ],
  "inventorySyncStatus": {
    "@odata.type": "microsoft.graph.windowsDriverUpdateProfileInventorySyncStatus",
    "lastSuccessfulSyncDateTime": "String (timestamp)",
    "driverInventorySyncState": "String"
  }
}