Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important: Microsoft supports Intune /beta APIs, but they are subject to more frequent change. Microsoft recommends using version v1.0 when possible. Check an API's availability in version v1.0 using the Version selector.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
The device configuration assignment entity assigns an AAD group to a specific device configuration.
Methods
| Method | Return Type | Description | 
|---|---|---|
| List deviceConfigurationAssignments | deviceConfigurationAssignment collection | List properties and relationships of the deviceConfigurationAssignment objects. | 
| Get deviceConfigurationAssignment | deviceConfigurationAssignment | Read properties and relationships of the deviceConfigurationAssignment object. | 
| Create deviceConfigurationAssignment | deviceConfigurationAssignment | Create a new deviceConfigurationAssignment object. | 
| Delete deviceConfigurationAssignment | None | Deletes a deviceConfigurationAssignment. | 
| Update deviceConfigurationAssignment | deviceConfigurationAssignment | Update the properties of a deviceConfigurationAssignment object. | 
Properties
| Property | Type | Description | 
|---|---|---|
| id | String | The key of the assignment. | 
| target | deviceAndAppManagementAssignmentTarget | The assignment target for the device configuration. | 
| source | deviceAndAppManagementAssignmentSource | The assignment source for the device configuration, direct or parcel/policySet. This property is read-only. Possible values are: direct, policySets. | 
| sourceId | String | The identifier of the source of the assignment. This property is read-only. | 
| intent | deviceConfigAssignmentIntent | The admin intent to apply or remove the profile. Possible values are: apply, remove. | 
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
  "@odata.type": "#microsoft.graph.deviceConfigurationAssignment",
  "id": "String (identifier)",
  "target": {
    "@odata.type": "microsoft.graph.organizationalUnitAssignmentTarget",
    "deviceAndAppManagementAssignmentFilterId": "String",
    "deviceAndAppManagementAssignmentFilterType": "String",
    "organizationalUnitId": "String",
    "assignmentConflictSetting": {
      "@odata.type": "microsoft.graph.organizationalUnitAssignmentConflictSetting",
      "assignmentOverride": "String",
      "versionNumber": 1024
    }
  },
  "source": "String",
  "sourceId": "String",
  "intent": "String"
}