deviceManagementPartner 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.
Entity which represents a connection to device management partner.
Methods
Method | Return Type | Description |
---|---|---|
List deviceManagementPartners | deviceManagementPartner collection | List properties and relationships of the deviceManagementPartner objects. |
Get deviceManagementPartner | deviceManagementPartner | Read properties and relationships of the deviceManagementPartner object. |
Create deviceManagementPartner | deviceManagementPartner | Create a new deviceManagementPartner object. |
Delete deviceManagementPartner | None | Deletes a deviceManagementPartner. |
Update deviceManagementPartner | deviceManagementPartner | Update the properties of a deviceManagementPartner object. |
terminate action | None |
Properties
Property | Type | Description |
---|---|---|
id | String | Id of the entity |
lastHeartbeatDateTime | DateTimeOffset | Timestamp of last heartbeat after admin enabled option Connect to Device management Partner |
partnerState | deviceManagementPartnerTenantState | Partner state of this tenant. Possible values are: unknown , unavailable , enabled , terminated , rejected , unresponsive . |
partnerAppType | deviceManagementPartnerAppType | Partner App type. Possible values are: unknown , singleTenantApp , multiTenantApp . |
singleTenantAppId | String | Partner Single tenant App id |
displayName | String | Partner display name |
isConfigured | Boolean | Whether device management partner is configured or not |
whenPartnerDevicesWillBeRemovedDateTime | DateTimeOffset | DateTime in UTC when PartnerDevices will be removed |
whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime | DateTimeOffset | DateTime in UTC when PartnerDevices will be marked as NonCompliant |
groupsRequiringPartnerEnrollment | deviceManagementPartnerAssignment collection | User groups that specifies whether enrollment is through partner. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.deviceManagementPartner",
"id": "String (identifier)",
"lastHeartbeatDateTime": "String (timestamp)",
"partnerState": "String",
"partnerAppType": "String",
"singleTenantAppId": "String",
"displayName": "String",
"isConfigured": true,
"whenPartnerDevicesWillBeRemovedDateTime": "String (timestamp)",
"whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime": "String (timestamp)",
"groupsRequiringPartnerEnrollment": [
{
"@odata.type": "microsoft.graph.deviceManagementPartnerAssignment",
"target": {
"@odata.type": "microsoft.graph.scopeTagGroupAssignmentTarget",
"deviceAndAppManagementAssignmentFilterId": "String",
"deviceAndAppManagementAssignmentFilterType": "String",
"targetType": "String",
"entraObjectId": "String"
}
}
]
}