OBJECT

AzureAdDevice

Description

Entra ID device.

link GraphQL Schema definition

  • type AzureAdDevice {
  • # Specifies whether the device account is enabled in Entra ID.
  • accountEnabled: Boolean!
  • # ID of the device set by Azure Device Registration Service at the time of
  • # registration.
  • deviceId: String!
  • # Display name of the Entra ID device.
  • displayName: String!
  • # Specifies whether the device is compliant with organizational policies.
  • # Can be null if compliance status is unknown.
  • isCompliant: Boolean
  • # Date and time of the device's last sign-in activity.
  • lastSignInDateTime: DateTime
  • # Mobile Device Management (MDM) authority managing the device.
  • mdm: String!
  • # On-premises sync status of the Entra ID device.
  • onPremSyncStatus: AzureAdOnPremSyncStatus!
  • # Operating system running on the device.
  • operatingSystem: String!
  • # Version of the operating system.
  • operatingSystemVersion: String!
  • # Display name of the user who registered the device.
  • registeredOwner: String!
  • # Date and time when the device was registered in Entra ID.
  • registrationDateTime: DateTime
  • # Trust relationship type between the device and Entra ID.
  • trustType: AzureAdDeviceTrustType!
  • # Principal name of the user who registered the device.
  • userPrincipalName: String!
  • }