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: APIs under the /beta version in Microsoft Graph are subject to change which could break your applications. While Intune /beta APIs are supported by Microsoft, you should use these at your own discretion. In general, /beta APIs are not recommended for use in production applications. To determine whether an API is available in v1.0, use 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"
}