/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/device.go
1 424 строки
57 KB
Justin Pierce
Add compat_otp package with openshift-tests-private (OTP) util implementations
11 авг 2025, 18:00
11 авг 2025, 18:00
80ac5c1
Код
Авторство
О чём код?
// Code generated by Microsoft Kiota - DO NOT EDIT. // Changes may cause incorrect behavior and will be lost if the code is regenerated. package models import ( i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e "time" i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization" ) type Device struct { DirectoryObject } // NewDevice instantiates a new Device and sets the default values. func NewDevice()(*Device) { m := &Device{ DirectoryObject: *NewDirectoryObject(), } odataTypeValue := "#microsoft.graph.device" m.SetOdataType(&odataTypeValue) return m } // CreateDeviceFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateDeviceFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { return NewDevice(), nil } // GetAccountEnabled gets the accountEnabled property value. true if the account is enabled; otherwise, false. Required. Default is true. Supports $filter (eq, ne, not, in). Only callers with at least the Cloud Device Administrator role can set this property. // returns a *bool when successful func (m *Device) GetAccountEnabled()(*bool) { val, err := m.GetBackingStore().Get("accountEnabled") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetAlternativeSecurityIds gets the alternativeSecurityIds property value. For internal use only. Not nullable. Supports $filter (eq, not, ge, le). // returns a []AlternativeSecurityIdable when successful func (m *Device) GetAlternativeSecurityIds()([]AlternativeSecurityIdable) { val, err := m.GetBackingStore().Get("alternativeSecurityIds") if err != nil { panic(err) } if val != nil { return val.([]AlternativeSecurityIdable) } return nil } // GetApproximateLastSignInDateTime gets the approximateLastSignInDateTime property value. 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. // returns a *Time when successful func (m *Device) GetApproximateLastSignInDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("approximateLastSignInDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetComplianceExpirationDateTime gets the complianceExpirationDateTime property value. 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. // returns a *Time when successful func (m *Device) GetComplianceExpirationDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("complianceExpirationDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetDeviceCategory gets the deviceCategory property value. User-defined property set by Intune to automatically add devices to groups and simplify managing devices. // returns a *string when successful func (m *Device) GetDeviceCategory()(*string) { val, err := m.GetBackingStore().Get("deviceCategory") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetDeviceId gets the deviceId property value. Unique identifier set by Azure Device Registration Service at the time of registration. This alternate key can be used to reference the device object. Supports $filter (eq, ne, not, startsWith). // returns a *string when successful func (m *Device) GetDeviceId()(*string) { val, err := m.GetBackingStore().Get("deviceId") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetDeviceMetadata gets the deviceMetadata property value. For internal use only. Set to null. // returns a *string when successful func (m *Device) GetDeviceMetadata()(*string) { val, err := m.GetBackingStore().Get("deviceMetadata") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetDeviceOwnership gets the deviceOwnership property value. Ownership of the device. Intune sets this property. Possible values are: unknown, company, personal. // returns a *string when successful func (m *Device) GetDeviceOwnership()(*string) { val, err := m.GetBackingStore().Get("deviceOwnership") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetDeviceVersion gets the deviceVersion property value. For internal use only. // returns a *int32 when successful func (m *Device) GetDeviceVersion()(*int32) { val, err := m.GetBackingStore().Get("deviceVersion") if err != nil { panic(err) } if val != nil { return val.(*int32) } return nil } // GetDisplayName gets the displayName property value. 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. // returns a *string when successful func (m *Device) GetDisplayName()(*string) { val, err := m.GetBackingStore().Get("displayName") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetEnrollmentProfileName gets the enrollmentProfileName property value. Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. This property is set by Intune. // returns a *string when successful func (m *Device) GetEnrollmentProfileName()(*string) { val, err := m.GetBackingStore().Get("enrollmentProfileName") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetEnrollmentType gets the enrollmentType property value. Enrollment type of the device. Intune sets this property. 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. // returns a *string when successful func (m *Device) GetEnrollmentType()(*string) { val, err := m.GetBackingStore().Get("enrollmentType") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetExtensions gets the extensions property value. The collection of open extensions defined for the device. Read-only. Nullable. // returns a []Extensionable when successful func (m *Device) GetExtensions()([]Extensionable) { val, err := m.GetBackingStore().Get("extensions") if err != nil { panic(err) } if val != nil { return val.([]Extensionable) } return nil } // GetFieldDeserializers the deserialization information for the current model // returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful func (m *Device) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := m.DirectoryObject.GetFieldDeserializers() res["accountEnabled"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetAccountEnabled(val) } return nil } res["alternativeSecurityIds"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateAlternativeSecurityIdFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]AlternativeSecurityIdable, len(val)) for i, v := range val { if v != nil { res[i] = v.(AlternativeSecurityIdable) } } m.SetAlternativeSecurityIds(res) } return nil } res["approximateLastSignInDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetTimeValue() if err != nil { return err } if val != nil { m.SetApproximateLastSignInDateTime(val) } return nil } res["complianceExpirationDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetTimeValue() if err != nil { return err } if val != nil { m.SetComplianceExpirationDateTime(val) } return nil } res["deviceCategory"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDeviceCategory(val) } return nil } res["deviceId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDeviceId(val) } return nil } res["deviceMetadata"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDeviceMetadata(val) } return nil } res["deviceOwnership"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDeviceOwnership(val) } return nil } res["deviceVersion"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetInt32Value() if err != nil { return err } if val != nil { m.SetDeviceVersion(val) } return nil } res["displayName"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDisplayName(val) } return nil } res["enrollmentProfileName"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetEnrollmentProfileName(val) } return nil } res["enrollmentType"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetEnrollmentType(val) } return nil } res["extensions"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateExtensionFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]Extensionable, len(val)) for i, v := range val { if v != nil { res[i] = v.(Extensionable) } } m.SetExtensions(res) } return nil } res["isCompliant"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetIsCompliant(val) } return nil } res["isManaged"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetIsManaged(val) } return nil } res["isManagementRestricted"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetIsManagementRestricted(val) } return nil } res["isRooted"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetIsRooted(val) } return nil } res["managementType"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetManagementType(val) } return nil } res["manufacturer"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetManufacturer(val) } return nil } res["mdmAppId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetMdmAppId(val) } return nil } res["memberOf"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateDirectoryObjectFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]DirectoryObjectable, len(val)) for i, v := range val { if v != nil { res[i] = v.(DirectoryObjectable) } } m.SetMemberOf(res) } return nil } res["model"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetModel(val) } return nil } res["onPremisesLastSyncDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetTimeValue() if err != nil { return err } if val != nil { m.SetOnPremisesLastSyncDateTime(val) } return nil } res["onPremisesSecurityIdentifier"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetOnPremisesSecurityIdentifier(val) } return nil } res["onPremisesSyncEnabled"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetBoolValue() if err != nil { return err } if val != nil { m.SetOnPremisesSyncEnabled(val) } return nil } res["operatingSystem"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetOperatingSystem(val) } return nil } res["operatingSystemVersion"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetOperatingSystemVersion(val) } return nil } res["physicalIds"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfPrimitiveValues("string") if err != nil { return err } if val != nil { res := make([]string, len(val)) for i, v := range val { if v != nil { res[i] = *(v.(*string)) } } m.SetPhysicalIds(res) } return nil } res["profileType"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetProfileType(val) } return nil } res["registeredOwners"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateDirectoryObjectFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]DirectoryObjectable, len(val)) for i, v := range val { if v != nil { res[i] = v.(DirectoryObjectable) } } m.SetRegisteredOwners(res) } return nil } res["registeredUsers"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateDirectoryObjectFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]DirectoryObjectable, len(val)) for i, v := range val { if v != nil { res[i] = v.(DirectoryObjectable) } } m.SetRegisteredUsers(res) } return nil } res["registrationDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetTimeValue() if err != nil { return err } if val != nil { m.SetRegistrationDateTime(val) } return nil } res["systemLabels"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfPrimitiveValues("string") if err != nil { return err } if val != nil { res := make([]string, len(val)) for i, v := range val { if v != nil { res[i] = *(v.(*string)) } } m.SetSystemLabels(res) } return nil } res["transitiveMemberOf"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateDirectoryObjectFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]DirectoryObjectable, len(val)) for i, v := range val { if v != nil { res[i] = v.(DirectoryObjectable) } } m.SetTransitiveMemberOf(res) } return nil } res["trustType"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetTrustType(val) } return nil } return res } // GetIsCompliant gets the isCompliant property value. 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). // returns a *bool when successful func (m *Device) GetIsCompliant()(*bool) { val, err := m.GetBackingStore().Get("isCompliant") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetIsManaged gets the isManaged property value. 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). // returns a *bool when successful func (m *Device) GetIsManaged()(*bool) { val, err := m.GetBackingStore().Get("isManaged") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetIsManagementRestricted gets the isManagementRestricted property value. 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. Returned only on $select. // returns a *bool when successful func (m *Device) GetIsManagementRestricted()(*bool) { val, err := m.GetBackingStore().Get("isManagementRestricted") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetIsRooted gets the isRooted property value. true if the device is rooted or jail-broken. This property can only be updated by Intune. // returns a *bool when successful func (m *Device) GetIsRooted()(*bool) { val, err := m.GetBackingStore().Get("isRooted") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetManagementType gets the managementType property value. The management channel of the device. This property is set by Intune. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController. // returns a *string when successful func (m *Device) GetManagementType()(*string) { val, err := m.GetBackingStore().Get("managementType") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetManufacturer gets the manufacturer property value. Manufacturer of the device. Read-only. // returns a *string when successful func (m *Device) GetManufacturer()(*string) { val, err := m.GetBackingStore().Get("manufacturer") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetMdmAppId gets the mdmAppId property value. Application identifier used to register device into MDM. Read-only. Supports $filter (eq, ne, not, startsWith). // returns a *string when successful func (m *Device) GetMdmAppId()(*string) { val, err := m.GetBackingStore().Get("mdmAppId") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetMemberOf gets the memberOf property value. Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. // returns a []DirectoryObjectable when successful func (m *Device) GetMemberOf()([]DirectoryObjectable) { val, err := m.GetBackingStore().Get("memberOf") if err != nil { panic(err) } if val != nil { return val.([]DirectoryObjectable) } return nil } // GetModel gets the model property value. Model of the device. Read-only. // returns a *string when successful func (m *Device) GetModel()(*string) { val, err := m.GetBackingStore().Get("model") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetOnPremisesLastSyncDateTime gets the onPremisesLastSyncDateTime property value. 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). // returns a *Time when successful func (m *Device) GetOnPremisesLastSyncDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("onPremisesLastSyncDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetOnPremisesSecurityIdentifier gets the onPremisesSecurityIdentifier property value. 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). // returns a *string when successful func (m *Device) GetOnPremisesSecurityIdentifier()(*string) { val, err := m.GetBackingStore().Get("onPremisesSecurityIdentifier") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetOnPremisesSyncEnabled gets the onPremisesSyncEnabled property value. 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). // returns a *bool when successful func (m *Device) GetOnPremisesSyncEnabled()(*bool) { val, err := m.GetBackingStore().Get("onPremisesSyncEnabled") if err != nil { panic(err) } if val != nil { return val.(*bool) } return nil } // GetOperatingSystem gets the operatingSystem property value. The type of operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). // returns a *string when successful func (m *Device) GetOperatingSystem()(*string) { val, err := m.GetBackingStore().Get("operatingSystem") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetOperatingSystemVersion gets the operatingSystemVersion property value. The version of the operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). // returns a *string when successful func (m *Device) GetOperatingSystemVersion()(*string) { val, err := m.GetBackingStore().Get("operatingSystemVersion") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetPhysicalIds gets the physicalIds property value. For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith,/$count eq 0, /$count ne 0). // returns a []string when successful func (m *Device) GetPhysicalIds()([]string) { val, err := m.GetBackingStore().Get("physicalIds") if err != nil { panic(err) } if val != nil { return val.([]string) } return nil } // GetProfileType gets the profileType property value. The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT. // returns a *string when successful func (m *Device) GetProfileType()(*string) { val, err := m.GetBackingStore().Get("profileType") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetRegisteredOwners gets the registeredOwners property value. 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. // returns a []DirectoryObjectable when successful func (m *Device) GetRegisteredOwners()([]DirectoryObjectable) { val, err := m.GetBackingStore().Get("registeredOwners") if err != nil { panic(err) } if val != nil { return val.([]DirectoryObjectable) } return nil } // GetRegisteredUsers gets the registeredUsers property value. 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. // returns a []DirectoryObjectable when successful func (m *Device) GetRegisteredUsers()([]DirectoryObjectable) { val, err := m.GetBackingStore().Get("registeredUsers") if err != nil { panic(err) } if val != nil { return val.([]DirectoryObjectable) } return nil } // GetRegistrationDateTime gets the registrationDateTime property value. 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. // returns a *Time when successful func (m *Device) GetRegistrationDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) { val, err := m.GetBackingStore().Get("registrationDateTime") if err != nil { panic(err) } if val != nil { return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) } return nil } // GetSystemLabels gets the systemLabels property value. List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0). // returns a []string when successful func (m *Device) GetSystemLabels()([]string) { val, err := m.GetBackingStore().Get("systemLabels") if err != nil { panic(err) } if val != nil { return val.([]string) } return nil } // GetTransitiveMemberOf gets the transitiveMemberOf property value. Groups and administrative units that the device is a member of. This operation is transitive. Supports $expand. // returns a []DirectoryObjectable when successful func (m *Device) GetTransitiveMemberOf()([]DirectoryObjectable) { val, err := m.GetBackingStore().Get("transitiveMemberOf") if err != nil { panic(err) } if val != nil { return val.([]DirectoryObjectable) } return nil } // GetTrustType gets the trustType property value. 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). // returns a *string when successful func (m *Device) GetTrustType()(*string) { val, err := m.GetBackingStore().Get("trustType") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // Serialize serializes information the current object func (m *Device) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { err := m.DirectoryObject.Serialize(writer) if err != nil { return err } { err = writer.WriteBoolValue("accountEnabled", m.GetAccountEnabled()) if err != nil { return err } } if m.GetAlternativeSecurityIds() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetAlternativeSecurityIds())) for i, v := range m.GetAlternativeSecurityIds() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("alternativeSecurityIds", cast) if err != nil { return err } } { err = writer.WriteTimeValue("approximateLastSignInDateTime", m.GetApproximateLastSignInDateTime()) if err != nil { return err } } { err = writer.WriteTimeValue("complianceExpirationDateTime", m.GetComplianceExpirationDateTime()) if err != nil { return err } } { err = writer.WriteStringValue("deviceCategory", m.GetDeviceCategory()) if err != nil { return err } } { err = writer.WriteStringValue("deviceId", m.GetDeviceId()) if err != nil { return err } } { err = writer.WriteStringValue("deviceMetadata", m.GetDeviceMetadata()) if err != nil { return err } } { err = writer.WriteStringValue("deviceOwnership", m.GetDeviceOwnership()) if err != nil { return err } } { err = writer.WriteInt32Value("deviceVersion", m.GetDeviceVersion()) if err != nil { return err } } { err = writer.WriteStringValue("displayName", m.GetDisplayName()) if err != nil { return err } } { err = writer.WriteStringValue("enrollmentProfileName", m.GetEnrollmentProfileName()) if err != nil { return err } } { err = writer.WriteStringValue("enrollmentType", m.GetEnrollmentType()) if err != nil { return err } } if m.GetExtensions() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetExtensions())) for i, v := range m.GetExtensions() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("extensions", cast) if err != nil { return err } } { err = writer.WriteBoolValue("isCompliant", m.GetIsCompliant()) if err != nil { return err } } { err = writer.WriteBoolValue("isManaged", m.GetIsManaged()) if err != nil { return err } } { err = writer.WriteBoolValue("isManagementRestricted", m.GetIsManagementRestricted()) if err != nil { return err } } { err = writer.WriteBoolValue("isRooted", m.GetIsRooted()) if err != nil { return err } } { err = writer.WriteStringValue("managementType", m.GetManagementType()) if err != nil { return err } } { err = writer.WriteStringValue("manufacturer", m.GetManufacturer()) if err != nil { return err } } { err = writer.WriteStringValue("mdmAppId", m.GetMdmAppId()) if err != nil { return err } } if m.GetMemberOf() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetMemberOf())) for i, v := range m.GetMemberOf() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("memberOf", cast) if err != nil { return err } } { err = writer.WriteStringValue("model", m.GetModel()) if err != nil { return err } } { err = writer.WriteTimeValue("onPremisesLastSyncDateTime", m.GetOnPremisesLastSyncDateTime()) if err != nil { return err } } { err = writer.WriteStringValue("onPremisesSecurityIdentifier", m.GetOnPremisesSecurityIdentifier()) if err != nil { return err } } { err = writer.WriteBoolValue("onPremisesSyncEnabled", m.GetOnPremisesSyncEnabled()) if err != nil { return err } } { err = writer.WriteStringValue("operatingSystem", m.GetOperatingSystem()) if err != nil { return err } } { err = writer.WriteStringValue("operatingSystemVersion", m.GetOperatingSystemVersion()) if err != nil { return err } } if m.GetPhysicalIds() != nil { err = writer.WriteCollectionOfStringValues("physicalIds", m.GetPhysicalIds()) if err != nil { return err } } { err = writer.WriteStringValue("profileType", m.GetProfileType()) if err != nil { return err } } if m.GetRegisteredOwners() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetRegisteredOwners())) for i, v := range m.GetRegisteredOwners() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("registeredOwners", cast) if err != nil { return err } } if m.GetRegisteredUsers() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetRegisteredUsers())) for i, v := range m.GetRegisteredUsers() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("registeredUsers", cast) if err != nil { return err } } { err = writer.WriteTimeValue("registrationDateTime", m.GetRegistrationDateTime()) if err != nil { return err } } if m.GetSystemLabels() != nil { err = writer.WriteCollectionOfStringValues("systemLabels", m.GetSystemLabels()) if err != nil { return err } } if m.GetTransitiveMemberOf() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetTransitiveMemberOf())) for i, v := range m.GetTransitiveMemberOf() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("transitiveMemberOf", cast) if err != nil { return err } } { err = writer.WriteStringValue("trustType", m.GetTrustType()) if err != nil { return err } } return nil } // SetAccountEnabled sets the accountEnabled property value. true if the account is enabled; otherwise, false. Required. Default is true. Supports $filter (eq, ne, not, in). Only callers with at least the Cloud Device Administrator role can set this property. func (m *Device) SetAccountEnabled(value *bool)() { err := m.GetBackingStore().Set("accountEnabled", value) if err != nil { panic(err) } } // SetAlternativeSecurityIds sets the alternativeSecurityIds property value. For internal use only. Not nullable. Supports $filter (eq, not, ge, le). func (m *Device) SetAlternativeSecurityIds(value []AlternativeSecurityIdable)() { err := m.GetBackingStore().Set("alternativeSecurityIds", value) if err != nil { panic(err) } } // SetApproximateLastSignInDateTime sets the approximateLastSignInDateTime property value. 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. func (m *Device) SetApproximateLastSignInDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("approximateLastSignInDateTime", value) if err != nil { panic(err) } } // SetComplianceExpirationDateTime sets the complianceExpirationDateTime property value. 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. func (m *Device) SetComplianceExpirationDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("complianceExpirationDateTime", value) if err != nil { panic(err) } } // SetDeviceCategory sets the deviceCategory property value. User-defined property set by Intune to automatically add devices to groups and simplify managing devices. func (m *Device) SetDeviceCategory(value *string)() { err := m.GetBackingStore().Set("deviceCategory", value) if err != nil { panic(err) } } // SetDeviceId sets the deviceId property value. Unique identifier set by Azure Device Registration Service at the time of registration. This alternate key can be used to reference the device object. Supports $filter (eq, ne, not, startsWith). func (m *Device) SetDeviceId(value *string)() { err := m.GetBackingStore().Set("deviceId", value) if err != nil { panic(err) } } // SetDeviceMetadata sets the deviceMetadata property value. For internal use only. Set to null. func (m *Device) SetDeviceMetadata(value *string)() { err := m.GetBackingStore().Set("deviceMetadata", value) if err != nil { panic(err) } } // SetDeviceOwnership sets the deviceOwnership property value. Ownership of the device. Intune sets this property. Possible values are: unknown, company, personal. func (m *Device) SetDeviceOwnership(value *string)() { err := m.GetBackingStore().Set("deviceOwnership", value) if err != nil { panic(err) } } // SetDeviceVersion sets the deviceVersion property value. For internal use only. func (m *Device) SetDeviceVersion(value *int32)() { err := m.GetBackingStore().Set("deviceVersion", value) if err != nil { panic(err) } } // SetDisplayName sets the displayName property value. 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. func (m *Device) SetDisplayName(value *string)() { err := m.GetBackingStore().Set("displayName", value) if err != nil { panic(err) } } // SetEnrollmentProfileName sets the enrollmentProfileName property value. Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. This property is set by Intune. func (m *Device) SetEnrollmentProfileName(value *string)() { err := m.GetBackingStore().Set("enrollmentProfileName", value) if err != nil { panic(err) } } // SetEnrollmentType sets the enrollmentType property value. Enrollment type of the device. Intune sets this property. 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. func (m *Device) SetEnrollmentType(value *string)() { err := m.GetBackingStore().Set("enrollmentType", value) if err != nil { panic(err) } } // SetExtensions sets the extensions property value. The collection of open extensions defined for the device. Read-only. Nullable. func (m *Device) SetExtensions(value []Extensionable)() { err := m.GetBackingStore().Set("extensions", value) if err != nil { panic(err) } } // SetIsCompliant sets the isCompliant property value. 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). func (m *Device) SetIsCompliant(value *bool)() { err := m.GetBackingStore().Set("isCompliant", value) if err != nil { panic(err) } } // SetIsManaged sets the isManaged property value. 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). func (m *Device) SetIsManaged(value *bool)() { err := m.GetBackingStore().Set("isManaged", value) if err != nil { panic(err) } } // SetIsManagementRestricted sets the isManagementRestricted property value. 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. Returned only on $select. func (m *Device) SetIsManagementRestricted(value *bool)() { err := m.GetBackingStore().Set("isManagementRestricted", value) if err != nil { panic(err) } } // SetIsRooted sets the isRooted property value. true if the device is rooted or jail-broken. This property can only be updated by Intune. func (m *Device) SetIsRooted(value *bool)() { err := m.GetBackingStore().Set("isRooted", value) if err != nil { panic(err) } } // SetManagementType sets the managementType property value. The management channel of the device. This property is set by Intune. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController. func (m *Device) SetManagementType(value *string)() { err := m.GetBackingStore().Set("managementType", value) if err != nil { panic(err) } } // SetManufacturer sets the manufacturer property value. Manufacturer of the device. Read-only. func (m *Device) SetManufacturer(value *string)() { err := m.GetBackingStore().Set("manufacturer", value) if err != nil { panic(err) } } // SetMdmAppId sets the mdmAppId property value. Application identifier used to register device into MDM. Read-only. Supports $filter (eq, ne, not, startsWith). func (m *Device) SetMdmAppId(value *string)() { err := m.GetBackingStore().Set("mdmAppId", value) if err != nil { panic(err) } } // SetMemberOf sets the memberOf property value. Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. func (m *Device) SetMemberOf(value []DirectoryObjectable)() { err := m.GetBackingStore().Set("memberOf", value) if err != nil { panic(err) } } // SetModel sets the model property value. Model of the device. Read-only. func (m *Device) SetModel(value *string)() { err := m.GetBackingStore().Set("model", value) if err != nil { panic(err) } } // SetOnPremisesLastSyncDateTime sets the onPremisesLastSyncDateTime property value. 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). func (m *Device) SetOnPremisesLastSyncDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("onPremisesLastSyncDateTime", value) if err != nil { panic(err) } } // SetOnPremisesSecurityIdentifier sets the onPremisesSecurityIdentifier property value. 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). func (m *Device) SetOnPremisesSecurityIdentifier(value *string)() { err := m.GetBackingStore().Set("onPremisesSecurityIdentifier", value) if err != nil { panic(err) } } // SetOnPremisesSyncEnabled sets the onPremisesSyncEnabled property value. 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). func (m *Device) SetOnPremisesSyncEnabled(value *bool)() { err := m.GetBackingStore().Set("onPremisesSyncEnabled", value) if err != nil { panic(err) } } // SetOperatingSystem sets the operatingSystem property value. The type of operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). func (m *Device) SetOperatingSystem(value *string)() { err := m.GetBackingStore().Set("operatingSystem", value) if err != nil { panic(err) } } // SetOperatingSystemVersion sets the operatingSystemVersion property value. The version of the operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). func (m *Device) SetOperatingSystemVersion(value *string)() { err := m.GetBackingStore().Set("operatingSystemVersion", value) if err != nil { panic(err) } } // SetPhysicalIds sets the physicalIds property value. For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith,/$count eq 0, /$count ne 0). func (m *Device) SetPhysicalIds(value []string)() { err := m.GetBackingStore().Set("physicalIds", value) if err != nil { panic(err) } } // SetProfileType sets the profileType property value. The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT. func (m *Device) SetProfileType(value *string)() { err := m.GetBackingStore().Set("profileType", value) if err != nil { panic(err) } } // SetRegisteredOwners sets the registeredOwners property value. 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. func (m *Device) SetRegisteredOwners(value []DirectoryObjectable)() { err := m.GetBackingStore().Set("registeredOwners", value) if err != nil { panic(err) } } // SetRegisteredUsers sets the registeredUsers property value. 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. func (m *Device) SetRegisteredUsers(value []DirectoryObjectable)() { err := m.GetBackingStore().Set("registeredUsers", value) if err != nil { panic(err) } } // SetRegistrationDateTime sets the registrationDateTime property value. 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. func (m *Device) SetRegistrationDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() { err := m.GetBackingStore().Set("registrationDateTime", value) if err != nil { panic(err) } } // SetSystemLabels sets the systemLabels property value. List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0). func (m *Device) SetSystemLabels(value []string)() { err := m.GetBackingStore().Set("systemLabels", value) if err != nil { panic(err) } } // SetTransitiveMemberOf sets the transitiveMemberOf property value. Groups and administrative units that the device is a member of. This operation is transitive. Supports $expand. func (m *Device) SetTransitiveMemberOf(value []DirectoryObjectable)() { err := m.GetBackingStore().Set("transitiveMemberOf", value) if err != nil { panic(err) } } // SetTrustType sets the trustType property value. 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). func (m *Device) SetTrustType(value *string)() { err := m.GetBackingStore().Set("trustType", value) if err != nil { panic(err) } } type Deviceable interface { DirectoryObjectable i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetAccountEnabled()(*bool) GetAlternativeSecurityIds()([]AlternativeSecurityIdable) GetApproximateLastSignInDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetComplianceExpirationDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetDeviceCategory()(*string) GetDeviceId()(*string) GetDeviceMetadata()(*string) GetDeviceOwnership()(*string) GetDeviceVersion()(*int32) GetDisplayName()(*string) GetEnrollmentProfileName()(*string) GetEnrollmentType()(*string) GetExtensions()([]Extensionable) GetIsCompliant()(*bool) GetIsManaged()(*bool) GetIsManagementRestricted()(*bool) GetIsRooted()(*bool) GetManagementType()(*string) GetManufacturer()(*string) GetMdmAppId()(*string) GetMemberOf()([]DirectoryObjectable) GetModel()(*string) GetOnPremisesLastSyncDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetOnPremisesSecurityIdentifier()(*string) GetOnPremisesSyncEnabled()(*bool) GetOperatingSystem()(*string) GetOperatingSystemVersion()(*string) GetPhysicalIds()([]string) GetProfileType()(*string) GetRegisteredOwners()([]DirectoryObjectable) GetRegisteredUsers()([]DirectoryObjectable) GetRegistrationDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) GetSystemLabels()([]string) GetTransitiveMemberOf()([]DirectoryObjectable) GetTrustType()(*string) SetAccountEnabled(value *bool)() SetAlternativeSecurityIds(value []AlternativeSecurityIdable)() SetApproximateLastSignInDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetComplianceExpirationDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetDeviceCategory(value *string)() SetDeviceId(value *string)() SetDeviceMetadata(value *string)() SetDeviceOwnership(value *string)() SetDeviceVersion(value *int32)() SetDisplayName(value *string)() SetEnrollmentProfileName(value *string)() SetEnrollmentType(value *string)() SetExtensions(value []Extensionable)() SetIsCompliant(value *bool)() SetIsManaged(value *bool)() SetIsManagementRestricted(value *bool)() SetIsRooted(value *bool)() SetManagementType(value *string)() SetManufacturer(value *string)() SetMdmAppId(value *string)() SetMemberOf(value []DirectoryObjectable)() SetModel(value *string)() SetOnPremisesLastSyncDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetOnPremisesSecurityIdentifier(value *string)() SetOnPremisesSyncEnabled(value *bool)() SetOperatingSystem(value *string)() SetOperatingSystemVersion(value *string)() SetPhysicalIds(value []string)() SetProfileType(value *string)() SetRegisteredOwners(value []DirectoryObjectable)() SetRegisteredUsers(value []DirectoryObjectable)() SetRegistrationDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() SetSystemLabels(value []string)() SetTransitiveMemberOf(value []DirectoryObjectable)() SetTrustType(value *string)() }