github.com/yaegashi/msgraph.go@v0.1.4/v1.0/EnumDevice.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // DeviceComplianceActionType undocumented
     6  type DeviceComplianceActionType string
     7  
     8  const (
     9  	// DeviceComplianceActionTypeVNoAction undocumented
    10  	DeviceComplianceActionTypeVNoAction DeviceComplianceActionType = "noAction"
    11  	// DeviceComplianceActionTypeVNotification undocumented
    12  	DeviceComplianceActionTypeVNotification DeviceComplianceActionType = "notification"
    13  	// DeviceComplianceActionTypeVBlock undocumented
    14  	DeviceComplianceActionTypeVBlock DeviceComplianceActionType = "block"
    15  	// DeviceComplianceActionTypeVRetire undocumented
    16  	DeviceComplianceActionTypeVRetire DeviceComplianceActionType = "retire"
    17  	// DeviceComplianceActionTypeVWipe undocumented
    18  	DeviceComplianceActionTypeVWipe DeviceComplianceActionType = "wipe"
    19  	// DeviceComplianceActionTypeVRemoveResourceAccessProfiles undocumented
    20  	DeviceComplianceActionTypeVRemoveResourceAccessProfiles DeviceComplianceActionType = "removeResourceAccessProfiles"
    21  	// DeviceComplianceActionTypeVPushNotification undocumented
    22  	DeviceComplianceActionTypeVPushNotification DeviceComplianceActionType = "pushNotification"
    23  )
    24  
    25  var (
    26  	// DeviceComplianceActionTypePNoAction is a pointer to DeviceComplianceActionTypeVNoAction
    27  	DeviceComplianceActionTypePNoAction = &_DeviceComplianceActionTypePNoAction
    28  	// DeviceComplianceActionTypePNotification is a pointer to DeviceComplianceActionTypeVNotification
    29  	DeviceComplianceActionTypePNotification = &_DeviceComplianceActionTypePNotification
    30  	// DeviceComplianceActionTypePBlock is a pointer to DeviceComplianceActionTypeVBlock
    31  	DeviceComplianceActionTypePBlock = &_DeviceComplianceActionTypePBlock
    32  	// DeviceComplianceActionTypePRetire is a pointer to DeviceComplianceActionTypeVRetire
    33  	DeviceComplianceActionTypePRetire = &_DeviceComplianceActionTypePRetire
    34  	// DeviceComplianceActionTypePWipe is a pointer to DeviceComplianceActionTypeVWipe
    35  	DeviceComplianceActionTypePWipe = &_DeviceComplianceActionTypePWipe
    36  	// DeviceComplianceActionTypePRemoveResourceAccessProfiles is a pointer to DeviceComplianceActionTypeVRemoveResourceAccessProfiles
    37  	DeviceComplianceActionTypePRemoveResourceAccessProfiles = &_DeviceComplianceActionTypePRemoveResourceAccessProfiles
    38  	// DeviceComplianceActionTypePPushNotification is a pointer to DeviceComplianceActionTypeVPushNotification
    39  	DeviceComplianceActionTypePPushNotification = &_DeviceComplianceActionTypePPushNotification
    40  )
    41  
    42  var (
    43  	_DeviceComplianceActionTypePNoAction                     = DeviceComplianceActionTypeVNoAction
    44  	_DeviceComplianceActionTypePNotification                 = DeviceComplianceActionTypeVNotification
    45  	_DeviceComplianceActionTypePBlock                        = DeviceComplianceActionTypeVBlock
    46  	_DeviceComplianceActionTypePRetire                       = DeviceComplianceActionTypeVRetire
    47  	_DeviceComplianceActionTypePWipe                         = DeviceComplianceActionTypeVWipe
    48  	_DeviceComplianceActionTypePRemoveResourceAccessProfiles = DeviceComplianceActionTypeVRemoveResourceAccessProfiles
    49  	_DeviceComplianceActionTypePPushNotification             = DeviceComplianceActionTypeVPushNotification
    50  )
    51  
    52  // DeviceEnrollmentFailureReason undocumented
    53  type DeviceEnrollmentFailureReason string
    54  
    55  const (
    56  	// DeviceEnrollmentFailureReasonVUnknown undocumented
    57  	DeviceEnrollmentFailureReasonVUnknown DeviceEnrollmentFailureReason = "unknown"
    58  	// DeviceEnrollmentFailureReasonVAuthentication undocumented
    59  	DeviceEnrollmentFailureReasonVAuthentication DeviceEnrollmentFailureReason = "authentication"
    60  	// DeviceEnrollmentFailureReasonVAuthorization undocumented
    61  	DeviceEnrollmentFailureReasonVAuthorization DeviceEnrollmentFailureReason = "authorization"
    62  	// DeviceEnrollmentFailureReasonVAccountValidation undocumented
    63  	DeviceEnrollmentFailureReasonVAccountValidation DeviceEnrollmentFailureReason = "accountValidation"
    64  	// DeviceEnrollmentFailureReasonVUserValidation undocumented
    65  	DeviceEnrollmentFailureReasonVUserValidation DeviceEnrollmentFailureReason = "userValidation"
    66  	// DeviceEnrollmentFailureReasonVDeviceNotSupported undocumented
    67  	DeviceEnrollmentFailureReasonVDeviceNotSupported DeviceEnrollmentFailureReason = "deviceNotSupported"
    68  	// DeviceEnrollmentFailureReasonVInMaintenance undocumented
    69  	DeviceEnrollmentFailureReasonVInMaintenance DeviceEnrollmentFailureReason = "inMaintenance"
    70  	// DeviceEnrollmentFailureReasonVBadRequest undocumented
    71  	DeviceEnrollmentFailureReasonVBadRequest DeviceEnrollmentFailureReason = "badRequest"
    72  	// DeviceEnrollmentFailureReasonVFeatureNotSupported undocumented
    73  	DeviceEnrollmentFailureReasonVFeatureNotSupported DeviceEnrollmentFailureReason = "featureNotSupported"
    74  	// DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced undocumented
    75  	DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced DeviceEnrollmentFailureReason = "enrollmentRestrictionsEnforced"
    76  	// DeviceEnrollmentFailureReasonVClientDisconnected undocumented
    77  	DeviceEnrollmentFailureReasonVClientDisconnected DeviceEnrollmentFailureReason = "clientDisconnected"
    78  	// DeviceEnrollmentFailureReasonVUserAbandonment undocumented
    79  	DeviceEnrollmentFailureReasonVUserAbandonment DeviceEnrollmentFailureReason = "userAbandonment"
    80  )
    81  
    82  var (
    83  	// DeviceEnrollmentFailureReasonPUnknown is a pointer to DeviceEnrollmentFailureReasonVUnknown
    84  	DeviceEnrollmentFailureReasonPUnknown = &_DeviceEnrollmentFailureReasonPUnknown
    85  	// DeviceEnrollmentFailureReasonPAuthentication is a pointer to DeviceEnrollmentFailureReasonVAuthentication
    86  	DeviceEnrollmentFailureReasonPAuthentication = &_DeviceEnrollmentFailureReasonPAuthentication
    87  	// DeviceEnrollmentFailureReasonPAuthorization is a pointer to DeviceEnrollmentFailureReasonVAuthorization
    88  	DeviceEnrollmentFailureReasonPAuthorization = &_DeviceEnrollmentFailureReasonPAuthorization
    89  	// DeviceEnrollmentFailureReasonPAccountValidation is a pointer to DeviceEnrollmentFailureReasonVAccountValidation
    90  	DeviceEnrollmentFailureReasonPAccountValidation = &_DeviceEnrollmentFailureReasonPAccountValidation
    91  	// DeviceEnrollmentFailureReasonPUserValidation is a pointer to DeviceEnrollmentFailureReasonVUserValidation
    92  	DeviceEnrollmentFailureReasonPUserValidation = &_DeviceEnrollmentFailureReasonPUserValidation
    93  	// DeviceEnrollmentFailureReasonPDeviceNotSupported is a pointer to DeviceEnrollmentFailureReasonVDeviceNotSupported
    94  	DeviceEnrollmentFailureReasonPDeviceNotSupported = &_DeviceEnrollmentFailureReasonPDeviceNotSupported
    95  	// DeviceEnrollmentFailureReasonPInMaintenance is a pointer to DeviceEnrollmentFailureReasonVInMaintenance
    96  	DeviceEnrollmentFailureReasonPInMaintenance = &_DeviceEnrollmentFailureReasonPInMaintenance
    97  	// DeviceEnrollmentFailureReasonPBadRequest is a pointer to DeviceEnrollmentFailureReasonVBadRequest
    98  	DeviceEnrollmentFailureReasonPBadRequest = &_DeviceEnrollmentFailureReasonPBadRequest
    99  	// DeviceEnrollmentFailureReasonPFeatureNotSupported is a pointer to DeviceEnrollmentFailureReasonVFeatureNotSupported
   100  	DeviceEnrollmentFailureReasonPFeatureNotSupported = &_DeviceEnrollmentFailureReasonPFeatureNotSupported
   101  	// DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced is a pointer to DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced
   102  	DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced = &_DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced
   103  	// DeviceEnrollmentFailureReasonPClientDisconnected is a pointer to DeviceEnrollmentFailureReasonVClientDisconnected
   104  	DeviceEnrollmentFailureReasonPClientDisconnected = &_DeviceEnrollmentFailureReasonPClientDisconnected
   105  	// DeviceEnrollmentFailureReasonPUserAbandonment is a pointer to DeviceEnrollmentFailureReasonVUserAbandonment
   106  	DeviceEnrollmentFailureReasonPUserAbandonment = &_DeviceEnrollmentFailureReasonPUserAbandonment
   107  )
   108  
   109  var (
   110  	_DeviceEnrollmentFailureReasonPUnknown                        = DeviceEnrollmentFailureReasonVUnknown
   111  	_DeviceEnrollmentFailureReasonPAuthentication                 = DeviceEnrollmentFailureReasonVAuthentication
   112  	_DeviceEnrollmentFailureReasonPAuthorization                  = DeviceEnrollmentFailureReasonVAuthorization
   113  	_DeviceEnrollmentFailureReasonPAccountValidation              = DeviceEnrollmentFailureReasonVAccountValidation
   114  	_DeviceEnrollmentFailureReasonPUserValidation                 = DeviceEnrollmentFailureReasonVUserValidation
   115  	_DeviceEnrollmentFailureReasonPDeviceNotSupported             = DeviceEnrollmentFailureReasonVDeviceNotSupported
   116  	_DeviceEnrollmentFailureReasonPInMaintenance                  = DeviceEnrollmentFailureReasonVInMaintenance
   117  	_DeviceEnrollmentFailureReasonPBadRequest                     = DeviceEnrollmentFailureReasonVBadRequest
   118  	_DeviceEnrollmentFailureReasonPFeatureNotSupported            = DeviceEnrollmentFailureReasonVFeatureNotSupported
   119  	_DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced = DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced
   120  	_DeviceEnrollmentFailureReasonPClientDisconnected             = DeviceEnrollmentFailureReasonVClientDisconnected
   121  	_DeviceEnrollmentFailureReasonPUserAbandonment                = DeviceEnrollmentFailureReasonVUserAbandonment
   122  )
   123  
   124  // DeviceEnrollmentType undocumented
   125  type DeviceEnrollmentType string
   126  
   127  const (
   128  	// DeviceEnrollmentTypeVUnknown undocumented
   129  	DeviceEnrollmentTypeVUnknown DeviceEnrollmentType = "unknown"
   130  	// DeviceEnrollmentTypeVUserEnrollment undocumented
   131  	DeviceEnrollmentTypeVUserEnrollment DeviceEnrollmentType = "userEnrollment"
   132  	// DeviceEnrollmentTypeVDeviceEnrollmentManager undocumented
   133  	DeviceEnrollmentTypeVDeviceEnrollmentManager DeviceEnrollmentType = "deviceEnrollmentManager"
   134  	// DeviceEnrollmentTypeVAppleBulkWithUser undocumented
   135  	DeviceEnrollmentTypeVAppleBulkWithUser DeviceEnrollmentType = "appleBulkWithUser"
   136  	// DeviceEnrollmentTypeVAppleBulkWithoutUser undocumented
   137  	DeviceEnrollmentTypeVAppleBulkWithoutUser DeviceEnrollmentType = "appleBulkWithoutUser"
   138  	// DeviceEnrollmentTypeVWindowsAzureADJoin undocumented
   139  	DeviceEnrollmentTypeVWindowsAzureADJoin DeviceEnrollmentType = "windowsAzureADJoin"
   140  	// DeviceEnrollmentTypeVWindowsBulkUserless undocumented
   141  	DeviceEnrollmentTypeVWindowsBulkUserless DeviceEnrollmentType = "windowsBulkUserless"
   142  	// DeviceEnrollmentTypeVWindowsAutoEnrollment undocumented
   143  	DeviceEnrollmentTypeVWindowsAutoEnrollment DeviceEnrollmentType = "windowsAutoEnrollment"
   144  	// DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin undocumented
   145  	DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin DeviceEnrollmentType = "windowsBulkAzureDomainJoin"
   146  	// DeviceEnrollmentTypeVWindowsCoManagement undocumented
   147  	DeviceEnrollmentTypeVWindowsCoManagement DeviceEnrollmentType = "windowsCoManagement"
   148  )
   149  
   150  var (
   151  	// DeviceEnrollmentTypePUnknown is a pointer to DeviceEnrollmentTypeVUnknown
   152  	DeviceEnrollmentTypePUnknown = &_DeviceEnrollmentTypePUnknown
   153  	// DeviceEnrollmentTypePUserEnrollment is a pointer to DeviceEnrollmentTypeVUserEnrollment
   154  	DeviceEnrollmentTypePUserEnrollment = &_DeviceEnrollmentTypePUserEnrollment
   155  	// DeviceEnrollmentTypePDeviceEnrollmentManager is a pointer to DeviceEnrollmentTypeVDeviceEnrollmentManager
   156  	DeviceEnrollmentTypePDeviceEnrollmentManager = &_DeviceEnrollmentTypePDeviceEnrollmentManager
   157  	// DeviceEnrollmentTypePAppleBulkWithUser is a pointer to DeviceEnrollmentTypeVAppleBulkWithUser
   158  	DeviceEnrollmentTypePAppleBulkWithUser = &_DeviceEnrollmentTypePAppleBulkWithUser
   159  	// DeviceEnrollmentTypePAppleBulkWithoutUser is a pointer to DeviceEnrollmentTypeVAppleBulkWithoutUser
   160  	DeviceEnrollmentTypePAppleBulkWithoutUser = &_DeviceEnrollmentTypePAppleBulkWithoutUser
   161  	// DeviceEnrollmentTypePWindowsAzureADJoin is a pointer to DeviceEnrollmentTypeVWindowsAzureADJoin
   162  	DeviceEnrollmentTypePWindowsAzureADJoin = &_DeviceEnrollmentTypePWindowsAzureADJoin
   163  	// DeviceEnrollmentTypePWindowsBulkUserless is a pointer to DeviceEnrollmentTypeVWindowsBulkUserless
   164  	DeviceEnrollmentTypePWindowsBulkUserless = &_DeviceEnrollmentTypePWindowsBulkUserless
   165  	// DeviceEnrollmentTypePWindowsAutoEnrollment is a pointer to DeviceEnrollmentTypeVWindowsAutoEnrollment
   166  	DeviceEnrollmentTypePWindowsAutoEnrollment = &_DeviceEnrollmentTypePWindowsAutoEnrollment
   167  	// DeviceEnrollmentTypePWindowsBulkAzureDomainJoin is a pointer to DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin
   168  	DeviceEnrollmentTypePWindowsBulkAzureDomainJoin = &_DeviceEnrollmentTypePWindowsBulkAzureDomainJoin
   169  	// DeviceEnrollmentTypePWindowsCoManagement is a pointer to DeviceEnrollmentTypeVWindowsCoManagement
   170  	DeviceEnrollmentTypePWindowsCoManagement = &_DeviceEnrollmentTypePWindowsCoManagement
   171  )
   172  
   173  var (
   174  	_DeviceEnrollmentTypePUnknown                    = DeviceEnrollmentTypeVUnknown
   175  	_DeviceEnrollmentTypePUserEnrollment             = DeviceEnrollmentTypeVUserEnrollment
   176  	_DeviceEnrollmentTypePDeviceEnrollmentManager    = DeviceEnrollmentTypeVDeviceEnrollmentManager
   177  	_DeviceEnrollmentTypePAppleBulkWithUser          = DeviceEnrollmentTypeVAppleBulkWithUser
   178  	_DeviceEnrollmentTypePAppleBulkWithoutUser       = DeviceEnrollmentTypeVAppleBulkWithoutUser
   179  	_DeviceEnrollmentTypePWindowsAzureADJoin         = DeviceEnrollmentTypeVWindowsAzureADJoin
   180  	_DeviceEnrollmentTypePWindowsBulkUserless        = DeviceEnrollmentTypeVWindowsBulkUserless
   181  	_DeviceEnrollmentTypePWindowsAutoEnrollment      = DeviceEnrollmentTypeVWindowsAutoEnrollment
   182  	_DeviceEnrollmentTypePWindowsBulkAzureDomainJoin = DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin
   183  	_DeviceEnrollmentTypePWindowsCoManagement        = DeviceEnrollmentTypeVWindowsCoManagement
   184  )
   185  
   186  // DeviceManagementExchangeAccessState undocumented
   187  type DeviceManagementExchangeAccessState string
   188  
   189  const (
   190  	// DeviceManagementExchangeAccessStateVNone undocumented
   191  	DeviceManagementExchangeAccessStateVNone DeviceManagementExchangeAccessState = "none"
   192  	// DeviceManagementExchangeAccessStateVUnknown undocumented
   193  	DeviceManagementExchangeAccessStateVUnknown DeviceManagementExchangeAccessState = "unknown"
   194  	// DeviceManagementExchangeAccessStateVAllowed undocumented
   195  	DeviceManagementExchangeAccessStateVAllowed DeviceManagementExchangeAccessState = "allowed"
   196  	// DeviceManagementExchangeAccessStateVBlocked undocumented
   197  	DeviceManagementExchangeAccessStateVBlocked DeviceManagementExchangeAccessState = "blocked"
   198  	// DeviceManagementExchangeAccessStateVQuarantined undocumented
   199  	DeviceManagementExchangeAccessStateVQuarantined DeviceManagementExchangeAccessState = "quarantined"
   200  )
   201  
   202  var (
   203  	// DeviceManagementExchangeAccessStatePNone is a pointer to DeviceManagementExchangeAccessStateVNone
   204  	DeviceManagementExchangeAccessStatePNone = &_DeviceManagementExchangeAccessStatePNone
   205  	// DeviceManagementExchangeAccessStatePUnknown is a pointer to DeviceManagementExchangeAccessStateVUnknown
   206  	DeviceManagementExchangeAccessStatePUnknown = &_DeviceManagementExchangeAccessStatePUnknown
   207  	// DeviceManagementExchangeAccessStatePAllowed is a pointer to DeviceManagementExchangeAccessStateVAllowed
   208  	DeviceManagementExchangeAccessStatePAllowed = &_DeviceManagementExchangeAccessStatePAllowed
   209  	// DeviceManagementExchangeAccessStatePBlocked is a pointer to DeviceManagementExchangeAccessStateVBlocked
   210  	DeviceManagementExchangeAccessStatePBlocked = &_DeviceManagementExchangeAccessStatePBlocked
   211  	// DeviceManagementExchangeAccessStatePQuarantined is a pointer to DeviceManagementExchangeAccessStateVQuarantined
   212  	DeviceManagementExchangeAccessStatePQuarantined = &_DeviceManagementExchangeAccessStatePQuarantined
   213  )
   214  
   215  var (
   216  	_DeviceManagementExchangeAccessStatePNone        = DeviceManagementExchangeAccessStateVNone
   217  	_DeviceManagementExchangeAccessStatePUnknown     = DeviceManagementExchangeAccessStateVUnknown
   218  	_DeviceManagementExchangeAccessStatePAllowed     = DeviceManagementExchangeAccessStateVAllowed
   219  	_DeviceManagementExchangeAccessStatePBlocked     = DeviceManagementExchangeAccessStateVBlocked
   220  	_DeviceManagementExchangeAccessStatePQuarantined = DeviceManagementExchangeAccessStateVQuarantined
   221  )
   222  
   223  // DeviceManagementExchangeAccessStateReason undocumented
   224  type DeviceManagementExchangeAccessStateReason string
   225  
   226  const (
   227  	// DeviceManagementExchangeAccessStateReasonVNone undocumented
   228  	DeviceManagementExchangeAccessStateReasonVNone DeviceManagementExchangeAccessStateReason = "none"
   229  	// DeviceManagementExchangeAccessStateReasonVUnknown undocumented
   230  	DeviceManagementExchangeAccessStateReasonVUnknown DeviceManagementExchangeAccessStateReason = "unknown"
   231  	// DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule undocumented
   232  	DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule DeviceManagementExchangeAccessStateReason = "exchangeGlobalRule"
   233  	// DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule undocumented
   234  	DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule DeviceManagementExchangeAccessStateReason = "exchangeIndividualRule"
   235  	// DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule undocumented
   236  	DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule DeviceManagementExchangeAccessStateReason = "exchangeDeviceRule"
   237  	// DeviceManagementExchangeAccessStateReasonVExchangeUpgrade undocumented
   238  	DeviceManagementExchangeAccessStateReasonVExchangeUpgrade DeviceManagementExchangeAccessStateReason = "exchangeUpgrade"
   239  	// DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy undocumented
   240  	DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy DeviceManagementExchangeAccessStateReason = "exchangeMailboxPolicy"
   241  	// DeviceManagementExchangeAccessStateReasonVOther undocumented
   242  	DeviceManagementExchangeAccessStateReasonVOther DeviceManagementExchangeAccessStateReason = "other"
   243  	// DeviceManagementExchangeAccessStateReasonVCompliant undocumented
   244  	DeviceManagementExchangeAccessStateReasonVCompliant DeviceManagementExchangeAccessStateReason = "compliant"
   245  	// DeviceManagementExchangeAccessStateReasonVNotCompliant undocumented
   246  	DeviceManagementExchangeAccessStateReasonVNotCompliant DeviceManagementExchangeAccessStateReason = "notCompliant"
   247  	// DeviceManagementExchangeAccessStateReasonVNotEnrolled undocumented
   248  	DeviceManagementExchangeAccessStateReasonVNotEnrolled DeviceManagementExchangeAccessStateReason = "notEnrolled"
   249  	// DeviceManagementExchangeAccessStateReasonVUnknownLocation undocumented
   250  	DeviceManagementExchangeAccessStateReasonVUnknownLocation DeviceManagementExchangeAccessStateReason = "unknownLocation"
   251  	// DeviceManagementExchangeAccessStateReasonVMFARequired undocumented
   252  	DeviceManagementExchangeAccessStateReasonVMFARequired DeviceManagementExchangeAccessStateReason = "mfaRequired"
   253  	// DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy undocumented
   254  	DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy DeviceManagementExchangeAccessStateReason = "azureADBlockDueToAccessPolicy"
   255  	// DeviceManagementExchangeAccessStateReasonVCompromisedPassword undocumented
   256  	DeviceManagementExchangeAccessStateReasonVCompromisedPassword DeviceManagementExchangeAccessStateReason = "compromisedPassword"
   257  	// DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp undocumented
   258  	DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp DeviceManagementExchangeAccessStateReason = "deviceNotKnownWithManagedApp"
   259  )
   260  
   261  var (
   262  	// DeviceManagementExchangeAccessStateReasonPNone is a pointer to DeviceManagementExchangeAccessStateReasonVNone
   263  	DeviceManagementExchangeAccessStateReasonPNone = &_DeviceManagementExchangeAccessStateReasonPNone
   264  	// DeviceManagementExchangeAccessStateReasonPUnknown is a pointer to DeviceManagementExchangeAccessStateReasonVUnknown
   265  	DeviceManagementExchangeAccessStateReasonPUnknown = &_DeviceManagementExchangeAccessStateReasonPUnknown
   266  	// DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule
   267  	DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule = &_DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule
   268  	// DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule
   269  	DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule = &_DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule
   270  	// DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule
   271  	DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule = &_DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule
   272  	// DeviceManagementExchangeAccessStateReasonPExchangeUpgrade is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeUpgrade
   273  	DeviceManagementExchangeAccessStateReasonPExchangeUpgrade = &_DeviceManagementExchangeAccessStateReasonPExchangeUpgrade
   274  	// DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy
   275  	DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy = &_DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy
   276  	// DeviceManagementExchangeAccessStateReasonPOther is a pointer to DeviceManagementExchangeAccessStateReasonVOther
   277  	DeviceManagementExchangeAccessStateReasonPOther = &_DeviceManagementExchangeAccessStateReasonPOther
   278  	// DeviceManagementExchangeAccessStateReasonPCompliant is a pointer to DeviceManagementExchangeAccessStateReasonVCompliant
   279  	DeviceManagementExchangeAccessStateReasonPCompliant = &_DeviceManagementExchangeAccessStateReasonPCompliant
   280  	// DeviceManagementExchangeAccessStateReasonPNotCompliant is a pointer to DeviceManagementExchangeAccessStateReasonVNotCompliant
   281  	DeviceManagementExchangeAccessStateReasonPNotCompliant = &_DeviceManagementExchangeAccessStateReasonPNotCompliant
   282  	// DeviceManagementExchangeAccessStateReasonPNotEnrolled is a pointer to DeviceManagementExchangeAccessStateReasonVNotEnrolled
   283  	DeviceManagementExchangeAccessStateReasonPNotEnrolled = &_DeviceManagementExchangeAccessStateReasonPNotEnrolled
   284  	// DeviceManagementExchangeAccessStateReasonPUnknownLocation is a pointer to DeviceManagementExchangeAccessStateReasonVUnknownLocation
   285  	DeviceManagementExchangeAccessStateReasonPUnknownLocation = &_DeviceManagementExchangeAccessStateReasonPUnknownLocation
   286  	// DeviceManagementExchangeAccessStateReasonPMFARequired is a pointer to DeviceManagementExchangeAccessStateReasonVMFARequired
   287  	DeviceManagementExchangeAccessStateReasonPMFARequired = &_DeviceManagementExchangeAccessStateReasonPMFARequired
   288  	// DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy is a pointer to DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy
   289  	DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy = &_DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy
   290  	// DeviceManagementExchangeAccessStateReasonPCompromisedPassword is a pointer to DeviceManagementExchangeAccessStateReasonVCompromisedPassword
   291  	DeviceManagementExchangeAccessStateReasonPCompromisedPassword = &_DeviceManagementExchangeAccessStateReasonPCompromisedPassword
   292  	// DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp is a pointer to DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp
   293  	DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp = &_DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp
   294  )
   295  
   296  var (
   297  	_DeviceManagementExchangeAccessStateReasonPNone                          = DeviceManagementExchangeAccessStateReasonVNone
   298  	_DeviceManagementExchangeAccessStateReasonPUnknown                       = DeviceManagementExchangeAccessStateReasonVUnknown
   299  	_DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule            = DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule
   300  	_DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule        = DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule
   301  	_DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule            = DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule
   302  	_DeviceManagementExchangeAccessStateReasonPExchangeUpgrade               = DeviceManagementExchangeAccessStateReasonVExchangeUpgrade
   303  	_DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy         = DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy
   304  	_DeviceManagementExchangeAccessStateReasonPOther                         = DeviceManagementExchangeAccessStateReasonVOther
   305  	_DeviceManagementExchangeAccessStateReasonPCompliant                     = DeviceManagementExchangeAccessStateReasonVCompliant
   306  	_DeviceManagementExchangeAccessStateReasonPNotCompliant                  = DeviceManagementExchangeAccessStateReasonVNotCompliant
   307  	_DeviceManagementExchangeAccessStateReasonPNotEnrolled                   = DeviceManagementExchangeAccessStateReasonVNotEnrolled
   308  	_DeviceManagementExchangeAccessStateReasonPUnknownLocation               = DeviceManagementExchangeAccessStateReasonVUnknownLocation
   309  	_DeviceManagementExchangeAccessStateReasonPMFARequired                   = DeviceManagementExchangeAccessStateReasonVMFARequired
   310  	_DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy = DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy
   311  	_DeviceManagementExchangeAccessStateReasonPCompromisedPassword           = DeviceManagementExchangeAccessStateReasonVCompromisedPassword
   312  	_DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp  = DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp
   313  )
   314  
   315  // DeviceManagementExchangeConnectorStatus undocumented
   316  type DeviceManagementExchangeConnectorStatus string
   317  
   318  const (
   319  	// DeviceManagementExchangeConnectorStatusVNone undocumented
   320  	DeviceManagementExchangeConnectorStatusVNone DeviceManagementExchangeConnectorStatus = "none"
   321  	// DeviceManagementExchangeConnectorStatusVConnectionPending undocumented
   322  	DeviceManagementExchangeConnectorStatusVConnectionPending DeviceManagementExchangeConnectorStatus = "connectionPending"
   323  	// DeviceManagementExchangeConnectorStatusVConnected undocumented
   324  	DeviceManagementExchangeConnectorStatusVConnected DeviceManagementExchangeConnectorStatus = "connected"
   325  	// DeviceManagementExchangeConnectorStatusVDisconnected undocumented
   326  	DeviceManagementExchangeConnectorStatusVDisconnected DeviceManagementExchangeConnectorStatus = "disconnected"
   327  )
   328  
   329  var (
   330  	// DeviceManagementExchangeConnectorStatusPNone is a pointer to DeviceManagementExchangeConnectorStatusVNone
   331  	DeviceManagementExchangeConnectorStatusPNone = &_DeviceManagementExchangeConnectorStatusPNone
   332  	// DeviceManagementExchangeConnectorStatusPConnectionPending is a pointer to DeviceManagementExchangeConnectorStatusVConnectionPending
   333  	DeviceManagementExchangeConnectorStatusPConnectionPending = &_DeviceManagementExchangeConnectorStatusPConnectionPending
   334  	// DeviceManagementExchangeConnectorStatusPConnected is a pointer to DeviceManagementExchangeConnectorStatusVConnected
   335  	DeviceManagementExchangeConnectorStatusPConnected = &_DeviceManagementExchangeConnectorStatusPConnected
   336  	// DeviceManagementExchangeConnectorStatusPDisconnected is a pointer to DeviceManagementExchangeConnectorStatusVDisconnected
   337  	DeviceManagementExchangeConnectorStatusPDisconnected = &_DeviceManagementExchangeConnectorStatusPDisconnected
   338  )
   339  
   340  var (
   341  	_DeviceManagementExchangeConnectorStatusPNone              = DeviceManagementExchangeConnectorStatusVNone
   342  	_DeviceManagementExchangeConnectorStatusPConnectionPending = DeviceManagementExchangeConnectorStatusVConnectionPending
   343  	_DeviceManagementExchangeConnectorStatusPConnected         = DeviceManagementExchangeConnectorStatusVConnected
   344  	_DeviceManagementExchangeConnectorStatusPDisconnected      = DeviceManagementExchangeConnectorStatusVDisconnected
   345  )
   346  
   347  // DeviceManagementExchangeConnectorSyncType undocumented
   348  type DeviceManagementExchangeConnectorSyncType string
   349  
   350  const (
   351  	// DeviceManagementExchangeConnectorSyncTypeVFullSync undocumented
   352  	DeviceManagementExchangeConnectorSyncTypeVFullSync DeviceManagementExchangeConnectorSyncType = "fullSync"
   353  	// DeviceManagementExchangeConnectorSyncTypeVDeltaSync undocumented
   354  	DeviceManagementExchangeConnectorSyncTypeVDeltaSync DeviceManagementExchangeConnectorSyncType = "deltaSync"
   355  )
   356  
   357  var (
   358  	// DeviceManagementExchangeConnectorSyncTypePFullSync is a pointer to DeviceManagementExchangeConnectorSyncTypeVFullSync
   359  	DeviceManagementExchangeConnectorSyncTypePFullSync = &_DeviceManagementExchangeConnectorSyncTypePFullSync
   360  	// DeviceManagementExchangeConnectorSyncTypePDeltaSync is a pointer to DeviceManagementExchangeConnectorSyncTypeVDeltaSync
   361  	DeviceManagementExchangeConnectorSyncTypePDeltaSync = &_DeviceManagementExchangeConnectorSyncTypePDeltaSync
   362  )
   363  
   364  var (
   365  	_DeviceManagementExchangeConnectorSyncTypePFullSync  = DeviceManagementExchangeConnectorSyncTypeVFullSync
   366  	_DeviceManagementExchangeConnectorSyncTypePDeltaSync = DeviceManagementExchangeConnectorSyncTypeVDeltaSync
   367  )
   368  
   369  // DeviceManagementExchangeConnectorType undocumented
   370  type DeviceManagementExchangeConnectorType string
   371  
   372  const (
   373  	// DeviceManagementExchangeConnectorTypeVOnPremises undocumented
   374  	DeviceManagementExchangeConnectorTypeVOnPremises DeviceManagementExchangeConnectorType = "onPremises"
   375  	// DeviceManagementExchangeConnectorTypeVHosted undocumented
   376  	DeviceManagementExchangeConnectorTypeVHosted DeviceManagementExchangeConnectorType = "hosted"
   377  	// DeviceManagementExchangeConnectorTypeVServiceToService undocumented
   378  	DeviceManagementExchangeConnectorTypeVServiceToService DeviceManagementExchangeConnectorType = "serviceToService"
   379  	// DeviceManagementExchangeConnectorTypeVDedicated undocumented
   380  	DeviceManagementExchangeConnectorTypeVDedicated DeviceManagementExchangeConnectorType = "dedicated"
   381  )
   382  
   383  var (
   384  	// DeviceManagementExchangeConnectorTypePOnPremises is a pointer to DeviceManagementExchangeConnectorTypeVOnPremises
   385  	DeviceManagementExchangeConnectorTypePOnPremises = &_DeviceManagementExchangeConnectorTypePOnPremises
   386  	// DeviceManagementExchangeConnectorTypePHosted is a pointer to DeviceManagementExchangeConnectorTypeVHosted
   387  	DeviceManagementExchangeConnectorTypePHosted = &_DeviceManagementExchangeConnectorTypePHosted
   388  	// DeviceManagementExchangeConnectorTypePServiceToService is a pointer to DeviceManagementExchangeConnectorTypeVServiceToService
   389  	DeviceManagementExchangeConnectorTypePServiceToService = &_DeviceManagementExchangeConnectorTypePServiceToService
   390  	// DeviceManagementExchangeConnectorTypePDedicated is a pointer to DeviceManagementExchangeConnectorTypeVDedicated
   391  	DeviceManagementExchangeConnectorTypePDedicated = &_DeviceManagementExchangeConnectorTypePDedicated
   392  )
   393  
   394  var (
   395  	_DeviceManagementExchangeConnectorTypePOnPremises       = DeviceManagementExchangeConnectorTypeVOnPremises
   396  	_DeviceManagementExchangeConnectorTypePHosted           = DeviceManagementExchangeConnectorTypeVHosted
   397  	_DeviceManagementExchangeConnectorTypePServiceToService = DeviceManagementExchangeConnectorTypeVServiceToService
   398  	_DeviceManagementExchangeConnectorTypePDedicated        = DeviceManagementExchangeConnectorTypeVDedicated
   399  )
   400  
   401  // DeviceManagementPartnerAppType undocumented
   402  type DeviceManagementPartnerAppType string
   403  
   404  const (
   405  	// DeviceManagementPartnerAppTypeVUnknown undocumented
   406  	DeviceManagementPartnerAppTypeVUnknown DeviceManagementPartnerAppType = "unknown"
   407  	// DeviceManagementPartnerAppTypeVSingleTenantApp undocumented
   408  	DeviceManagementPartnerAppTypeVSingleTenantApp DeviceManagementPartnerAppType = "singleTenantApp"
   409  	// DeviceManagementPartnerAppTypeVMultiTenantApp undocumented
   410  	DeviceManagementPartnerAppTypeVMultiTenantApp DeviceManagementPartnerAppType = "multiTenantApp"
   411  )
   412  
   413  var (
   414  	// DeviceManagementPartnerAppTypePUnknown is a pointer to DeviceManagementPartnerAppTypeVUnknown
   415  	DeviceManagementPartnerAppTypePUnknown = &_DeviceManagementPartnerAppTypePUnknown
   416  	// DeviceManagementPartnerAppTypePSingleTenantApp is a pointer to DeviceManagementPartnerAppTypeVSingleTenantApp
   417  	DeviceManagementPartnerAppTypePSingleTenantApp = &_DeviceManagementPartnerAppTypePSingleTenantApp
   418  	// DeviceManagementPartnerAppTypePMultiTenantApp is a pointer to DeviceManagementPartnerAppTypeVMultiTenantApp
   419  	DeviceManagementPartnerAppTypePMultiTenantApp = &_DeviceManagementPartnerAppTypePMultiTenantApp
   420  )
   421  
   422  var (
   423  	_DeviceManagementPartnerAppTypePUnknown         = DeviceManagementPartnerAppTypeVUnknown
   424  	_DeviceManagementPartnerAppTypePSingleTenantApp = DeviceManagementPartnerAppTypeVSingleTenantApp
   425  	_DeviceManagementPartnerAppTypePMultiTenantApp  = DeviceManagementPartnerAppTypeVMultiTenantApp
   426  )
   427  
   428  // DeviceManagementPartnerTenantState undocumented
   429  type DeviceManagementPartnerTenantState string
   430  
   431  const (
   432  	// DeviceManagementPartnerTenantStateVUnknown undocumented
   433  	DeviceManagementPartnerTenantStateVUnknown DeviceManagementPartnerTenantState = "unknown"
   434  	// DeviceManagementPartnerTenantStateVUnavailable undocumented
   435  	DeviceManagementPartnerTenantStateVUnavailable DeviceManagementPartnerTenantState = "unavailable"
   436  	// DeviceManagementPartnerTenantStateVEnabled undocumented
   437  	DeviceManagementPartnerTenantStateVEnabled DeviceManagementPartnerTenantState = "enabled"
   438  	// DeviceManagementPartnerTenantStateVTerminated undocumented
   439  	DeviceManagementPartnerTenantStateVTerminated DeviceManagementPartnerTenantState = "terminated"
   440  	// DeviceManagementPartnerTenantStateVRejected undocumented
   441  	DeviceManagementPartnerTenantStateVRejected DeviceManagementPartnerTenantState = "rejected"
   442  	// DeviceManagementPartnerTenantStateVUnresponsive undocumented
   443  	DeviceManagementPartnerTenantStateVUnresponsive DeviceManagementPartnerTenantState = "unresponsive"
   444  )
   445  
   446  var (
   447  	// DeviceManagementPartnerTenantStatePUnknown is a pointer to DeviceManagementPartnerTenantStateVUnknown
   448  	DeviceManagementPartnerTenantStatePUnknown = &_DeviceManagementPartnerTenantStatePUnknown
   449  	// DeviceManagementPartnerTenantStatePUnavailable is a pointer to DeviceManagementPartnerTenantStateVUnavailable
   450  	DeviceManagementPartnerTenantStatePUnavailable = &_DeviceManagementPartnerTenantStatePUnavailable
   451  	// DeviceManagementPartnerTenantStatePEnabled is a pointer to DeviceManagementPartnerTenantStateVEnabled
   452  	DeviceManagementPartnerTenantStatePEnabled = &_DeviceManagementPartnerTenantStatePEnabled
   453  	// DeviceManagementPartnerTenantStatePTerminated is a pointer to DeviceManagementPartnerTenantStateVTerminated
   454  	DeviceManagementPartnerTenantStatePTerminated = &_DeviceManagementPartnerTenantStatePTerminated
   455  	// DeviceManagementPartnerTenantStatePRejected is a pointer to DeviceManagementPartnerTenantStateVRejected
   456  	DeviceManagementPartnerTenantStatePRejected = &_DeviceManagementPartnerTenantStatePRejected
   457  	// DeviceManagementPartnerTenantStatePUnresponsive is a pointer to DeviceManagementPartnerTenantStateVUnresponsive
   458  	DeviceManagementPartnerTenantStatePUnresponsive = &_DeviceManagementPartnerTenantStatePUnresponsive
   459  )
   460  
   461  var (
   462  	_DeviceManagementPartnerTenantStatePUnknown      = DeviceManagementPartnerTenantStateVUnknown
   463  	_DeviceManagementPartnerTenantStatePUnavailable  = DeviceManagementPartnerTenantStateVUnavailable
   464  	_DeviceManagementPartnerTenantStatePEnabled      = DeviceManagementPartnerTenantStateVEnabled
   465  	_DeviceManagementPartnerTenantStatePTerminated   = DeviceManagementPartnerTenantStateVTerminated
   466  	_DeviceManagementPartnerTenantStatePRejected     = DeviceManagementPartnerTenantStateVRejected
   467  	_DeviceManagementPartnerTenantStatePUnresponsive = DeviceManagementPartnerTenantStateVUnresponsive
   468  )
   469  
   470  // DeviceManagementSubscriptionState undocumented
   471  type DeviceManagementSubscriptionState string
   472  
   473  const (
   474  	// DeviceManagementSubscriptionStateVPending undocumented
   475  	DeviceManagementSubscriptionStateVPending DeviceManagementSubscriptionState = "pending"
   476  	// DeviceManagementSubscriptionStateVActive undocumented
   477  	DeviceManagementSubscriptionStateVActive DeviceManagementSubscriptionState = "active"
   478  	// DeviceManagementSubscriptionStateVWarning undocumented
   479  	DeviceManagementSubscriptionStateVWarning DeviceManagementSubscriptionState = "warning"
   480  	// DeviceManagementSubscriptionStateVDisabled undocumented
   481  	DeviceManagementSubscriptionStateVDisabled DeviceManagementSubscriptionState = "disabled"
   482  	// DeviceManagementSubscriptionStateVDeleted undocumented
   483  	DeviceManagementSubscriptionStateVDeleted DeviceManagementSubscriptionState = "deleted"
   484  	// DeviceManagementSubscriptionStateVBlocked undocumented
   485  	DeviceManagementSubscriptionStateVBlocked DeviceManagementSubscriptionState = "blocked"
   486  	// DeviceManagementSubscriptionStateVLockedOut undocumented
   487  	DeviceManagementSubscriptionStateVLockedOut DeviceManagementSubscriptionState = "lockedOut"
   488  )
   489  
   490  var (
   491  	// DeviceManagementSubscriptionStatePPending is a pointer to DeviceManagementSubscriptionStateVPending
   492  	DeviceManagementSubscriptionStatePPending = &_DeviceManagementSubscriptionStatePPending
   493  	// DeviceManagementSubscriptionStatePActive is a pointer to DeviceManagementSubscriptionStateVActive
   494  	DeviceManagementSubscriptionStatePActive = &_DeviceManagementSubscriptionStatePActive
   495  	// DeviceManagementSubscriptionStatePWarning is a pointer to DeviceManagementSubscriptionStateVWarning
   496  	DeviceManagementSubscriptionStatePWarning = &_DeviceManagementSubscriptionStatePWarning
   497  	// DeviceManagementSubscriptionStatePDisabled is a pointer to DeviceManagementSubscriptionStateVDisabled
   498  	DeviceManagementSubscriptionStatePDisabled = &_DeviceManagementSubscriptionStatePDisabled
   499  	// DeviceManagementSubscriptionStatePDeleted is a pointer to DeviceManagementSubscriptionStateVDeleted
   500  	DeviceManagementSubscriptionStatePDeleted = &_DeviceManagementSubscriptionStatePDeleted
   501  	// DeviceManagementSubscriptionStatePBlocked is a pointer to DeviceManagementSubscriptionStateVBlocked
   502  	DeviceManagementSubscriptionStatePBlocked = &_DeviceManagementSubscriptionStatePBlocked
   503  	// DeviceManagementSubscriptionStatePLockedOut is a pointer to DeviceManagementSubscriptionStateVLockedOut
   504  	DeviceManagementSubscriptionStatePLockedOut = &_DeviceManagementSubscriptionStatePLockedOut
   505  )
   506  
   507  var (
   508  	_DeviceManagementSubscriptionStatePPending   = DeviceManagementSubscriptionStateVPending
   509  	_DeviceManagementSubscriptionStatePActive    = DeviceManagementSubscriptionStateVActive
   510  	_DeviceManagementSubscriptionStatePWarning   = DeviceManagementSubscriptionStateVWarning
   511  	_DeviceManagementSubscriptionStatePDisabled  = DeviceManagementSubscriptionStateVDisabled
   512  	_DeviceManagementSubscriptionStatePDeleted   = DeviceManagementSubscriptionStateVDeleted
   513  	_DeviceManagementSubscriptionStatePBlocked   = DeviceManagementSubscriptionStateVBlocked
   514  	_DeviceManagementSubscriptionStatePLockedOut = DeviceManagementSubscriptionStateVLockedOut
   515  )
   516  
   517  // DeviceRegistrationState undocumented
   518  type DeviceRegistrationState string
   519  
   520  const (
   521  	// DeviceRegistrationStateVNotRegistered undocumented
   522  	DeviceRegistrationStateVNotRegistered DeviceRegistrationState = "notRegistered"
   523  	// DeviceRegistrationStateVRegistered undocumented
   524  	DeviceRegistrationStateVRegistered DeviceRegistrationState = "registered"
   525  	// DeviceRegistrationStateVRevoked undocumented
   526  	DeviceRegistrationStateVRevoked DeviceRegistrationState = "revoked"
   527  	// DeviceRegistrationStateVKeyConflict undocumented
   528  	DeviceRegistrationStateVKeyConflict DeviceRegistrationState = "keyConflict"
   529  	// DeviceRegistrationStateVApprovalPending undocumented
   530  	DeviceRegistrationStateVApprovalPending DeviceRegistrationState = "approvalPending"
   531  	// DeviceRegistrationStateVCertificateReset undocumented
   532  	DeviceRegistrationStateVCertificateReset DeviceRegistrationState = "certificateReset"
   533  	// DeviceRegistrationStateVNotRegisteredPendingEnrollment undocumented
   534  	DeviceRegistrationStateVNotRegisteredPendingEnrollment DeviceRegistrationState = "notRegisteredPendingEnrollment"
   535  	// DeviceRegistrationStateVUnknown undocumented
   536  	DeviceRegistrationStateVUnknown DeviceRegistrationState = "unknown"
   537  )
   538  
   539  var (
   540  	// DeviceRegistrationStatePNotRegistered is a pointer to DeviceRegistrationStateVNotRegistered
   541  	DeviceRegistrationStatePNotRegistered = &_DeviceRegistrationStatePNotRegistered
   542  	// DeviceRegistrationStatePRegistered is a pointer to DeviceRegistrationStateVRegistered
   543  	DeviceRegistrationStatePRegistered = &_DeviceRegistrationStatePRegistered
   544  	// DeviceRegistrationStatePRevoked is a pointer to DeviceRegistrationStateVRevoked
   545  	DeviceRegistrationStatePRevoked = &_DeviceRegistrationStatePRevoked
   546  	// DeviceRegistrationStatePKeyConflict is a pointer to DeviceRegistrationStateVKeyConflict
   547  	DeviceRegistrationStatePKeyConflict = &_DeviceRegistrationStatePKeyConflict
   548  	// DeviceRegistrationStatePApprovalPending is a pointer to DeviceRegistrationStateVApprovalPending
   549  	DeviceRegistrationStatePApprovalPending = &_DeviceRegistrationStatePApprovalPending
   550  	// DeviceRegistrationStatePCertificateReset is a pointer to DeviceRegistrationStateVCertificateReset
   551  	DeviceRegistrationStatePCertificateReset = &_DeviceRegistrationStatePCertificateReset
   552  	// DeviceRegistrationStatePNotRegisteredPendingEnrollment is a pointer to DeviceRegistrationStateVNotRegisteredPendingEnrollment
   553  	DeviceRegistrationStatePNotRegisteredPendingEnrollment = &_DeviceRegistrationStatePNotRegisteredPendingEnrollment
   554  	// DeviceRegistrationStatePUnknown is a pointer to DeviceRegistrationStateVUnknown
   555  	DeviceRegistrationStatePUnknown = &_DeviceRegistrationStatePUnknown
   556  )
   557  
   558  var (
   559  	_DeviceRegistrationStatePNotRegistered                  = DeviceRegistrationStateVNotRegistered
   560  	_DeviceRegistrationStatePRegistered                     = DeviceRegistrationStateVRegistered
   561  	_DeviceRegistrationStatePRevoked                        = DeviceRegistrationStateVRevoked
   562  	_DeviceRegistrationStatePKeyConflict                    = DeviceRegistrationStateVKeyConflict
   563  	_DeviceRegistrationStatePApprovalPending                = DeviceRegistrationStateVApprovalPending
   564  	_DeviceRegistrationStatePCertificateReset               = DeviceRegistrationStateVCertificateReset
   565  	_DeviceRegistrationStatePNotRegisteredPendingEnrollment = DeviceRegistrationStateVNotRegisteredPendingEnrollment
   566  	_DeviceRegistrationStatePUnknown                        = DeviceRegistrationStateVUnknown
   567  )
   568  
   569  // DeviceThreatProtectionLevel undocumented
   570  type DeviceThreatProtectionLevel string
   571  
   572  const (
   573  	// DeviceThreatProtectionLevelVUnavailable undocumented
   574  	DeviceThreatProtectionLevelVUnavailable DeviceThreatProtectionLevel = "unavailable"
   575  	// DeviceThreatProtectionLevelVSecured undocumented
   576  	DeviceThreatProtectionLevelVSecured DeviceThreatProtectionLevel = "secured"
   577  	// DeviceThreatProtectionLevelVLow undocumented
   578  	DeviceThreatProtectionLevelVLow DeviceThreatProtectionLevel = "low"
   579  	// DeviceThreatProtectionLevelVMedium undocumented
   580  	DeviceThreatProtectionLevelVMedium DeviceThreatProtectionLevel = "medium"
   581  	// DeviceThreatProtectionLevelVHigh undocumented
   582  	DeviceThreatProtectionLevelVHigh DeviceThreatProtectionLevel = "high"
   583  	// DeviceThreatProtectionLevelVNotSet undocumented
   584  	DeviceThreatProtectionLevelVNotSet DeviceThreatProtectionLevel = "notSet"
   585  )
   586  
   587  var (
   588  	// DeviceThreatProtectionLevelPUnavailable is a pointer to DeviceThreatProtectionLevelVUnavailable
   589  	DeviceThreatProtectionLevelPUnavailable = &_DeviceThreatProtectionLevelPUnavailable
   590  	// DeviceThreatProtectionLevelPSecured is a pointer to DeviceThreatProtectionLevelVSecured
   591  	DeviceThreatProtectionLevelPSecured = &_DeviceThreatProtectionLevelPSecured
   592  	// DeviceThreatProtectionLevelPLow is a pointer to DeviceThreatProtectionLevelVLow
   593  	DeviceThreatProtectionLevelPLow = &_DeviceThreatProtectionLevelPLow
   594  	// DeviceThreatProtectionLevelPMedium is a pointer to DeviceThreatProtectionLevelVMedium
   595  	DeviceThreatProtectionLevelPMedium = &_DeviceThreatProtectionLevelPMedium
   596  	// DeviceThreatProtectionLevelPHigh is a pointer to DeviceThreatProtectionLevelVHigh
   597  	DeviceThreatProtectionLevelPHigh = &_DeviceThreatProtectionLevelPHigh
   598  	// DeviceThreatProtectionLevelPNotSet is a pointer to DeviceThreatProtectionLevelVNotSet
   599  	DeviceThreatProtectionLevelPNotSet = &_DeviceThreatProtectionLevelPNotSet
   600  )
   601  
   602  var (
   603  	_DeviceThreatProtectionLevelPUnavailable = DeviceThreatProtectionLevelVUnavailable
   604  	_DeviceThreatProtectionLevelPSecured     = DeviceThreatProtectionLevelVSecured
   605  	_DeviceThreatProtectionLevelPLow         = DeviceThreatProtectionLevelVLow
   606  	_DeviceThreatProtectionLevelPMedium      = DeviceThreatProtectionLevelVMedium
   607  	_DeviceThreatProtectionLevelPHigh        = DeviceThreatProtectionLevelVHigh
   608  	_DeviceThreatProtectionLevelPNotSet      = DeviceThreatProtectionLevelVNotSet
   609  )