Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
Update-MgBetaDevice
Update the properties of a device. Only certain properties of a device can be updated through approved Mobile Device Management (MDM) apps.
Note
To view the v1.0 release of this cmdlet, view Update-MgDevice
Syntax
UpdateExpanded (Default)
Update-MgBetaDevice
-DeviceId <string>
[-ResponseHeadersVariable <string>]
[-AccountEnabled]
[-AdditionalProperties <hashtable>]
[-AlternativeNames <string[]>]
[-AlternativeSecurityIds <IMicrosoftGraphAlternativeSecurityId[]>]
[-ApproximateLastSignInDateTime <datetime>]
[-Commands <IMicrosoftGraphCommand[]>]
[-ComplianceExpirationDateTime <datetime>]
[-DeletedDateTime <datetime>]
[-DeviceCategory <string>]
[-DeviceId1 <string>]
[-DeviceMetadata <string>]
[-DeviceOwnership <string>]
[-DeviceTemplate <IMicrosoftGraphDeviceTemplate[]>]
[-DeviceVersion <int>]
[-DisplayName <string>]
[-DomainName <string>]
[-EnrollmentProfileName <string>]
[-EnrollmentType <string>]
[-ExtensionAttributes <IMicrosoftGraphOnPremisesExtensionAttributes>]
[-Extensions <IMicrosoftGraphExtension[]>]
[-Hostnames <string[]>]
[-Id <string>]
[-IsCompliant]
[-IsManaged]
[-IsManagementRestricted]
[-IsRooted]
[-Kind <string>]
[-ManagementType <string>]
[-Manufacturer <string>]
[-MdmAppId <string>]
[-MemberOf <IMicrosoftGraphDirectoryObject[]>]
[-Model <string>]
[-Name <string>]
[-OnPremisesLastSyncDateTime <datetime>]
[-OnPremisesSecurityIdentifier <string>]
[-OnPremisesSyncEnabled]
[-OperatingSystem <string>]
[-OperatingSystemVersion <string>]
[-PhysicalIds <string[]>]
[-Platform <string>]
[-ProfileType <string>]
[-RegisteredOwners <IMicrosoftGraphDirectoryObject[]>]
[-RegisteredUsers <IMicrosoftGraphDirectoryObject[]>]
[-RegistrationDateTime <datetime>]
[-Status <string>]
[-SystemLabels <string[]>]
[-TransitiveMemberOf <IMicrosoftGraphDirectoryObject[]>]
[-TrustType <string>]
[-UsageRights <IMicrosoftGraphUsageRight[]>]
[-Break]
[-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>]
[-Proxy <uri>]
[-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
UpdateViaIdentityExpanded
Update-MgBetaDevice
-InputObject <IIdentityDirectoryManagementIdentity>
[-DeviceId <string>]
[-ResponseHeadersVariable <string>]
[-AccountEnabled]
[-AdditionalProperties <hashtable>]
[-AlternativeNames <string[]>]
[-AlternativeSecurityIds <IMicrosoftGraphAlternativeSecurityId[]>]
[-ApproximateLastSignInDateTime <datetime>]
[-Commands <IMicrosoftGraphCommand[]>]
[-ComplianceExpirationDateTime <datetime>]
[-DeletedDateTime <datetime>]
[-DeviceCategory <string>]
[-DeviceMetadata <string>]
[-DeviceOwnership <string>]
[-DeviceTemplate <IMicrosoftGraphDeviceTemplate[]>]
[-DeviceVersion <int>]
[-DisplayName <string>]
[-DomainName <string>]
[-EnrollmentProfileName <string>]
[-EnrollmentType <string>]
[-ExtensionAttributes <IMicrosoftGraphOnPremisesExtensionAttributes>]
[-Extensions <IMicrosoftGraphExtension[]>]
[-Hostnames <string[]>]
[-Id <string>]
[-IsCompliant]
[-IsManaged]
[-IsManagementRestricted]
[-IsRooted]
[-Kind <string>]
[-ManagementType <string>]
[-Manufacturer <string>]
[-MdmAppId <string>]
[-MemberOf <IMicrosoftGraphDirectoryObject[]>]
[-Model <string>]
[-Name <string>]
[-OnPremisesLastSyncDateTime <datetime>]
[-OnPremisesSecurityIdentifier <string>]
[-OnPremisesSyncEnabled]
[-OperatingSystem <string>]
[-OperatingSystemVersion <string>]
[-PhysicalIds <string[]>]
[-Platform <string>]
[-ProfileType <string>]
[-RegisteredOwners <IMicrosoftGraphDirectoryObject[]>]
[-RegisteredUsers <IMicrosoftGraphDirectoryObject[]>]
[-RegistrationDateTime <datetime>]
[-Status <string>]
[-SystemLabels <string[]>]
[-TransitiveMemberOf <IMicrosoftGraphDirectoryObject[]>]
[-TrustType <string>]
[-UsageRights <IMicrosoftGraphUsageRight[]>]
[-Break]
[-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>]
[-Proxy <uri>]
[-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Update
Update-MgBetaDevice
-DeviceId <string>
-BodyParameter <IMicrosoftGraphDevice>
[-ResponseHeadersVariable <string>]
[-Break]
[-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>]
[-Proxy <uri>]
[-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
UpdateViaIdentity
Update-MgBetaDevice
-InputObject <IIdentityDirectoryManagementIdentity>
-BodyParameter <IMicrosoftGraphDevice>
[-ResponseHeadersVariable <string>]
[-Break]
[-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>]
[-Proxy <uri>]
[-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Update the properties of a device. Only certain properties of a device can be updated through approved Mobile Device Management (MDM) apps.
Permissions
| Permission type | Permissions (from least to most privileged) |
|---|---|
| Delegated (work or school account) | Directory.AccessAsUser.All, |
| Delegated (personal Microsoft account) | Not supported |
| Application | Device.ReadWrite.All, Directory.ReadWrite.All, |
Examples
Example 1: Update the accountEnabled property of a device
Import-Module Microsoft.Graph.Beta.Identity.DirectoryManagement
$params = @{
accountEnabled = $false
}
Update-MgBetaDevice -DeviceId $deviceId -BodyParameter $params
This example will update the accountenabled property of a device
Example 2: Write extensionAttributes on a device
Import-Module Microsoft.Graph.Beta.Identity.DirectoryManagement
$params = @{
extensionAttributes = @{
extensionAttribute1 = "BYOD-Device"
}
}
Update-MgBetaDevice -DeviceId $deviceId -BodyParameter $params
This example will write extensionattributes on a device
Parameters
-AccountEnabled
true if the account is enabled; otherwise, false. Default is true. Supports $filter (eq, ne, not, in). Only callers with at least the Cloud Device Administrator role can set this property.
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-AdditionalProperties
Additional Parameters
Parameter properties
| Type: | System.Collections.Hashtable |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-AlternativeNames
List of alternative names for the device.
Parameter properties
| Type: | System.String[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-AlternativeSecurityIds
For internal use only. Not nullable. Supports $filter (eq, not, ge, le). To construct, see NOTES section for ALTERNATIVESECURITYIDS properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphAlternativeSecurityId[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ApproximateLastSignInDateTime
The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderby.
Parameter properties
| Type: | System.DateTime |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-BodyParameter
device To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDevice |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Break
Wait for .NET debugger to attach
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Commands
Set of commands sent to this device. To construct, see NOTES section for COMMANDS properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphCommand[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ComplianceExpirationDateTime
The timestamp when the device is no longer deemed compliant. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
Parameter properties
| Type: | System.DateTime |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Confirm
Prompts you for confirmation before running the cmdlet.
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | cf |
Parameter sets
-DeletedDateTime
Date and time when this object was deleted. Always null when the object hasn't been deleted.
Parameter properties
| Type: | System.DateTime |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DeviceCategory
User-defined property set by Intune to automatically add devices to groups and simplify managing devices.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DeviceId
The unique identifier of device
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DeviceId1
Unique identifier set by Azure Device Registration Service at the time of registration. This ID is an alternate key that can be used to reference the device object. Also supports $filter (eq, ne, not, startsWith).
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DeviceMetadata
For internal use only. Set to null.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DeviceOwnership
Ownership of the device. Intune sets this property. The possible values are: unknown, company, personal.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DeviceTemplate
Device template used to instantiate this device. Nullable. Read-only. To construct, see NOTES section for DEVICETEMPLATE properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDeviceTemplate[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DeviceVersion
For internal use only.
Parameter properties
| Type: | System.Int32 |
| Default value: | 0 |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DisplayName
The display name for the device. Maximum length is 256 characters. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DomainName
The on-premises domain name of Microsoft Entra hybrid joined devices. Intune sets this property.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-EnrollmentProfileName
Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. Intune sets this property.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-EnrollmentType
Enrollment type of the device. Intune sets this property. The possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement, windowsAzureADJoinUsingDeviceAuth,appleUserEnrollment, appleUserEnrollmentWithServiceAccount. NOTE: This property might return other values apart from those listed.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ExtensionAttributes
onPremisesExtensionAttributes To construct, see NOTES section for EXTENSIONATTRIBUTES properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphOnPremisesExtensionAttributes |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Extensions
The collection of open extensions defined for the device. Read-only. Nullable. To construct, see NOTES section for EXTENSIONS properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphExtension[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Headers
Optional headers that will be added to the request.
Parameter properties
| Type: | System.Collections.IDictionary |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Hostnames
List of host names for the device.
Parameter properties
| Type: | System.String[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-HttpPipelineAppend
SendAsync Pipeline Steps to be appended to the front of the pipeline
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Runtime.SendAsyncStep[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-HttpPipelinePrepend
SendAsync Pipeline Steps to be prepended to the front of the pipeline
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Runtime.SendAsyncStep[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Id
The unique identifier for an entity. Read-only.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-InputObject
Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IIdentityDirectoryManagementIdentity |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-IsCompliant
true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not).
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-IsManaged
true if the device is managed by a Mobile Device Management (MDM) app; otherwise, false. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not).
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-IsManagementRestricted
Indicates whether the device is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a device that's a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit.
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-IsRooted
true if the device is rooted or jail-broken. This property can only be updated by Intune.
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Kind
Form factor of the device. Only returned if the user signs in with a Microsoft account as part of Project Rome.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ManagementType
Management channel of the device. Intune sets this property. The possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Manufacturer
Manufacturer of the device. Read-only.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-MdmAppId
Application identifier used to register device into MDM. Read-only. Supports $filter (eq, ne, not, startsWith).
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-MemberOf
Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. To construct, see NOTES section for MEMBEROF properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDirectoryObject[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Model
Model of the device. Read-only.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Name
Friendly name of the device. Only returned if user signs in with a Microsoft account as part of Project Rome.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-OnPremisesLastSyncDateTime
The last time at which the object was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only. Supports $filter (eq, ne, not, ge, le, in).
Parameter properties
| Type: | System.DateTime |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-OnPremisesSecurityIdentifier
The on-premises security identifier (SID) for the user who was synchronized from on-premises to the cloud. Read-only. Returned only on $select. Supports $filter (eq).
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-OnPremisesSyncEnabled
true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values).
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-OperatingSystem
The type of operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values).
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-OperatingSystemVersion
Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values).
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-PhysicalIds
For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0.
Parameter properties
| Type: | System.String[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Platform
Platform of device. Only returned if the user signs in with a Microsoft account as part of Project Rome.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ProfileType
The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Proxy
The URI for the proxy server to use
Parameter properties
| Type: | System.Uri |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ProxyCredential
Credentials for a proxy server to use for the remote call
Parameter properties
| Type: | System.Management.Automation.PSCredential |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ProxyUseDefaultCredentials
Use the default credentials for the proxy
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-RegisteredOwners
The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. To construct, see NOTES section for REGISTEREDOWNERS properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDirectoryObject[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-RegisteredUsers
Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand. To construct, see NOTES section for REGISTEREDUSERS properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDirectoryObject[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-RegistrationDateTime
Date and time of when the device was registered. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
Parameter properties
| Type: | System.DateTime |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ResponseHeadersVariable
Optional Response Headers Variable.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | RHV |
Parameter sets
-Status
Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome.
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-SystemLabels
List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0).
Parameter properties
| Type: | System.String[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-TransitiveMemberOf
Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. To construct, see NOTES section for TRANSITIVEMEMBEROF properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDirectoryObject[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-TrustType
Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Microsoft Entra ID). For more information, see Introduction to device management in Microsoft Entra ID. Supports $filter (eq, ne, not, in).
Parameter properties
| Type: | System.String |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-UsageRights
Represents the usage rights a device has been granted. To construct, see NOTES section for USAGERIGHTS properties and create a hash table.
Parameter properties
| Type: | Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphUsageRight[] |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-WhatIf
Runs the command in a mode that only reports what would happen without performing the actions.
Parameter properties
| Type: | System.Management.Automation.SwitchParameter |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | wi |
Parameter sets
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Inputs
Microsoft.Graph.Beta.PowerShell.Models.IIdentityDirectoryManagementIdentity
{{ Fill in the Description }}
Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDevice
{{ Fill in the Description }}
System.Collections.IDictionary
{{ Fill in the Description }}
Outputs
Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphDevice
{{ Fill in the Description }}
Notes
COMPLEX PARAMETER PROPERTIES
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
ALTERNATIVESECURITYIDS <IMicrosoftGraphAlternativeSecurityId[]>: For internal use only. Not nullable. Supports $filter (eq, not, ge, le). [IdentityProvider <String>]: For internal use only. [Key <Byte[]>]: For internal use only. [Type <Int32?>]: For internal use only.
BODYPARAMETER <IMicrosoftGraphDevice>: device
[(Any) <Object>]: This indicates any property can be added to this object.
[DeletedDateTime <DateTime?>]: Date and time when this object was deleted.
Always null when the object hasn't been deleted.
[Id <String>]: The unique identifier for an entity.
Read-only.
[AccountEnabled <Boolean?>]: true if the account is enabled; otherwise, false.
Default is true.
Supports $filter (eq, ne, not, in).
Only callers with at least the Cloud Device Administrator role can set this property.
[AlternativeNames <String[]>]: List of alternative names for the device.
[AlternativeSecurityIds <IMicrosoftGraphAlternativeSecurityId[]>]: For internal use only.
Not nullable.
Supports $filter (eq, not, ge, le).
[IdentityProvider <String>]: For internal use only.
[Key <Byte[]>]: For internal use only.
[Type <Int32?>]: For internal use only.
[ApproximateLastSignInDateTime <DateTime?>]: The timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
Read-only.
Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderby.
[Commands <IMicrosoftGraphCommand[]>]: Set of commands sent to this device.
[Id <String>]: The unique identifier for an entity.
Read-only.
[AppServiceName <String>]:
[Error <String>]:
[PackageFamilyName <String>]:
[Payload <IMicrosoftGraphPayloadRequest>]: payloadRequest
[(Any) <Object>]: This indicates any property can be added to this object.
[PermissionTicket <String>]:
[PostBackUri <String>]:
[Responsepayload <IMicrosoftGraphPayloadResponse>]: payloadResponse
[(Any) <Object>]: This indicates any property can be added to this object.
[Id <String>]: The unique identifier for an entity.
Read-only.
[Status <String>]:
[Type <String>]:
[ComplianceExpirationDateTime <DateTime?>]: The timestamp when the device is no longer deemed compliant.
The timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
Read-only.
[DeviceCategory <String>]: User-defined property set by Intune to automatically add devices to groups and simplify managing devices.
[DeviceId <String>]: Unique identifier set by Azure Device Registration Service at the time of registration.
This ID is an alternate key that can be used to reference the device object.
Also supports $filter (eq, ne, not, startsWith).
[DeviceMetadata <String>]: For internal use only.
Set to null.
[DeviceOwnership <String>]: Ownership of the device.
Intune sets this property.
The possible values are: unknown, company, personal.
[DeviceTemplate <IMicrosoftGraphDeviceTemplate[]>]: Device template used to instantiate this device.
Nullable.
Read-only.
[DeletedDateTime <DateTime?>]: Date and time when this object was deleted.
Always null when the object hasn't been deleted.
[Id <String>]: The unique identifier for an entity.
Read-only.
[DeviceAuthority <String>]: A tenant-defined name for the party that's responsible for provisioning and managing devices on the Microsoft Entra tenant.
For example, Tailwind Traders (the manufacturer) makes security cameras that are installed in customer buildings and managed by Lakeshore Retail (the device authority).
This value is provided to the customer by the device authority (manufacturer or reseller).
[DeviceInstances <IMicrosoftGraphDevice[]>]: Collection of device objects created based on this template.
[Manufacturer <String>]: Manufacturer name.
[Model <String>]: Model name.
[MutualTlsOauthConfigurationId <String>]: Object ID of the mutualTlsOauthConfiguration.
This value isn't required if self-signed certificates are used.
This value is provided to the customer by the device authority (manufacturer or reseller).
[MutualTlsOauthConfigurationTenantId <String>]: ID (tenant ID for device authority) of the tenant that contains the mutualTlsOauthConfiguration.
This value isn't required if self-signed certificates are used.
This value is provided to the customer by the device authority (manufacturer or reseller).
[OperatingSystem <String>]: Operating system type.
Supports $filter (eq, in).
[Owners <IMicrosoftGraphDirectoryObject[]>]: Collection of directory objects that can manage the device template and the related deviceInstances.
Owners can be represented as service principals, users, or applications.
An owner has full privileges over the device template and doesn't require other administrator roles to create, update, or delete devices from this template, as well as to add or remove template owners.
There can be a maximum of 100 owners on a device template.
Supports $expand.
[Id <String>]: The unique identifier for an entity.
Read-only.
[DeletedDateTime <DateTime?>]: Date and time when this object was deleted.
Always null when the object hasn't been deleted.
[DeviceVersion <Int32?>]: For internal use only.
[DisplayName <String>]: The display name for the device.
Maximum length is 256 characters.
Required.
Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
[DomainName <String>]: The on-premises domain name of Microsoft Entra hybrid joined devices.
Intune sets this property.
[EnrollmentProfileName <String>]: Enrollment profile applied to the device.
For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name.
Intune sets this property.
[EnrollmentType <String>]: Enrollment type of the device.
Intune sets this property.
The possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement, windowsAzureADJoinUsingDeviceAuth,appleUserEnrollment, appleUserEnrollmentWithServiceAccount.
NOTE: This property might return other values apart from those listed.
[ExtensionAttributes <IMicrosoftGraphOnPremisesExtensionAttributes>]: onPremisesExtensionAttributes
[(Any) <Object>]: This indicates any property can be added to this object.
[ExtensionAttribute1 <String>]: First customizable extension attribute.
[ExtensionAttribute10 <String>]: Tenth customizable extension attribute.
[ExtensionAttribute11 <String>]: Eleventh customizable extension attribute.
[ExtensionAttribute12 <String>]: Twelfth customizable extension attribute.
[ExtensionAttribute13 <String>]: Thirteenth customizable extension attribute.
[ExtensionAttribute14 <String>]: Fourteenth customizable extension attribute.
[ExtensionAttribute15 <String>]: Fifteenth customizable extension attribute.
[ExtensionAttribute2 <String>]: Second customizable extension attribute.
[ExtensionAttribute3 <String>]: Third customizable extension attribute.
[ExtensionAttribute4 <String>]: Fourth customizable extension attribute.
[ExtensionAttribute5 <String>]: Fifth customizable extension attribute.
[ExtensionAttribute6 <String>]: Sixth customizable extension attribute.
[ExtensionAttribute7 <String>]: Seventh customizable extension attribute.
[ExtensionAttribute8 <String>]: Eighth customizable extension attribute.
[ExtensionAttribute9 <String>]: Ninth customizable extension attribute.
[Extensions <IMicrosoftGraphExtension[]>]: The collection of open extensions defined for the device.
Read-only.
Nullable.
[Id <String>]: The unique identifier for an entity.
Read-only.
[Hostnames <String[]>]: List of host names for the device.
[IsCompliant <Boolean?>]: true if the device complies with Mobile Device Management (MDM) policies; otherwise, false.
Read-only.
This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.
Supports $filter (eq, ne, not).
[IsManaged <Boolean?>]: true if the device is managed by a Mobile Device Management (MDM) app; otherwise, false.
This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices.
Supports $filter (eq, ne, not).
[IsManagementRestricted <Boolean?>]: Indicates whether the device is a member of a restricted management administrative unit.
If not set, the default value is null and the default behavior is false.
Read-only.
To manage a device that's a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit.
[IsRooted <Boolean?>]: true if the device is rooted or jail-broken.
This property can only be updated by Intune.
[Kind <String>]: Form factor of the device.
Only returned if the user signs in with a Microsoft account as part of Project Rome.
[ManagementType <String>]: Management channel of the device.
Intune sets this property.
The possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController.
[Manufacturer <String>]: Manufacturer of the device.
Read-only.
[MdmAppId <String>]: Application identifier used to register device into MDM.
Read-only.
Supports $filter (eq, ne, not, startsWith).
[MemberOf <IMicrosoftGraphDirectoryObject[]>]: Groups and administrative units that this device is a member of.
Read-only.
Nullable.
Supports $expand.
[Model <String>]: Model of the device.
Read-only.
[Name <String>]: Friendly name of the device.
Only returned if user signs in with a Microsoft account as part of Project Rome.
[OnPremisesLastSyncDateTime <DateTime?>]: The last time at which the object was synced with the on-premises directory.
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only.
Supports $filter (eq, ne, not, ge, le, in).
[OnPremisesSecurityIdentifier <String>]: The on-premises security identifier (SID) for the user who was synchronized from on-premises to the cloud.
Read-only.
Returned only on $select.
Supports $filter (eq).
[OnPremisesSyncEnabled <Boolean?>]: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default).
Read-only.
Supports $filter (eq, ne, not, in, and eq on null values).
[OperatingSystem <String>]: The type of operating system on the device.
Required.
Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values).
[OperatingSystemVersion <String>]: Operating system version of the device.
Required.
Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values).
[PhysicalIds <String[]>]: For internal use only.
Not nullable.
Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0.
[Platform <String>]: Platform of device.
Only returned if the user signs in with a Microsoft account as part of Project Rome.
[ProfileType <String>]: The profile type of the device.
Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT.
[RegisteredOwners <IMicrosoftGraphDirectoryObject[]>]: The user that cloud joined the device or registered their personal device.
The registered owner is set at the time of registration.
Read-only.
Nullable.
Supports $expand.
[RegisteredUsers <IMicrosoftGraphDirectoryObject[]>]: Collection of registered users of the device.
For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration.
Read-only.
Nullable.
Supports $expand.
[RegistrationDateTime <DateTime?>]: Date and time of when the device was registered.
The timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
Read-only.
[Status <String>]: Device is online or offline.
Only returned if user signs in with a Microsoft account as part of Project Rome.
[SystemLabels <String[]>]: List of labels applied to the device by the system.
Supports $filter (/$count eq 0, /$count ne 0).
[TransitiveMemberOf <IMicrosoftGraphDirectoryObject[]>]: Groups and administrative units that this device is a member of.
This operation is transitive.
Supports $expand.
[TrustType <String>]: Type of trust for the joined device.
Read-only.
Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Microsoft Entra ID).
For more information, see Introduction to device management in Microsoft Entra ID.
Supports $filter (eq, ne, not, in).
[UsageRights <IMicrosoftGraphUsageRight[]>]: Represents the usage rights a device has been granted.
[Id <String>]: The unique identifier for an entity.
Read-only.
[CatalogId <String>]: Product id corresponding to the usage right.
[ServiceIdentifier <String>]: Identifier of the service corresponding to the usage right.
[State <String>]: usageRightState
COMMANDS <IMicrosoftGraphCommand[]>: Set of commands sent to this device. [Id <String>]: The unique identifier for an entity. Read-only. [AppServiceName <String>]: [Error <String>]: [PackageFamilyName <String>]: [Payload <IMicrosoftGraphPayloadRequest>]: payloadRequest [(Any) <Object>]: This indicates any property can be added to this object. [PermissionTicket <String>]: [PostBackUri <String>]: [Responsepayload <IMicrosoftGraphPayloadResponse>]: payloadResponse [(Any) <Object>]: This indicates any property can be added to this object. [Id <String>]: The unique identifier for an entity. Read-only. [Status <String>]: [Type <String>]:
DEVICETEMPLATE <IMicrosoftGraphDeviceTemplate[]>: Device template used to instantiate this device. Nullable. Read-only. [DeletedDateTime <DateTime?>]: Date and time when this object was deleted. Always null when the object hasn't been deleted. [Id <String>]: The unique identifier for an entity. Read-only. [DeviceAuthority <String>]: A tenant-defined name for the party that's responsible for provisioning and managing devices on the Microsoft Entra tenant. For example, Tailwind Traders (the manufacturer) makes security cameras that are installed in customer buildings and managed by Lakeshore Retail (the device authority). This value is provided to the customer by the device authority (manufacturer or reseller). [DeviceInstances <IMicrosoftGraphDevice[]>]: Collection of device objects created based on this template. [DeletedDateTime <DateTime?>]: Date and time when this object was deleted. Always null when the object hasn't been deleted. [Id <String>]: The unique identifier for an entity. Read-only. [AccountEnabled <Boolean?>]: true if the account is enabled; otherwise, false. Default is true. Supports $filter (eq, ne, not, in). Only callers with at least the Cloud Device Administrator role can set this property. [AlternativeNames <String[]>]: List of alternative names for the device. [AlternativeSecurityIds <IMicrosoftGraphAlternativeSecurityId[]>]: For internal use only. Not nullable. Supports $filter (eq, not, ge, le). [IdentityProvider <String>]: For internal use only. [Key <Byte[]>]: For internal use only. [Type <Int32?>]: For internal use only. [ApproximateLastSignInDateTime <DateTime?>]: The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderby. [Commands <IMicrosoftGraphCommand[]>]: Set of commands sent to this device. [Id <String>]: The unique identifier for an entity. Read-only. [AppServiceName <String>]: [Error <String>]: [PackageFamilyName <String>]: [Payload <IMicrosoftGraphPayloadRequest>]: payloadRequest [(Any) <Object>]: This indicates any property can be added to this object. [PermissionTicket <String>]: [PostBackUri <String>]: [Responsepayload <IMicrosoftGraphPayloadResponse>]: payloadResponse [(Any) <Object>]: This indicates any property can be added to this object. [Id <String>]: The unique identifier for an entity. Read-only. [Status <String>]: [Type <String>]: [ComplianceExpirationDateTime <DateTime?>]: The timestamp when the device is no longer deemed compliant. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DeviceCategory <String>]: User-defined property set by Intune to automatically add devices to groups and simplify managing devices. [DeviceId <String>]: Unique identifier set by Azure Device Registration Service at the time of registration. This ID is an alternate key that can be used to reference the device object. Also supports $filter (eq, ne, not, startsWith). [DeviceMetadata <String>]: For internal use only. Set to null. [DeviceOwnership <String>]: Ownership of the device. Intune sets this property. The possible values are: unknown, company, personal. [DeviceTemplate <IMicrosoftGraphDeviceTemplate[]>]: Device template used to instantiate this device. Nullable. Read-only. [DeviceVersion <Int32?>]: For internal use only. [DisplayName <String>]: The display name for the device. Maximum length is 256 characters. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby. [DomainName <String>]: The on-premises domain name of Microsoft Entra hybrid joined devices. Intune sets this property. [EnrollmentProfileName <String>]: Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. Intune sets this property. [EnrollmentType <String>]: Enrollment type of the device. Intune sets this property. The possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement, windowsAzureADJoinUsingDeviceAuth,appleUserEnrollment, appleUserEnrollmentWithServiceAccount. NOTE: This property might return other values apart from those listed. [ExtensionAttributes <IMicrosoftGraphOnPremisesExtensionAttributes>]: onPremisesExtensionAttributes [(Any) <Object>]: This indicates any property can be added to this object. [ExtensionAttribute1 <String>]: First customizable extension attribute. [ExtensionAttribute10 <String>]: Tenth customizable extension attribute. [ExtensionAttribute11 <String>]: Eleventh customizable extension attribute. [ExtensionAttribute12 <String>]: Twelfth customizable extension attribute. [ExtensionAttribute13 <String>]: Thirteenth customizable extension attribute. [ExtensionAttribute14 <String>]: Fourteenth customizable extension attribute. [ExtensionAttribute15 <String>]: Fifteenth customizable extension attribute. [ExtensionAttribute2 <String>]: Second customizable extension attribute. [ExtensionAttribute3 <String>]: Third customizable extension attribute. [ExtensionAttribute4 <String>]: Fourth customizable extension attribute. [ExtensionAttribute5 <String>]: Fifth customizable extension attribute. [ExtensionAttribute6 <String>]: Sixth customizable extension attribute. [ExtensionAttribute7 <String>]: Seventh customizable extension attribute. [ExtensionAttribute8 <String>]: Eighth customizable extension attribute. [ExtensionAttribute9 <String>]: Ninth customizable extension attribute. [Extensions <IMicrosoftGraphExtension[]>]: The collection of open extensions defined for the device. Read-only. Nullable. [Id <String>]: The unique identifier for an entity. Read-only. [Hostnames <String[]>]: List of host names for the device. [IsCompliant <Boolean?>]: true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). [IsManaged <Boolean?>]: true if the device is managed by a Mobile Device Management (MDM) app; otherwise, false. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). [IsManagementRestricted <Boolean?>]: Indicates whether the device is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a device that's a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. [IsRooted <Boolean?>]: true if the device is rooted or jail-broken. This property can only be updated by Intune. [Kind <String>]: Form factor of the device. Only returned if the user signs in with a Microsoft account as part of Project Rome. [ManagementType <String>]: Management channel of the device. Intune sets this property. The possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController. [Manufacturer <String>]: Manufacturer of the device. Read-only. [MdmAppId <String>]: Application identifier used to register device into MDM. Read-only. Supports $filter (eq, ne, not, startsWith). [MemberOf <IMicrosoftGraphDirectoryObject[]>]: Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. [Id <String>]: The unique identifier for an entity. Read-only. [DeletedDateTime <DateTime?>]: Date and time when this object was deleted. Always null when the object hasn't been deleted. [Model <String>]: Model of the device. Read-only. [Name <String>]: Friendly name of the device. Only returned if user signs in with a Microsoft account as part of Project Rome. [OnPremisesLastSyncDateTime <DateTime?>]: The last time at which the object was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only. Supports $filter (eq, ne, not, ge, le, in). [OnPremisesSecurityIdentifier <String>]: The on-premises security identifier (SID) for the user who was synchronized from on-premises to the cloud. Read-only. Returned only on $select. Supports $filter (eq). [OnPremisesSyncEnabled <Boolean?>]: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). [OperatingSystem <String>]: The type of operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). [OperatingSystemVersion <String>]: Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). [PhysicalIds <String[]>]: For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0. [Platform <String>]: Platform of device. Only returned if the user signs in with a Microsoft account as part of Project Rome. [ProfileType <String>]: The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT. [RegisteredOwners <IMicrosoftGraphDirectoryObject[]>]: The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. [RegisteredUsers <IMicrosoftGraphDirectoryObject[]>]: Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand. [RegistrationDateTime <DateTime?>]: Date and time of when the device was registered. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [Status <String>]: Device is online or offline. Only returned if user signs in with a Microsoft account as part of Project Rome. [SystemLabels <String[]>]: List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0). [TransitiveMemberOf <IMicrosoftGraphDirectoryObject[]>]: Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. [TrustType <String>]: Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Microsoft Entra ID). For more information, see Introduction to device management in Microsoft Entra ID. Supports $filter (eq, ne, not, in). [UsageRights <IMicrosoftGraphUsageRight[]>]: Represents the usage rights a device has been granted. [Id <String>]: The unique identifier for an entity. Read-only. [CatalogId <String>]: Product id corresponding to the usage right. [ServiceIdentifier <String>]: Identifier of the service corresponding to the usage right. [State <String>]: usageRightState [Manufacturer <String>]: Manufacturer name. [Model <String>]: Model name. [MutualTlsOauthConfigurationId <String>]: Object ID of the mutualTlsOauthConfiguration. This value isn't required if self-signed certificates are used. This value is provided to the customer by the device authority (manufacturer or reseller). [MutualTlsOauthConfigurationTenantId <String>]: ID (tenant ID for device authority) of the tenant that contains the mutualTlsOauthConfiguration. This value isn't required if self-signed certificates are used. This value is provided to the customer by the device authority (manufacturer or reseller). [OperatingSystem <String>]: Operating system type. Supports $filter (eq, in). [Owners <IMicrosoftGraphDirectoryObject[]>]: Collection of directory objects that can manage the device template and the related deviceInstances. Owners can be represented as service principals, users, or applications. An owner has full privileges over the device template and doesn't require other administrator roles to create, update, or delete devices from this template, as well as to add or remove template owners. There can be a maximum of 100 owners on a device template. Supports $expand.
EXTENSIONATTRIBUTES <IMicrosoftGraphOnPremisesExtensionAttributes>: onPremisesExtensionAttributes
[(Any) <Object>]: This indicates any property can be added to this object.
[ExtensionAttribute1 <String>]: First customizable extension attribute.
[ExtensionAttribute10 <String>]: Tenth customizable extension attribute.
[ExtensionAttribute11 <String>]: Eleventh customizable extension attribute.
[ExtensionAttribute12 <String>]: Twelfth customizable extension attribute.
[ExtensionAttribute13 <String>]: Thirteenth customizable extension attribute.
[ExtensionAttribute14 <String>]: Fourteenth customizable extension attribute.
[ExtensionAttribute15 <String>]: Fifteenth customizable extension attribute.
[ExtensionAttribute2 <String>]: Second customizable extension attribute.
[ExtensionAttribute3 <String>]: Third customizable extension attribute.
[ExtensionAttribute4 <String>]: Fourth customizable extension attribute.
[ExtensionAttribute5 <String>]: Fifth customizable extension attribute.
[ExtensionAttribute6 <String>]: Sixth customizable extension attribute.
[ExtensionAttribute7 <String>]: Seventh customizable extension attribute.
[ExtensionAttribute8 <String>]: Eighth customizable extension attribute.
[ExtensionAttribute9 <String>]: Ninth customizable extension attribute.
EXTENSIONS <IMicrosoftGraphExtension[]>: The collection of open extensions defined for the device. Read-only. Nullable. [Id <String>]: The unique identifier for an entity. Read-only.
INPUTOBJECT <IIdentityDirectoryManagementIdentity>: Identity Parameter
[AdministrativeUnitId <String>]: The unique identifier of administrativeUnit
[AllowedValueId <String>]: The unique identifier of allowedValue
[AttributeSetId <String>]: The unique identifier of attributeSet
[CertificateAuthorityAsEntityId <String>]: The unique identifier of certificateAuthorityAsEntity
[CertificateAuthorityDetailId <String>]: The unique identifier of certificateAuthorityDetail
[CertificateBasedApplicationConfigurationId <String>]: The unique identifier of certificateBasedApplicationConfiguration
[CertificateBasedAuthPkiId <String>]: The unique identifier of certificateBasedAuthPki
[CommandId <String>]: The unique identifier of command
[CommerceSubscriptionId <String>]: Alternate key of companySubscription
[CompanySubscriptionId <String>]: The unique identifier of companySubscription
[ContractId <String>]: The unique identifier of contract
[CustomSecurityAttributeDefinitionId <String>]: The unique identifier of customSecurityAttributeDefinition
[DeviceId <String>]: The unique identifier of device
[DeviceLocalCredentialInfoId <String>]: The unique identifier of deviceLocalCredentialInfo
[DeviceTemplateId <String>]: The unique identifier of deviceTemplate
[DirectoryObjectId <String>]: The unique identifier of directoryObject
[DirectoryRoleId <String>]: The unique identifier of directoryRole
[DirectoryRoleTemplateId <String>]: The unique identifier of directoryRoleTemplate
[DirectorySettingId <String>]: The unique identifier of directorySetting
[DirectorySettingTemplateId <String>]: The unique identifier of directorySettingTemplate
[DomainDnsRecordId <String>]: The unique identifier of domainDnsRecord
[DomainId <String>]: The unique identifier of domain
[DomainName <String>]: Usage: domainName='{domainName}'
[ExtensionId <String>]: The unique identifier of extension
[ExternalUserProfileId <String>]: The unique identifier of externalUserProfile
[FeatureRolloutPolicyId <String>]: The unique identifier of featureRolloutPolicy
[HardwareOathTokenAuthenticationMethodDeviceId <String>]: The unique identifier of hardwareOathTokenAuthenticationMethodDevice
[IdentityProviderBaseId <String>]: The unique identifier of identityProviderBase
[ImpactedResourceId <String>]: The unique identifier of impactedResource
[InboundSharedUserProfileUserId <String>]: The unique identifier of inboundSharedUserProfile
[InternalDomainFederationId <String>]: The unique identifier of internalDomainFederation
[MutualTlsOauthConfigurationId <String>]: The unique identifier of mutualTlsOauthConfiguration
[OcpSubscriptionId <String>]: Alternate key of companySubscription
[OnPremisesDirectorySynchronizationId <String>]: The unique identifier of onPremisesDirectorySynchronization
[OrgContactId <String>]: The unique identifier of orgContact
[OrganizationId <String>]: The unique identifier of organization
[OrganizationalBrandingLocalizationId <String>]: The unique identifier of organizationalBrandingLocalization
[OrganizationalBrandingThemeId <String>]: The unique identifier of organizationalBrandingTheme
[OrganizationalBrandingThemeLocalizationLocale <String>]: The unique identifier of organizationalBrandingThemeLocalization
[OutboundSharedUserProfileUserId <String>]: The unique identifier of outboundSharedUserProfile
[PendingExternalUserProfileId <String>]: The unique identifier of pendingExternalUserProfile
[ProfileCardPropertyId <String>]: The unique identifier of profileCardProperty
[ProfilePropertySettingId <String>]: The unique identifier of profilePropertySetting
[ProfileSourceId <String>]: The unique identifier of profileSource
[RecommendationId <String>]: The unique identifier of recommendation
[RoleTemplateId <String>]: Alternate key of directoryRole
[ScopedRoleMembershipId <String>]: The unique identifier of scopedRoleMembership
[SharedEmailDomainId <String>]: The unique identifier of sharedEmailDomain
[SharedEmailDomainInvitationId <String>]: The unique identifier of sharedEmailDomainInvitation
[SourceId <String>]: Alternate key of profileSource
[SubscribedSkuId <String>]: The unique identifier of subscribedSku
[TenantId <String>]: Usage: tenantId='{tenantId}'
[TenantReferenceTenantId <String>]: The unique identifier of tenantReference
[UsageRightId <String>]: The unique identifier of usageRight
[UserId <String>]: The unique identifier of user
MEMBEROF <IMicrosoftGraphDirectoryObject[]>: Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. [Id <String>]: The unique identifier for an entity. Read-only. [DeletedDateTime <DateTime?>]: Date and time when this object was deleted. Always null when the object hasn't been deleted.
REGISTEREDOWNERS <IMicrosoftGraphDirectoryObject[]>: The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. [Id <String>]: The unique identifier for an entity. Read-only. [DeletedDateTime <DateTime?>]: Date and time when this object was deleted. Always null when the object hasn't been deleted.
REGISTEREDUSERS <IMicrosoftGraphDirectoryObject[]>: Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand. [Id <String>]: The unique identifier for an entity. Read-only. [DeletedDateTime <DateTime?>]: Date and time when this object was deleted. Always null when the object hasn't been deleted.
TRANSITIVEMEMBEROF <IMicrosoftGraphDirectoryObject[]>: Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. [Id <String>]: The unique identifier for an entity. Read-only. [DeletedDateTime <DateTime?>]: Date and time when this object was deleted. Always null when the object hasn't been deleted.
USAGERIGHTS <IMicrosoftGraphUsageRight[]>: Represents the usage rights a device has been granted. [Id <String>]: The unique identifier for an entity. Read-only. [CatalogId <String>]: Product id corresponding to the usage right. [ServiceIdentifier <String>]: Identifier of the service corresponding to the usage right. [State <String>]: usageRightState
