unmanagedDeviceDiscoveryTask 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.
This task derived type represents a list of unmanaged devices discovered in the network.
Inherits from deviceAppManagementTask
Methods
Method | Return Type | Description |
---|---|---|
List unmanagedDeviceDiscoveryTasks | unmanagedDeviceDiscoveryTask collection | List properties and relationships of the unmanagedDeviceDiscoveryTask objects. |
Get unmanagedDeviceDiscoveryTask | unmanagedDeviceDiscoveryTask | Read properties and relationships of the unmanagedDeviceDiscoveryTask object. |
Create unmanagedDeviceDiscoveryTask | unmanagedDeviceDiscoveryTask | Create a new unmanagedDeviceDiscoveryTask object. |
Delete unmanagedDeviceDiscoveryTask | None | Deletes a unmanagedDeviceDiscoveryTask. |
Update unmanagedDeviceDiscoveryTask | unmanagedDeviceDiscoveryTask | Update the properties of a unmanagedDeviceDiscoveryTask object. |
Properties
Property | Type | Description |
---|---|---|
id | String | The entity key. Inherited from deviceAppManagementTask |
displayName | String | The name. Inherited from deviceAppManagementTask |
description | String | The description. Inherited from deviceAppManagementTask |
createdDateTime | DateTimeOffset | The created date. Inherited from deviceAppManagementTask |
dueDateTime | DateTimeOffset | The due date. Inherited from deviceAppManagementTask |
category | deviceAppManagementTaskCategory | The category. Inherited from deviceAppManagementTask. Possible values are: unknown , advancedThreatProtection . |
priority | deviceAppManagementTaskPriority | The priority. Inherited from deviceAppManagementTask. Possible values are: none , high , low . |
creator | String | The email address of the creator. Inherited from deviceAppManagementTask |
creatorNotes | String | Notes from the creator. Inherited from deviceAppManagementTask |
assignedTo | String | The name or email of the admin this task is assigned to. Inherited from deviceAppManagementTask |
status | deviceAppManagementTaskStatus | The status. Inherited from deviceAppManagementTask. Possible values are: unknown , pending , active , completed , rejected . |
unmanagedDevices | unmanagedDevice collection | Unmanaged devices discovered in the network. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.unmanagedDeviceDiscoveryTask",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"createdDateTime": "String (timestamp)",
"dueDateTime": "String (timestamp)",
"category": "String",
"priority": "String",
"creator": "String",
"creatorNotes": "String",
"assignedTo": "String",
"status": "String",
"unmanagedDevices": [
{
"@odata.type": "microsoft.graph.unmanagedDevice",
"os": "String",
"osVersion": "String",
"ipAddress": "String",
"deviceName": "String",
"macAddress": "String",
"domain": "String",
"manufacturer": "String",
"model": "String",
"location": "String",
"lastLoggedOnUser": "String",
"lastSeenDateTime": "String (timestamp)"
}
]
}