deviceConfigurationAssignment 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.
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.scopeTagGroupAssignmentTarget",
"deviceAndAppManagementAssignmentFilterId": "String",
"deviceAndAppManagementAssignmentFilterType": "String",
"targetType": "String",
"entraObjectId": "String"
},
"source": "String",
"sourceId": "String",
"intent": "String"
}