blob: 8f74dcdf7a2ac8dd4ea4370a7db794d423ed8458 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DeviceAndAppManagementAssignmentSource undocumented
type DeviceAndAppManagementAssignmentSource string
const (
// DeviceAndAppManagementAssignmentSourceVDirect undocumented
DeviceAndAppManagementAssignmentSourceVDirect DeviceAndAppManagementAssignmentSource = "direct"
// DeviceAndAppManagementAssignmentSourceVPolicySets undocumented
DeviceAndAppManagementAssignmentSourceVPolicySets DeviceAndAppManagementAssignmentSource = "policySets"
)
var (
// DeviceAndAppManagementAssignmentSourcePDirect is a pointer to DeviceAndAppManagementAssignmentSourceVDirect
DeviceAndAppManagementAssignmentSourcePDirect = &_DeviceAndAppManagementAssignmentSourcePDirect
// DeviceAndAppManagementAssignmentSourcePPolicySets is a pointer to DeviceAndAppManagementAssignmentSourceVPolicySets
DeviceAndAppManagementAssignmentSourcePPolicySets = &_DeviceAndAppManagementAssignmentSourcePPolicySets
)
var (
_DeviceAndAppManagementAssignmentSourcePDirect = DeviceAndAppManagementAssignmentSourceVDirect
_DeviceAndAppManagementAssignmentSourcePPolicySets = DeviceAndAppManagementAssignmentSourceVPolicySets
)
// DeviceAppManagementTaskCategory undocumented
type DeviceAppManagementTaskCategory string
const (
// DeviceAppManagementTaskCategoryVUnknown undocumented
DeviceAppManagementTaskCategoryVUnknown DeviceAppManagementTaskCategory = "unknown"
// DeviceAppManagementTaskCategoryVAdvancedThreatProtection undocumented
DeviceAppManagementTaskCategoryVAdvancedThreatProtection DeviceAppManagementTaskCategory = "advancedThreatProtection"
)
var (
// DeviceAppManagementTaskCategoryPUnknown is a pointer to DeviceAppManagementTaskCategoryVUnknown
DeviceAppManagementTaskCategoryPUnknown = &_DeviceAppManagementTaskCategoryPUnknown
// DeviceAppManagementTaskCategoryPAdvancedThreatProtection is a pointer to DeviceAppManagementTaskCategoryVAdvancedThreatProtection
DeviceAppManagementTaskCategoryPAdvancedThreatProtection = &_DeviceAppManagementTaskCategoryPAdvancedThreatProtection
)
var (
_DeviceAppManagementTaskCategoryPUnknown = DeviceAppManagementTaskCategoryVUnknown
_DeviceAppManagementTaskCategoryPAdvancedThreatProtection = DeviceAppManagementTaskCategoryVAdvancedThreatProtection
)
// DeviceAppManagementTaskPriority undocumented
type DeviceAppManagementTaskPriority string
const (
// DeviceAppManagementTaskPriorityVNone undocumented
DeviceAppManagementTaskPriorityVNone DeviceAppManagementTaskPriority = "none"
// DeviceAppManagementTaskPriorityVHigh undocumented
DeviceAppManagementTaskPriorityVHigh DeviceAppManagementTaskPriority = "high"
// DeviceAppManagementTaskPriorityVLow undocumented
DeviceAppManagementTaskPriorityVLow DeviceAppManagementTaskPriority = "low"
)
var (
// DeviceAppManagementTaskPriorityPNone is a pointer to DeviceAppManagementTaskPriorityVNone
DeviceAppManagementTaskPriorityPNone = &_DeviceAppManagementTaskPriorityPNone
// DeviceAppManagementTaskPriorityPHigh is a pointer to DeviceAppManagementTaskPriorityVHigh
DeviceAppManagementTaskPriorityPHigh = &_DeviceAppManagementTaskPriorityPHigh
// DeviceAppManagementTaskPriorityPLow is a pointer to DeviceAppManagementTaskPriorityVLow
DeviceAppManagementTaskPriorityPLow = &_DeviceAppManagementTaskPriorityPLow
)
var (
_DeviceAppManagementTaskPriorityPNone = DeviceAppManagementTaskPriorityVNone
_DeviceAppManagementTaskPriorityPHigh = DeviceAppManagementTaskPriorityVHigh
_DeviceAppManagementTaskPriorityPLow = DeviceAppManagementTaskPriorityVLow
)
// DeviceAppManagementTaskStatus undocumented
type DeviceAppManagementTaskStatus string
const (
// DeviceAppManagementTaskStatusVUnknown undocumented
DeviceAppManagementTaskStatusVUnknown DeviceAppManagementTaskStatus = "unknown"
// DeviceAppManagementTaskStatusVPending undocumented
DeviceAppManagementTaskStatusVPending DeviceAppManagementTaskStatus = "pending"
// DeviceAppManagementTaskStatusVActive undocumented
DeviceAppManagementTaskStatusVActive DeviceAppManagementTaskStatus = "active"
// DeviceAppManagementTaskStatusVCompleted undocumented
DeviceAppManagementTaskStatusVCompleted DeviceAppManagementTaskStatus = "completed"
// DeviceAppManagementTaskStatusVRejected undocumented
DeviceAppManagementTaskStatusVRejected DeviceAppManagementTaskStatus = "rejected"
)
var (
// DeviceAppManagementTaskStatusPUnknown is a pointer to DeviceAppManagementTaskStatusVUnknown
DeviceAppManagementTaskStatusPUnknown = &_DeviceAppManagementTaskStatusPUnknown
// DeviceAppManagementTaskStatusPPending is a pointer to DeviceAppManagementTaskStatusVPending
DeviceAppManagementTaskStatusPPending = &_DeviceAppManagementTaskStatusPPending
// DeviceAppManagementTaskStatusPActive is a pointer to DeviceAppManagementTaskStatusVActive
DeviceAppManagementTaskStatusPActive = &_DeviceAppManagementTaskStatusPActive
// DeviceAppManagementTaskStatusPCompleted is a pointer to DeviceAppManagementTaskStatusVCompleted
DeviceAppManagementTaskStatusPCompleted = &_DeviceAppManagementTaskStatusPCompleted
// DeviceAppManagementTaskStatusPRejected is a pointer to DeviceAppManagementTaskStatusVRejected
DeviceAppManagementTaskStatusPRejected = &_DeviceAppManagementTaskStatusPRejected
)
var (
_DeviceAppManagementTaskStatusPUnknown = DeviceAppManagementTaskStatusVUnknown
_DeviceAppManagementTaskStatusPPending = DeviceAppManagementTaskStatusVPending
_DeviceAppManagementTaskStatusPActive = DeviceAppManagementTaskStatusVActive
_DeviceAppManagementTaskStatusPCompleted = DeviceAppManagementTaskStatusVCompleted
_DeviceAppManagementTaskStatusPRejected = DeviceAppManagementTaskStatusVRejected
)
// DeviceComplianceActionType undocumented
type DeviceComplianceActionType string
const (
// DeviceComplianceActionTypeVNoAction undocumented
DeviceComplianceActionTypeVNoAction DeviceComplianceActionType = "noAction"
// DeviceComplianceActionTypeVNotification undocumented
DeviceComplianceActionTypeVNotification DeviceComplianceActionType = "notification"
// DeviceComplianceActionTypeVBlock undocumented
DeviceComplianceActionTypeVBlock DeviceComplianceActionType = "block"
// DeviceComplianceActionTypeVRetire undocumented
DeviceComplianceActionTypeVRetire DeviceComplianceActionType = "retire"
// DeviceComplianceActionTypeVWipe undocumented
DeviceComplianceActionTypeVWipe DeviceComplianceActionType = "wipe"
// DeviceComplianceActionTypeVRemoveResourceAccessProfiles undocumented
DeviceComplianceActionTypeVRemoveResourceAccessProfiles DeviceComplianceActionType = "removeResourceAccessProfiles"
// DeviceComplianceActionTypeVPushNotification undocumented
DeviceComplianceActionTypeVPushNotification DeviceComplianceActionType = "pushNotification"
// DeviceComplianceActionTypeVRemoteLock undocumented
DeviceComplianceActionTypeVRemoteLock DeviceComplianceActionType = "remoteLock"
)
var (
// DeviceComplianceActionTypePNoAction is a pointer to DeviceComplianceActionTypeVNoAction
DeviceComplianceActionTypePNoAction = &_DeviceComplianceActionTypePNoAction
// DeviceComplianceActionTypePNotification is a pointer to DeviceComplianceActionTypeVNotification
DeviceComplianceActionTypePNotification = &_DeviceComplianceActionTypePNotification
// DeviceComplianceActionTypePBlock is a pointer to DeviceComplianceActionTypeVBlock
DeviceComplianceActionTypePBlock = &_DeviceComplianceActionTypePBlock
// DeviceComplianceActionTypePRetire is a pointer to DeviceComplianceActionTypeVRetire
DeviceComplianceActionTypePRetire = &_DeviceComplianceActionTypePRetire
// DeviceComplianceActionTypePWipe is a pointer to DeviceComplianceActionTypeVWipe
DeviceComplianceActionTypePWipe = &_DeviceComplianceActionTypePWipe
// DeviceComplianceActionTypePRemoveResourceAccessProfiles is a pointer to DeviceComplianceActionTypeVRemoveResourceAccessProfiles
DeviceComplianceActionTypePRemoveResourceAccessProfiles = &_DeviceComplianceActionTypePRemoveResourceAccessProfiles
// DeviceComplianceActionTypePPushNotification is a pointer to DeviceComplianceActionTypeVPushNotification
DeviceComplianceActionTypePPushNotification = &_DeviceComplianceActionTypePPushNotification
// DeviceComplianceActionTypePRemoteLock is a pointer to DeviceComplianceActionTypeVRemoteLock
DeviceComplianceActionTypePRemoteLock = &_DeviceComplianceActionTypePRemoteLock
)
var (
_DeviceComplianceActionTypePNoAction = DeviceComplianceActionTypeVNoAction
_DeviceComplianceActionTypePNotification = DeviceComplianceActionTypeVNotification
_DeviceComplianceActionTypePBlock = DeviceComplianceActionTypeVBlock
_DeviceComplianceActionTypePRetire = DeviceComplianceActionTypeVRetire
_DeviceComplianceActionTypePWipe = DeviceComplianceActionTypeVWipe
_DeviceComplianceActionTypePRemoveResourceAccessProfiles = DeviceComplianceActionTypeVRemoveResourceAccessProfiles
_DeviceComplianceActionTypePPushNotification = DeviceComplianceActionTypeVPushNotification
_DeviceComplianceActionTypePRemoteLock = DeviceComplianceActionTypeVRemoteLock
)
// DeviceEnrollmentFailureReason undocumented
type DeviceEnrollmentFailureReason string
const (
// DeviceEnrollmentFailureReasonVUnknown undocumented
DeviceEnrollmentFailureReasonVUnknown DeviceEnrollmentFailureReason = "unknown"
// DeviceEnrollmentFailureReasonVAuthentication undocumented
DeviceEnrollmentFailureReasonVAuthentication DeviceEnrollmentFailureReason = "authentication"
// DeviceEnrollmentFailureReasonVAuthorization undocumented
DeviceEnrollmentFailureReasonVAuthorization DeviceEnrollmentFailureReason = "authorization"
// DeviceEnrollmentFailureReasonVAccountValidation undocumented
DeviceEnrollmentFailureReasonVAccountValidation DeviceEnrollmentFailureReason = "accountValidation"
// DeviceEnrollmentFailureReasonVUserValidation undocumented
DeviceEnrollmentFailureReasonVUserValidation DeviceEnrollmentFailureReason = "userValidation"
// DeviceEnrollmentFailureReasonVDeviceNotSupported undocumented
DeviceEnrollmentFailureReasonVDeviceNotSupported DeviceEnrollmentFailureReason = "deviceNotSupported"
// DeviceEnrollmentFailureReasonVInMaintenance undocumented
DeviceEnrollmentFailureReasonVInMaintenance DeviceEnrollmentFailureReason = "inMaintenance"
// DeviceEnrollmentFailureReasonVBadRequest undocumented
DeviceEnrollmentFailureReasonVBadRequest DeviceEnrollmentFailureReason = "badRequest"
// DeviceEnrollmentFailureReasonVFeatureNotSupported undocumented
DeviceEnrollmentFailureReasonVFeatureNotSupported DeviceEnrollmentFailureReason = "featureNotSupported"
// DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced undocumented
DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced DeviceEnrollmentFailureReason = "enrollmentRestrictionsEnforced"
// DeviceEnrollmentFailureReasonVClientDisconnected undocumented
DeviceEnrollmentFailureReasonVClientDisconnected DeviceEnrollmentFailureReason = "clientDisconnected"
// DeviceEnrollmentFailureReasonVUserAbandonment undocumented
DeviceEnrollmentFailureReasonVUserAbandonment DeviceEnrollmentFailureReason = "userAbandonment"
)
var (
// DeviceEnrollmentFailureReasonPUnknown is a pointer to DeviceEnrollmentFailureReasonVUnknown
DeviceEnrollmentFailureReasonPUnknown = &_DeviceEnrollmentFailureReasonPUnknown
// DeviceEnrollmentFailureReasonPAuthentication is a pointer to DeviceEnrollmentFailureReasonVAuthentication
DeviceEnrollmentFailureReasonPAuthentication = &_DeviceEnrollmentFailureReasonPAuthentication
// DeviceEnrollmentFailureReasonPAuthorization is a pointer to DeviceEnrollmentFailureReasonVAuthorization
DeviceEnrollmentFailureReasonPAuthorization = &_DeviceEnrollmentFailureReasonPAuthorization
// DeviceEnrollmentFailureReasonPAccountValidation is a pointer to DeviceEnrollmentFailureReasonVAccountValidation
DeviceEnrollmentFailureReasonPAccountValidation = &_DeviceEnrollmentFailureReasonPAccountValidation
// DeviceEnrollmentFailureReasonPUserValidation is a pointer to DeviceEnrollmentFailureReasonVUserValidation
DeviceEnrollmentFailureReasonPUserValidation = &_DeviceEnrollmentFailureReasonPUserValidation
// DeviceEnrollmentFailureReasonPDeviceNotSupported is a pointer to DeviceEnrollmentFailureReasonVDeviceNotSupported
DeviceEnrollmentFailureReasonPDeviceNotSupported = &_DeviceEnrollmentFailureReasonPDeviceNotSupported
// DeviceEnrollmentFailureReasonPInMaintenance is a pointer to DeviceEnrollmentFailureReasonVInMaintenance
DeviceEnrollmentFailureReasonPInMaintenance = &_DeviceEnrollmentFailureReasonPInMaintenance
// DeviceEnrollmentFailureReasonPBadRequest is a pointer to DeviceEnrollmentFailureReasonVBadRequest
DeviceEnrollmentFailureReasonPBadRequest = &_DeviceEnrollmentFailureReasonPBadRequest
// DeviceEnrollmentFailureReasonPFeatureNotSupported is a pointer to DeviceEnrollmentFailureReasonVFeatureNotSupported
DeviceEnrollmentFailureReasonPFeatureNotSupported = &_DeviceEnrollmentFailureReasonPFeatureNotSupported
// DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced is a pointer to DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced
DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced = &_DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced
// DeviceEnrollmentFailureReasonPClientDisconnected is a pointer to DeviceEnrollmentFailureReasonVClientDisconnected
DeviceEnrollmentFailureReasonPClientDisconnected = &_DeviceEnrollmentFailureReasonPClientDisconnected
// DeviceEnrollmentFailureReasonPUserAbandonment is a pointer to DeviceEnrollmentFailureReasonVUserAbandonment
DeviceEnrollmentFailureReasonPUserAbandonment = &_DeviceEnrollmentFailureReasonPUserAbandonment
)
var (
_DeviceEnrollmentFailureReasonPUnknown = DeviceEnrollmentFailureReasonVUnknown
_DeviceEnrollmentFailureReasonPAuthentication = DeviceEnrollmentFailureReasonVAuthentication
_DeviceEnrollmentFailureReasonPAuthorization = DeviceEnrollmentFailureReasonVAuthorization
_DeviceEnrollmentFailureReasonPAccountValidation = DeviceEnrollmentFailureReasonVAccountValidation
_DeviceEnrollmentFailureReasonPUserValidation = DeviceEnrollmentFailureReasonVUserValidation
_DeviceEnrollmentFailureReasonPDeviceNotSupported = DeviceEnrollmentFailureReasonVDeviceNotSupported
_DeviceEnrollmentFailureReasonPInMaintenance = DeviceEnrollmentFailureReasonVInMaintenance
_DeviceEnrollmentFailureReasonPBadRequest = DeviceEnrollmentFailureReasonVBadRequest
_DeviceEnrollmentFailureReasonPFeatureNotSupported = DeviceEnrollmentFailureReasonVFeatureNotSupported
_DeviceEnrollmentFailureReasonPEnrollmentRestrictionsEnforced = DeviceEnrollmentFailureReasonVEnrollmentRestrictionsEnforced
_DeviceEnrollmentFailureReasonPClientDisconnected = DeviceEnrollmentFailureReasonVClientDisconnected
_DeviceEnrollmentFailureReasonPUserAbandonment = DeviceEnrollmentFailureReasonVUserAbandonment
)
// DeviceEnrollmentType undocumented
type DeviceEnrollmentType string
const (
// DeviceEnrollmentTypeVUnknown undocumented
DeviceEnrollmentTypeVUnknown DeviceEnrollmentType = "unknown"
// DeviceEnrollmentTypeVUserEnrollment undocumented
DeviceEnrollmentTypeVUserEnrollment DeviceEnrollmentType = "userEnrollment"
// DeviceEnrollmentTypeVDeviceEnrollmentManager undocumented
DeviceEnrollmentTypeVDeviceEnrollmentManager DeviceEnrollmentType = "deviceEnrollmentManager"
// DeviceEnrollmentTypeVAppleBulkWithUser undocumented
DeviceEnrollmentTypeVAppleBulkWithUser DeviceEnrollmentType = "appleBulkWithUser"
// DeviceEnrollmentTypeVAppleBulkWithoutUser undocumented
DeviceEnrollmentTypeVAppleBulkWithoutUser DeviceEnrollmentType = "appleBulkWithoutUser"
// DeviceEnrollmentTypeVWindowsAzureADJoin undocumented
DeviceEnrollmentTypeVWindowsAzureADJoin DeviceEnrollmentType = "windowsAzureADJoin"
// DeviceEnrollmentTypeVWindowsBulkUserless undocumented
DeviceEnrollmentTypeVWindowsBulkUserless DeviceEnrollmentType = "windowsBulkUserless"
// DeviceEnrollmentTypeVWindowsAutoEnrollment undocumented
DeviceEnrollmentTypeVWindowsAutoEnrollment DeviceEnrollmentType = "windowsAutoEnrollment"
// DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin undocumented
DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin DeviceEnrollmentType = "windowsBulkAzureDomainJoin"
// DeviceEnrollmentTypeVWindowsCoManagement undocumented
DeviceEnrollmentTypeVWindowsCoManagement DeviceEnrollmentType = "windowsCoManagement"
// DeviceEnrollmentTypeVAppleUserEnrollment undocumented
DeviceEnrollmentTypeVAppleUserEnrollment DeviceEnrollmentType = "appleUserEnrollment"
// DeviceEnrollmentTypeVAppleUserEnrollmentWithServiceAccount undocumented
DeviceEnrollmentTypeVAppleUserEnrollmentWithServiceAccount DeviceEnrollmentType = "appleUserEnrollmentWithServiceAccount"
)
var (
// DeviceEnrollmentTypePUnknown is a pointer to DeviceEnrollmentTypeVUnknown
DeviceEnrollmentTypePUnknown = &_DeviceEnrollmentTypePUnknown
// DeviceEnrollmentTypePUserEnrollment is a pointer to DeviceEnrollmentTypeVUserEnrollment
DeviceEnrollmentTypePUserEnrollment = &_DeviceEnrollmentTypePUserEnrollment
// DeviceEnrollmentTypePDeviceEnrollmentManager is a pointer to DeviceEnrollmentTypeVDeviceEnrollmentManager
DeviceEnrollmentTypePDeviceEnrollmentManager = &_DeviceEnrollmentTypePDeviceEnrollmentManager
// DeviceEnrollmentTypePAppleBulkWithUser is a pointer to DeviceEnrollmentTypeVAppleBulkWithUser
DeviceEnrollmentTypePAppleBulkWithUser = &_DeviceEnrollmentTypePAppleBulkWithUser
// DeviceEnrollmentTypePAppleBulkWithoutUser is a pointer to DeviceEnrollmentTypeVAppleBulkWithoutUser
DeviceEnrollmentTypePAppleBulkWithoutUser = &_DeviceEnrollmentTypePAppleBulkWithoutUser
// DeviceEnrollmentTypePWindowsAzureADJoin is a pointer to DeviceEnrollmentTypeVWindowsAzureADJoin
DeviceEnrollmentTypePWindowsAzureADJoin = &_DeviceEnrollmentTypePWindowsAzureADJoin
// DeviceEnrollmentTypePWindowsBulkUserless is a pointer to DeviceEnrollmentTypeVWindowsBulkUserless
DeviceEnrollmentTypePWindowsBulkUserless = &_DeviceEnrollmentTypePWindowsBulkUserless
// DeviceEnrollmentTypePWindowsAutoEnrollment is a pointer to DeviceEnrollmentTypeVWindowsAutoEnrollment
DeviceEnrollmentTypePWindowsAutoEnrollment = &_DeviceEnrollmentTypePWindowsAutoEnrollment
// DeviceEnrollmentTypePWindowsBulkAzureDomainJoin is a pointer to DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin
DeviceEnrollmentTypePWindowsBulkAzureDomainJoin = &_DeviceEnrollmentTypePWindowsBulkAzureDomainJoin
// DeviceEnrollmentTypePWindowsCoManagement is a pointer to DeviceEnrollmentTypeVWindowsCoManagement
DeviceEnrollmentTypePWindowsCoManagement = &_DeviceEnrollmentTypePWindowsCoManagement
// DeviceEnrollmentTypePAppleUserEnrollment is a pointer to DeviceEnrollmentTypeVAppleUserEnrollment
DeviceEnrollmentTypePAppleUserEnrollment = &_DeviceEnrollmentTypePAppleUserEnrollment
// DeviceEnrollmentTypePAppleUserEnrollmentWithServiceAccount is a pointer to DeviceEnrollmentTypeVAppleUserEnrollmentWithServiceAccount
DeviceEnrollmentTypePAppleUserEnrollmentWithServiceAccount = &_DeviceEnrollmentTypePAppleUserEnrollmentWithServiceAccount
)
var (
_DeviceEnrollmentTypePUnknown = DeviceEnrollmentTypeVUnknown
_DeviceEnrollmentTypePUserEnrollment = DeviceEnrollmentTypeVUserEnrollment
_DeviceEnrollmentTypePDeviceEnrollmentManager = DeviceEnrollmentTypeVDeviceEnrollmentManager
_DeviceEnrollmentTypePAppleBulkWithUser = DeviceEnrollmentTypeVAppleBulkWithUser
_DeviceEnrollmentTypePAppleBulkWithoutUser = DeviceEnrollmentTypeVAppleBulkWithoutUser
_DeviceEnrollmentTypePWindowsAzureADJoin = DeviceEnrollmentTypeVWindowsAzureADJoin
_DeviceEnrollmentTypePWindowsBulkUserless = DeviceEnrollmentTypeVWindowsBulkUserless
_DeviceEnrollmentTypePWindowsAutoEnrollment = DeviceEnrollmentTypeVWindowsAutoEnrollment
_DeviceEnrollmentTypePWindowsBulkAzureDomainJoin = DeviceEnrollmentTypeVWindowsBulkAzureDomainJoin
_DeviceEnrollmentTypePWindowsCoManagement = DeviceEnrollmentTypeVWindowsCoManagement
_DeviceEnrollmentTypePAppleUserEnrollment = DeviceEnrollmentTypeVAppleUserEnrollment
_DeviceEnrollmentTypePAppleUserEnrollmentWithServiceAccount = DeviceEnrollmentTypeVAppleUserEnrollmentWithServiceAccount
)
// DeviceGuardLocalSystemAuthorityCredentialGuardState undocumented
type DeviceGuardLocalSystemAuthorityCredentialGuardState string
const (
// DeviceGuardLocalSystemAuthorityCredentialGuardStateVRunning undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardStateVRunning DeviceGuardLocalSystemAuthorityCredentialGuardState = "running"
// DeviceGuardLocalSystemAuthorityCredentialGuardStateVRebootRequired undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardStateVRebootRequired DeviceGuardLocalSystemAuthorityCredentialGuardState = "rebootRequired"
// DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotLicensed undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotLicensed DeviceGuardLocalSystemAuthorityCredentialGuardState = "notLicensed"
// DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotConfigured undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotConfigured DeviceGuardLocalSystemAuthorityCredentialGuardState = "notConfigured"
// DeviceGuardLocalSystemAuthorityCredentialGuardStateVVirtualizationBasedSecurityNotRunning undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardStateVVirtualizationBasedSecurityNotRunning DeviceGuardLocalSystemAuthorityCredentialGuardState = "virtualizationBasedSecurityNotRunning"
)
var (
// DeviceGuardLocalSystemAuthorityCredentialGuardStatePRunning is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardStateVRunning
DeviceGuardLocalSystemAuthorityCredentialGuardStatePRunning = &_DeviceGuardLocalSystemAuthorityCredentialGuardStatePRunning
// DeviceGuardLocalSystemAuthorityCredentialGuardStatePRebootRequired is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardStateVRebootRequired
DeviceGuardLocalSystemAuthorityCredentialGuardStatePRebootRequired = &_DeviceGuardLocalSystemAuthorityCredentialGuardStatePRebootRequired
// DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotLicensed is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotLicensed
DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotLicensed = &_DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotLicensed
// DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotConfigured is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotConfigured
DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotConfigured = &_DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotConfigured
// DeviceGuardLocalSystemAuthorityCredentialGuardStatePVirtualizationBasedSecurityNotRunning is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardStateVVirtualizationBasedSecurityNotRunning
DeviceGuardLocalSystemAuthorityCredentialGuardStatePVirtualizationBasedSecurityNotRunning = &_DeviceGuardLocalSystemAuthorityCredentialGuardStatePVirtualizationBasedSecurityNotRunning
)
var (
_DeviceGuardLocalSystemAuthorityCredentialGuardStatePRunning = DeviceGuardLocalSystemAuthorityCredentialGuardStateVRunning
_DeviceGuardLocalSystemAuthorityCredentialGuardStatePRebootRequired = DeviceGuardLocalSystemAuthorityCredentialGuardStateVRebootRequired
_DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotLicensed = DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotLicensed
_DeviceGuardLocalSystemAuthorityCredentialGuardStatePNotConfigured = DeviceGuardLocalSystemAuthorityCredentialGuardStateVNotConfigured
_DeviceGuardLocalSystemAuthorityCredentialGuardStatePVirtualizationBasedSecurityNotRunning = DeviceGuardLocalSystemAuthorityCredentialGuardStateVVirtualizationBasedSecurityNotRunning
)
// DeviceGuardLocalSystemAuthorityCredentialGuardType undocumented
type DeviceGuardLocalSystemAuthorityCredentialGuardType string
const (
// DeviceGuardLocalSystemAuthorityCredentialGuardTypeVNotConfigured undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardTypeVNotConfigured DeviceGuardLocalSystemAuthorityCredentialGuardType = "notConfigured"
// DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithUEFILock undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithUEFILock DeviceGuardLocalSystemAuthorityCredentialGuardType = "enableWithUEFILock"
// DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithoutUEFILock undocumented
DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithoutUEFILock DeviceGuardLocalSystemAuthorityCredentialGuardType = "enableWithoutUEFILock"
)
var (
// DeviceGuardLocalSystemAuthorityCredentialGuardTypePNotConfigured is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardTypeVNotConfigured
DeviceGuardLocalSystemAuthorityCredentialGuardTypePNotConfigured = &_DeviceGuardLocalSystemAuthorityCredentialGuardTypePNotConfigured
// DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithUEFILock is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithUEFILock
DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithUEFILock = &_DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithUEFILock
// DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithoutUEFILock is a pointer to DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithoutUEFILock
DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithoutUEFILock = &_DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithoutUEFILock
)
var (
_DeviceGuardLocalSystemAuthorityCredentialGuardTypePNotConfigured = DeviceGuardLocalSystemAuthorityCredentialGuardTypeVNotConfigured
_DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithUEFILock = DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithUEFILock
_DeviceGuardLocalSystemAuthorityCredentialGuardTypePEnableWithoutUEFILock = DeviceGuardLocalSystemAuthorityCredentialGuardTypeVEnableWithoutUEFILock
)
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementState undocumented
type DeviceGuardVirtualizationBasedSecurityHardwareRequirementState string
const (
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVMeetHardwareRequirements undocumented
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVMeetHardwareRequirements DeviceGuardVirtualizationBasedSecurityHardwareRequirementState = "meetHardwareRequirements"
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVSecureBootRequired undocumented
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVSecureBootRequired DeviceGuardVirtualizationBasedSecurityHardwareRequirementState = "secureBootRequired"
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVDMAProtectionRequired undocumented
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVDMAProtectionRequired DeviceGuardVirtualizationBasedSecurityHardwareRequirementState = "dmaProtectionRequired"
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotSupportedForGuestVM undocumented
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotSupportedForGuestVM DeviceGuardVirtualizationBasedSecurityHardwareRequirementState = "hyperVNotSupportedForGuestVM"
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotAvailable undocumented
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotAvailable DeviceGuardVirtualizationBasedSecurityHardwareRequirementState = "hyperVNotAvailable"
)
var (
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePMeetHardwareRequirements is a pointer to DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVMeetHardwareRequirements
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePMeetHardwareRequirements = &_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePMeetHardwareRequirements
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePSecureBootRequired is a pointer to DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVSecureBootRequired
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePSecureBootRequired = &_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePSecureBootRequired
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePDMAProtectionRequired is a pointer to DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVDMAProtectionRequired
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePDMAProtectionRequired = &_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePDMAProtectionRequired
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotSupportedForGuestVM is a pointer to DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotSupportedForGuestVM
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotSupportedForGuestVM = &_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotSupportedForGuestVM
// DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotAvailable is a pointer to DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotAvailable
DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotAvailable = &_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotAvailable
)
var (
_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePMeetHardwareRequirements = DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVMeetHardwareRequirements
_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePSecureBootRequired = DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVSecureBootRequired
_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePDMAProtectionRequired = DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVDMAProtectionRequired
_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotSupportedForGuestVM = DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotSupportedForGuestVM
_DeviceGuardVirtualizationBasedSecurityHardwareRequirementStatePHyperVNotAvailable = DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateVHyperVNotAvailable
)
// DeviceGuardVirtualizationBasedSecurityState undocumented
type DeviceGuardVirtualizationBasedSecurityState string
const (
// DeviceGuardVirtualizationBasedSecurityStateVRunning undocumented
DeviceGuardVirtualizationBasedSecurityStateVRunning DeviceGuardVirtualizationBasedSecurityState = "running"
// DeviceGuardVirtualizationBasedSecurityStateVRebootRequired undocumented
DeviceGuardVirtualizationBasedSecurityStateVRebootRequired DeviceGuardVirtualizationBasedSecurityState = "rebootRequired"
// DeviceGuardVirtualizationBasedSecurityStateVRequire64BitArchitecture undocumented
DeviceGuardVirtualizationBasedSecurityStateVRequire64BitArchitecture DeviceGuardVirtualizationBasedSecurityState = "require64BitArchitecture"
// DeviceGuardVirtualizationBasedSecurityStateVNotLicensed undocumented
DeviceGuardVirtualizationBasedSecurityStateVNotLicensed DeviceGuardVirtualizationBasedSecurityState = "notLicensed"
// DeviceGuardVirtualizationBasedSecurityStateVNotConfigured undocumented
DeviceGuardVirtualizationBasedSecurityStateVNotConfigured DeviceGuardVirtualizationBasedSecurityState = "notConfigured"
// DeviceGuardVirtualizationBasedSecurityStateVDoesNotMeetHardwareRequirements undocumented
DeviceGuardVirtualizationBasedSecurityStateVDoesNotMeetHardwareRequirements DeviceGuardVirtualizationBasedSecurityState = "doesNotMeetHardwareRequirements"
// DeviceGuardVirtualizationBasedSecurityStateVOther undocumented
DeviceGuardVirtualizationBasedSecurityStateVOther DeviceGuardVirtualizationBasedSecurityState = "other"
)
var (
// DeviceGuardVirtualizationBasedSecurityStatePRunning is a pointer to DeviceGuardVirtualizationBasedSecurityStateVRunning
DeviceGuardVirtualizationBasedSecurityStatePRunning = &_DeviceGuardVirtualizationBasedSecurityStatePRunning
// DeviceGuardVirtualizationBasedSecurityStatePRebootRequired is a pointer to DeviceGuardVirtualizationBasedSecurityStateVRebootRequired
DeviceGuardVirtualizationBasedSecurityStatePRebootRequired = &_DeviceGuardVirtualizationBasedSecurityStatePRebootRequired
// DeviceGuardVirtualizationBasedSecurityStatePRequire64BitArchitecture is a pointer to DeviceGuardVirtualizationBasedSecurityStateVRequire64BitArchitecture
DeviceGuardVirtualizationBasedSecurityStatePRequire64BitArchitecture = &_DeviceGuardVirtualizationBasedSecurityStatePRequire64BitArchitecture
// DeviceGuardVirtualizationBasedSecurityStatePNotLicensed is a pointer to DeviceGuardVirtualizationBasedSecurityStateVNotLicensed
DeviceGuardVirtualizationBasedSecurityStatePNotLicensed = &_DeviceGuardVirtualizationBasedSecurityStatePNotLicensed
// DeviceGuardVirtualizationBasedSecurityStatePNotConfigured is a pointer to DeviceGuardVirtualizationBasedSecurityStateVNotConfigured
DeviceGuardVirtualizationBasedSecurityStatePNotConfigured = &_DeviceGuardVirtualizationBasedSecurityStatePNotConfigured
// DeviceGuardVirtualizationBasedSecurityStatePDoesNotMeetHardwareRequirements is a pointer to DeviceGuardVirtualizationBasedSecurityStateVDoesNotMeetHardwareRequirements
DeviceGuardVirtualizationBasedSecurityStatePDoesNotMeetHardwareRequirements = &_DeviceGuardVirtualizationBasedSecurityStatePDoesNotMeetHardwareRequirements
// DeviceGuardVirtualizationBasedSecurityStatePOther is a pointer to DeviceGuardVirtualizationBasedSecurityStateVOther
DeviceGuardVirtualizationBasedSecurityStatePOther = &_DeviceGuardVirtualizationBasedSecurityStatePOther
)
var (
_DeviceGuardVirtualizationBasedSecurityStatePRunning = DeviceGuardVirtualizationBasedSecurityStateVRunning
_DeviceGuardVirtualizationBasedSecurityStatePRebootRequired = DeviceGuardVirtualizationBasedSecurityStateVRebootRequired
_DeviceGuardVirtualizationBasedSecurityStatePRequire64BitArchitecture = DeviceGuardVirtualizationBasedSecurityStateVRequire64BitArchitecture
_DeviceGuardVirtualizationBasedSecurityStatePNotLicensed = DeviceGuardVirtualizationBasedSecurityStateVNotLicensed
_DeviceGuardVirtualizationBasedSecurityStatePNotConfigured = DeviceGuardVirtualizationBasedSecurityStateVNotConfigured
_DeviceGuardVirtualizationBasedSecurityStatePDoesNotMeetHardwareRequirements = DeviceGuardVirtualizationBasedSecurityStateVDoesNotMeetHardwareRequirements
_DeviceGuardVirtualizationBasedSecurityStatePOther = DeviceGuardVirtualizationBasedSecurityStateVOther
)
// DeviceManagementApplicabilityRuleType undocumented
type DeviceManagementApplicabilityRuleType string
const (
// DeviceManagementApplicabilityRuleTypeVInclude undocumented
DeviceManagementApplicabilityRuleTypeVInclude DeviceManagementApplicabilityRuleType = "include"
// DeviceManagementApplicabilityRuleTypeVExclude undocumented
DeviceManagementApplicabilityRuleTypeVExclude DeviceManagementApplicabilityRuleType = "exclude"
)
var (
// DeviceManagementApplicabilityRuleTypePInclude is a pointer to DeviceManagementApplicabilityRuleTypeVInclude
DeviceManagementApplicabilityRuleTypePInclude = &_DeviceManagementApplicabilityRuleTypePInclude
// DeviceManagementApplicabilityRuleTypePExclude is a pointer to DeviceManagementApplicabilityRuleTypeVExclude
DeviceManagementApplicabilityRuleTypePExclude = &_DeviceManagementApplicabilityRuleTypePExclude
)
var (
_DeviceManagementApplicabilityRuleTypePInclude = DeviceManagementApplicabilityRuleTypeVInclude
_DeviceManagementApplicabilityRuleTypePExclude = DeviceManagementApplicabilityRuleTypeVExclude
)
// DeviceManagementComparisonResult undocumented
type DeviceManagementComparisonResult string
const (
// DeviceManagementComparisonResultVUnknown undocumented
DeviceManagementComparisonResultVUnknown DeviceManagementComparisonResult = "unknown"
// DeviceManagementComparisonResultVEqual undocumented
DeviceManagementComparisonResultVEqual DeviceManagementComparisonResult = "equal"
// DeviceManagementComparisonResultVNotEqual undocumented
DeviceManagementComparisonResultVNotEqual DeviceManagementComparisonResult = "notEqual"
// DeviceManagementComparisonResultVAdded undocumented
DeviceManagementComparisonResultVAdded DeviceManagementComparisonResult = "added"
// DeviceManagementComparisonResultVRemoved undocumented
DeviceManagementComparisonResultVRemoved DeviceManagementComparisonResult = "removed"
)
var (
// DeviceManagementComparisonResultPUnknown is a pointer to DeviceManagementComparisonResultVUnknown
DeviceManagementComparisonResultPUnknown = &_DeviceManagementComparisonResultPUnknown
// DeviceManagementComparisonResultPEqual is a pointer to DeviceManagementComparisonResultVEqual
DeviceManagementComparisonResultPEqual = &_DeviceManagementComparisonResultPEqual
// DeviceManagementComparisonResultPNotEqual is a pointer to DeviceManagementComparisonResultVNotEqual
DeviceManagementComparisonResultPNotEqual = &_DeviceManagementComparisonResultPNotEqual
// DeviceManagementComparisonResultPAdded is a pointer to DeviceManagementComparisonResultVAdded
DeviceManagementComparisonResultPAdded = &_DeviceManagementComparisonResultPAdded
// DeviceManagementComparisonResultPRemoved is a pointer to DeviceManagementComparisonResultVRemoved
DeviceManagementComparisonResultPRemoved = &_DeviceManagementComparisonResultPRemoved
)
var (
_DeviceManagementComparisonResultPUnknown = DeviceManagementComparisonResultVUnknown
_DeviceManagementComparisonResultPEqual = DeviceManagementComparisonResultVEqual
_DeviceManagementComparisonResultPNotEqual = DeviceManagementComparisonResultVNotEqual
_DeviceManagementComparisonResultPAdded = DeviceManagementComparisonResultVAdded
_DeviceManagementComparisonResultPRemoved = DeviceManagementComparisonResultVRemoved
)
// DeviceManagementDerivedCredentialIssuer undocumented
type DeviceManagementDerivedCredentialIssuer string
const (
// DeviceManagementDerivedCredentialIssuerVIntercede undocumented
DeviceManagementDerivedCredentialIssuerVIntercede DeviceManagementDerivedCredentialIssuer = "intercede"
// DeviceManagementDerivedCredentialIssuerVEntrustDatacard undocumented
DeviceManagementDerivedCredentialIssuerVEntrustDatacard DeviceManagementDerivedCredentialIssuer = "entrustDatacard"
// DeviceManagementDerivedCredentialIssuerVPurebred undocumented
DeviceManagementDerivedCredentialIssuerVPurebred DeviceManagementDerivedCredentialIssuer = "purebred"
)
var (
// DeviceManagementDerivedCredentialIssuerPIntercede is a pointer to DeviceManagementDerivedCredentialIssuerVIntercede
DeviceManagementDerivedCredentialIssuerPIntercede = &_DeviceManagementDerivedCredentialIssuerPIntercede
// DeviceManagementDerivedCredentialIssuerPEntrustDatacard is a pointer to DeviceManagementDerivedCredentialIssuerVEntrustDatacard
DeviceManagementDerivedCredentialIssuerPEntrustDatacard = &_DeviceManagementDerivedCredentialIssuerPEntrustDatacard
// DeviceManagementDerivedCredentialIssuerPPurebred is a pointer to DeviceManagementDerivedCredentialIssuerVPurebred
DeviceManagementDerivedCredentialIssuerPPurebred = &_DeviceManagementDerivedCredentialIssuerPPurebred
)
var (
_DeviceManagementDerivedCredentialIssuerPIntercede = DeviceManagementDerivedCredentialIssuerVIntercede
_DeviceManagementDerivedCredentialIssuerPEntrustDatacard = DeviceManagementDerivedCredentialIssuerVEntrustDatacard
_DeviceManagementDerivedCredentialIssuerPPurebred = DeviceManagementDerivedCredentialIssuerVPurebred
)
// DeviceManagementDerivedCredentialNotificationType undocumented
type DeviceManagementDerivedCredentialNotificationType string
const (
// DeviceManagementDerivedCredentialNotificationTypeVNone undocumented
DeviceManagementDerivedCredentialNotificationTypeVNone DeviceManagementDerivedCredentialNotificationType = "none"
// DeviceManagementDerivedCredentialNotificationTypeVCompanyPortal undocumented
DeviceManagementDerivedCredentialNotificationTypeVCompanyPortal DeviceManagementDerivedCredentialNotificationType = "companyPortal"
// DeviceManagementDerivedCredentialNotificationTypeVEmail undocumented
DeviceManagementDerivedCredentialNotificationTypeVEmail DeviceManagementDerivedCredentialNotificationType = "email"
)
var (
// DeviceManagementDerivedCredentialNotificationTypePNone is a pointer to DeviceManagementDerivedCredentialNotificationTypeVNone
DeviceManagementDerivedCredentialNotificationTypePNone = &_DeviceManagementDerivedCredentialNotificationTypePNone
// DeviceManagementDerivedCredentialNotificationTypePCompanyPortal is a pointer to DeviceManagementDerivedCredentialNotificationTypeVCompanyPortal
DeviceManagementDerivedCredentialNotificationTypePCompanyPortal = &_DeviceManagementDerivedCredentialNotificationTypePCompanyPortal
// DeviceManagementDerivedCredentialNotificationTypePEmail is a pointer to DeviceManagementDerivedCredentialNotificationTypeVEmail
DeviceManagementDerivedCredentialNotificationTypePEmail = &_DeviceManagementDerivedCredentialNotificationTypePEmail
)
var (
_DeviceManagementDerivedCredentialNotificationTypePNone = DeviceManagementDerivedCredentialNotificationTypeVNone
_DeviceManagementDerivedCredentialNotificationTypePCompanyPortal = DeviceManagementDerivedCredentialNotificationTypeVCompanyPortal
_DeviceManagementDerivedCredentialNotificationTypePEmail = DeviceManagementDerivedCredentialNotificationTypeVEmail
)
// DeviceManagementDomainJoinConnectorState undocumented
type DeviceManagementDomainJoinConnectorState string
const (
// DeviceManagementDomainJoinConnectorStateVActive undocumented
DeviceManagementDomainJoinConnectorStateVActive DeviceManagementDomainJoinConnectorState = "active"
// DeviceManagementDomainJoinConnectorStateVError undocumented
DeviceManagementDomainJoinConnectorStateVError DeviceManagementDomainJoinConnectorState = "error"
// DeviceManagementDomainJoinConnectorStateVInactive undocumented
DeviceManagementDomainJoinConnectorStateVInactive DeviceManagementDomainJoinConnectorState = "inactive"
)
var (
// DeviceManagementDomainJoinConnectorStatePActive is a pointer to DeviceManagementDomainJoinConnectorStateVActive
DeviceManagementDomainJoinConnectorStatePActive = &_DeviceManagementDomainJoinConnectorStatePActive
// DeviceManagementDomainJoinConnectorStatePError is a pointer to DeviceManagementDomainJoinConnectorStateVError
DeviceManagementDomainJoinConnectorStatePError = &_DeviceManagementDomainJoinConnectorStatePError
// DeviceManagementDomainJoinConnectorStatePInactive is a pointer to DeviceManagementDomainJoinConnectorStateVInactive
DeviceManagementDomainJoinConnectorStatePInactive = &_DeviceManagementDomainJoinConnectorStatePInactive
)
var (
_DeviceManagementDomainJoinConnectorStatePActive = DeviceManagementDomainJoinConnectorStateVActive
_DeviceManagementDomainJoinConnectorStatePError = DeviceManagementDomainJoinConnectorStateVError
_DeviceManagementDomainJoinConnectorStatePInactive = DeviceManagementDomainJoinConnectorStateVInactive
)
// DeviceManagementExchangeAccessLevel undocumented
type DeviceManagementExchangeAccessLevel string
const (
// DeviceManagementExchangeAccessLevelVNone undocumented
DeviceManagementExchangeAccessLevelVNone DeviceManagementExchangeAccessLevel = "none"
// DeviceManagementExchangeAccessLevelVAllow undocumented
DeviceManagementExchangeAccessLevelVAllow DeviceManagementExchangeAccessLevel = "allow"
// DeviceManagementExchangeAccessLevelVBlock undocumented
DeviceManagementExchangeAccessLevelVBlock DeviceManagementExchangeAccessLevel = "block"
// DeviceManagementExchangeAccessLevelVQuarantine undocumented
DeviceManagementExchangeAccessLevelVQuarantine DeviceManagementExchangeAccessLevel = "quarantine"
)
var (
// DeviceManagementExchangeAccessLevelPNone is a pointer to DeviceManagementExchangeAccessLevelVNone
DeviceManagementExchangeAccessLevelPNone = &_DeviceManagementExchangeAccessLevelPNone
// DeviceManagementExchangeAccessLevelPAllow is a pointer to DeviceManagementExchangeAccessLevelVAllow
DeviceManagementExchangeAccessLevelPAllow = &_DeviceManagementExchangeAccessLevelPAllow
// DeviceManagementExchangeAccessLevelPBlock is a pointer to DeviceManagementExchangeAccessLevelVBlock
DeviceManagementExchangeAccessLevelPBlock = &_DeviceManagementExchangeAccessLevelPBlock
// DeviceManagementExchangeAccessLevelPQuarantine is a pointer to DeviceManagementExchangeAccessLevelVQuarantine
DeviceManagementExchangeAccessLevelPQuarantine = &_DeviceManagementExchangeAccessLevelPQuarantine
)
var (
_DeviceManagementExchangeAccessLevelPNone = DeviceManagementExchangeAccessLevelVNone
_DeviceManagementExchangeAccessLevelPAllow = DeviceManagementExchangeAccessLevelVAllow
_DeviceManagementExchangeAccessLevelPBlock = DeviceManagementExchangeAccessLevelVBlock
_DeviceManagementExchangeAccessLevelPQuarantine = DeviceManagementExchangeAccessLevelVQuarantine
)
// DeviceManagementExchangeAccessRuleType undocumented
type DeviceManagementExchangeAccessRuleType string
const (
// DeviceManagementExchangeAccessRuleTypeVFamily undocumented
DeviceManagementExchangeAccessRuleTypeVFamily DeviceManagementExchangeAccessRuleType = "family"
// DeviceManagementExchangeAccessRuleTypeVModel undocumented
DeviceManagementExchangeAccessRuleTypeVModel DeviceManagementExchangeAccessRuleType = "model"
)
var (
// DeviceManagementExchangeAccessRuleTypePFamily is a pointer to DeviceManagementExchangeAccessRuleTypeVFamily
DeviceManagementExchangeAccessRuleTypePFamily = &_DeviceManagementExchangeAccessRuleTypePFamily
// DeviceManagementExchangeAccessRuleTypePModel is a pointer to DeviceManagementExchangeAccessRuleTypeVModel
DeviceManagementExchangeAccessRuleTypePModel = &_DeviceManagementExchangeAccessRuleTypePModel
)
var (
_DeviceManagementExchangeAccessRuleTypePFamily = DeviceManagementExchangeAccessRuleTypeVFamily
_DeviceManagementExchangeAccessRuleTypePModel = DeviceManagementExchangeAccessRuleTypeVModel
)
// DeviceManagementExchangeAccessState undocumented
type DeviceManagementExchangeAccessState string
const (
// DeviceManagementExchangeAccessStateVNone undocumented
DeviceManagementExchangeAccessStateVNone DeviceManagementExchangeAccessState = "none"
// DeviceManagementExchangeAccessStateVUnknown undocumented
DeviceManagementExchangeAccessStateVUnknown DeviceManagementExchangeAccessState = "unknown"
// DeviceManagementExchangeAccessStateVAllowed undocumented
DeviceManagementExchangeAccessStateVAllowed DeviceManagementExchangeAccessState = "allowed"
// DeviceManagementExchangeAccessStateVBlocked undocumented
DeviceManagementExchangeAccessStateVBlocked DeviceManagementExchangeAccessState = "blocked"
// DeviceManagementExchangeAccessStateVQuarantined undocumented
DeviceManagementExchangeAccessStateVQuarantined DeviceManagementExchangeAccessState = "quarantined"
)
var (
// DeviceManagementExchangeAccessStatePNone is a pointer to DeviceManagementExchangeAccessStateVNone
DeviceManagementExchangeAccessStatePNone = &_DeviceManagementExchangeAccessStatePNone
// DeviceManagementExchangeAccessStatePUnknown is a pointer to DeviceManagementExchangeAccessStateVUnknown
DeviceManagementExchangeAccessStatePUnknown = &_DeviceManagementExchangeAccessStatePUnknown
// DeviceManagementExchangeAccessStatePAllowed is a pointer to DeviceManagementExchangeAccessStateVAllowed
DeviceManagementExchangeAccessStatePAllowed = &_DeviceManagementExchangeAccessStatePAllowed
// DeviceManagementExchangeAccessStatePBlocked is a pointer to DeviceManagementExchangeAccessStateVBlocked
DeviceManagementExchangeAccessStatePBlocked = &_DeviceManagementExchangeAccessStatePBlocked
// DeviceManagementExchangeAccessStatePQuarantined is a pointer to DeviceManagementExchangeAccessStateVQuarantined
DeviceManagementExchangeAccessStatePQuarantined = &_DeviceManagementExchangeAccessStatePQuarantined
)
var (
_DeviceManagementExchangeAccessStatePNone = DeviceManagementExchangeAccessStateVNone
_DeviceManagementExchangeAccessStatePUnknown = DeviceManagementExchangeAccessStateVUnknown
_DeviceManagementExchangeAccessStatePAllowed = DeviceManagementExchangeAccessStateVAllowed
_DeviceManagementExchangeAccessStatePBlocked = DeviceManagementExchangeAccessStateVBlocked
_DeviceManagementExchangeAccessStatePQuarantined = DeviceManagementExchangeAccessStateVQuarantined
)
// DeviceManagementExchangeAccessStateReason undocumented
type DeviceManagementExchangeAccessStateReason string
const (
// DeviceManagementExchangeAccessStateReasonVNone undocumented
DeviceManagementExchangeAccessStateReasonVNone DeviceManagementExchangeAccessStateReason = "none"
// DeviceManagementExchangeAccessStateReasonVUnknown undocumented
DeviceManagementExchangeAccessStateReasonVUnknown DeviceManagementExchangeAccessStateReason = "unknown"
// DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule undocumented
DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule DeviceManagementExchangeAccessStateReason = "exchangeGlobalRule"
// DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule undocumented
DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule DeviceManagementExchangeAccessStateReason = "exchangeIndividualRule"
// DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule undocumented
DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule DeviceManagementExchangeAccessStateReason = "exchangeDeviceRule"
// DeviceManagementExchangeAccessStateReasonVExchangeUpgrade undocumented
DeviceManagementExchangeAccessStateReasonVExchangeUpgrade DeviceManagementExchangeAccessStateReason = "exchangeUpgrade"
// DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy undocumented
DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy DeviceManagementExchangeAccessStateReason = "exchangeMailboxPolicy"
// DeviceManagementExchangeAccessStateReasonVOther undocumented
DeviceManagementExchangeAccessStateReasonVOther DeviceManagementExchangeAccessStateReason = "other"
// DeviceManagementExchangeAccessStateReasonVCompliant undocumented
DeviceManagementExchangeAccessStateReasonVCompliant DeviceManagementExchangeAccessStateReason = "compliant"
// DeviceManagementExchangeAccessStateReasonVNotCompliant undocumented
DeviceManagementExchangeAccessStateReasonVNotCompliant DeviceManagementExchangeAccessStateReason = "notCompliant"
// DeviceManagementExchangeAccessStateReasonVNotEnrolled undocumented
DeviceManagementExchangeAccessStateReasonVNotEnrolled DeviceManagementExchangeAccessStateReason = "notEnrolled"
// DeviceManagementExchangeAccessStateReasonVUnknownLocation undocumented
DeviceManagementExchangeAccessStateReasonVUnknownLocation DeviceManagementExchangeAccessStateReason = "unknownLocation"
// DeviceManagementExchangeAccessStateReasonVMFARequired undocumented
DeviceManagementExchangeAccessStateReasonVMFARequired DeviceManagementExchangeAccessStateReason = "mfaRequired"
// DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy undocumented
DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy DeviceManagementExchangeAccessStateReason = "azureADBlockDueToAccessPolicy"
// DeviceManagementExchangeAccessStateReasonVCompromisedPassword undocumented
DeviceManagementExchangeAccessStateReasonVCompromisedPassword DeviceManagementExchangeAccessStateReason = "compromisedPassword"
// DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp undocumented
DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp DeviceManagementExchangeAccessStateReason = "deviceNotKnownWithManagedApp"
)
var (
// DeviceManagementExchangeAccessStateReasonPNone is a pointer to DeviceManagementExchangeAccessStateReasonVNone
DeviceManagementExchangeAccessStateReasonPNone = &_DeviceManagementExchangeAccessStateReasonPNone
// DeviceManagementExchangeAccessStateReasonPUnknown is a pointer to DeviceManagementExchangeAccessStateReasonVUnknown
DeviceManagementExchangeAccessStateReasonPUnknown = &_DeviceManagementExchangeAccessStateReasonPUnknown
// DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule
DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule = &_DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule
// DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule
DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule = &_DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule
// DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule
DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule = &_DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule
// DeviceManagementExchangeAccessStateReasonPExchangeUpgrade is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeUpgrade
DeviceManagementExchangeAccessStateReasonPExchangeUpgrade = &_DeviceManagementExchangeAccessStateReasonPExchangeUpgrade
// DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy is a pointer to DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy
DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy = &_DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy
// DeviceManagementExchangeAccessStateReasonPOther is a pointer to DeviceManagementExchangeAccessStateReasonVOther
DeviceManagementExchangeAccessStateReasonPOther = &_DeviceManagementExchangeAccessStateReasonPOther
// DeviceManagementExchangeAccessStateReasonPCompliant is a pointer to DeviceManagementExchangeAccessStateReasonVCompliant
DeviceManagementExchangeAccessStateReasonPCompliant = &_DeviceManagementExchangeAccessStateReasonPCompliant
// DeviceManagementExchangeAccessStateReasonPNotCompliant is a pointer to DeviceManagementExchangeAccessStateReasonVNotCompliant
DeviceManagementExchangeAccessStateReasonPNotCompliant = &_DeviceManagementExchangeAccessStateReasonPNotCompliant
// DeviceManagementExchangeAccessStateReasonPNotEnrolled is a pointer to DeviceManagementExchangeAccessStateReasonVNotEnrolled
DeviceManagementExchangeAccessStateReasonPNotEnrolled = &_DeviceManagementExchangeAccessStateReasonPNotEnrolled
// DeviceManagementExchangeAccessStateReasonPUnknownLocation is a pointer to DeviceManagementExchangeAccessStateReasonVUnknownLocation
DeviceManagementExchangeAccessStateReasonPUnknownLocation = &_DeviceManagementExchangeAccessStateReasonPUnknownLocation
// DeviceManagementExchangeAccessStateReasonPMFARequired is a pointer to DeviceManagementExchangeAccessStateReasonVMFARequired
DeviceManagementExchangeAccessStateReasonPMFARequired = &_DeviceManagementExchangeAccessStateReasonPMFARequired
// DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy is a pointer to DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy
DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy = &_DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy
// DeviceManagementExchangeAccessStateReasonPCompromisedPassword is a pointer to DeviceManagementExchangeAccessStateReasonVCompromisedPassword
DeviceManagementExchangeAccessStateReasonPCompromisedPassword = &_DeviceManagementExchangeAccessStateReasonPCompromisedPassword
// DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp is a pointer to DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp
DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp = &_DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp
)
var (
_DeviceManagementExchangeAccessStateReasonPNone = DeviceManagementExchangeAccessStateReasonVNone
_DeviceManagementExchangeAccessStateReasonPUnknown = DeviceManagementExchangeAccessStateReasonVUnknown
_DeviceManagementExchangeAccessStateReasonPExchangeGlobalRule = DeviceManagementExchangeAccessStateReasonVExchangeGlobalRule
_DeviceManagementExchangeAccessStateReasonPExchangeIndividualRule = DeviceManagementExchangeAccessStateReasonVExchangeIndividualRule
_DeviceManagementExchangeAccessStateReasonPExchangeDeviceRule = DeviceManagementExchangeAccessStateReasonVExchangeDeviceRule
_DeviceManagementExchangeAccessStateReasonPExchangeUpgrade = DeviceManagementExchangeAccessStateReasonVExchangeUpgrade
_DeviceManagementExchangeAccessStateReasonPExchangeMailboxPolicy = DeviceManagementExchangeAccessStateReasonVExchangeMailboxPolicy
_DeviceManagementExchangeAccessStateReasonPOther = DeviceManagementExchangeAccessStateReasonVOther
_DeviceManagementExchangeAccessStateReasonPCompliant = DeviceManagementExchangeAccessStateReasonVCompliant
_DeviceManagementExchangeAccessStateReasonPNotCompliant = DeviceManagementExchangeAccessStateReasonVNotCompliant
_DeviceManagementExchangeAccessStateReasonPNotEnrolled = DeviceManagementExchangeAccessStateReasonVNotEnrolled
_DeviceManagementExchangeAccessStateReasonPUnknownLocation = DeviceManagementExchangeAccessStateReasonVUnknownLocation
_DeviceManagementExchangeAccessStateReasonPMFARequired = DeviceManagementExchangeAccessStateReasonVMFARequired
_DeviceManagementExchangeAccessStateReasonPAzureADBlockDueToAccessPolicy = DeviceManagementExchangeAccessStateReasonVAzureADBlockDueToAccessPolicy
_DeviceManagementExchangeAccessStateReasonPCompromisedPassword = DeviceManagementExchangeAccessStateReasonVCompromisedPassword
_DeviceManagementExchangeAccessStateReasonPDeviceNotKnownWithManagedApp = DeviceManagementExchangeAccessStateReasonVDeviceNotKnownWithManagedApp
)
// DeviceManagementExchangeConnectorStatus undocumented
type DeviceManagementExchangeConnectorStatus string
const (
// DeviceManagementExchangeConnectorStatusVNone undocumented
DeviceManagementExchangeConnectorStatusVNone DeviceManagementExchangeConnectorStatus = "none"
// DeviceManagementExchangeConnectorStatusVConnectionPending undocumented
DeviceManagementExchangeConnectorStatusVConnectionPending DeviceManagementExchangeConnectorStatus = "connectionPending"
// DeviceManagementExchangeConnectorStatusVConnected undocumented
DeviceManagementExchangeConnectorStatusVConnected DeviceManagementExchangeConnectorStatus = "connected"
// DeviceManagementExchangeConnectorStatusVDisconnected undocumented
DeviceManagementExchangeConnectorStatusVDisconnected DeviceManagementExchangeConnectorStatus = "disconnected"
)
var (
// DeviceManagementExchangeConnectorStatusPNone is a pointer to DeviceManagementExchangeConnectorStatusVNone
DeviceManagementExchangeConnectorStatusPNone = &_DeviceManagementExchangeConnectorStatusPNone
// DeviceManagementExchangeConnectorStatusPConnectionPending is a pointer to DeviceManagementExchangeConnectorStatusVConnectionPending
DeviceManagementExchangeConnectorStatusPConnectionPending = &_DeviceManagementExchangeConnectorStatusPConnectionPending
// DeviceManagementExchangeConnectorStatusPConnected is a pointer to DeviceManagementExchangeConnectorStatusVConnected
DeviceManagementExchangeConnectorStatusPConnected = &_DeviceManagementExchangeConnectorStatusPConnected
// DeviceManagementExchangeConnectorStatusPDisconnected is a pointer to DeviceManagementExchangeConnectorStatusVDisconnected
DeviceManagementExchangeConnectorStatusPDisconnected = &_DeviceManagementExchangeConnectorStatusPDisconnected
)
var (
_DeviceManagementExchangeConnectorStatusPNone = DeviceManagementExchangeConnectorStatusVNone
_DeviceManagementExchangeConnectorStatusPConnectionPending = DeviceManagementExchangeConnectorStatusVConnectionPending
_DeviceManagementExchangeConnectorStatusPConnected = DeviceManagementExchangeConnectorStatusVConnected
_DeviceManagementExchangeConnectorStatusPDisconnected = DeviceManagementExchangeConnectorStatusVDisconnected
)
// DeviceManagementExchangeConnectorSyncType undocumented
type DeviceManagementExchangeConnectorSyncType string
const (
// DeviceManagementExchangeConnectorSyncTypeVFullSync undocumented
DeviceManagementExchangeConnectorSyncTypeVFullSync DeviceManagementExchangeConnectorSyncType = "fullSync"
// DeviceManagementExchangeConnectorSyncTypeVDeltaSync undocumented
DeviceManagementExchangeConnectorSyncTypeVDeltaSync DeviceManagementExchangeConnectorSyncType = "deltaSync"
)
var (
// DeviceManagementExchangeConnectorSyncTypePFullSync is a pointer to DeviceManagementExchangeConnectorSyncTypeVFullSync
DeviceManagementExchangeConnectorSyncTypePFullSync = &_DeviceManagementExchangeConnectorSyncTypePFullSync
// DeviceManagementExchangeConnectorSyncTypePDeltaSync is a pointer to DeviceManagementExchangeConnectorSyncTypeVDeltaSync
DeviceManagementExchangeConnectorSyncTypePDeltaSync = &_DeviceManagementExchangeConnectorSyncTypePDeltaSync
)
var (
_DeviceManagementExchangeConnectorSyncTypePFullSync = DeviceManagementExchangeConnectorSyncTypeVFullSync
_DeviceManagementExchangeConnectorSyncTypePDeltaSync = DeviceManagementExchangeConnectorSyncTypeVDeltaSync
)
// DeviceManagementExchangeConnectorType undocumented
type DeviceManagementExchangeConnectorType string
const (
// DeviceManagementExchangeConnectorTypeVOnPremises undocumented
DeviceManagementExchangeConnectorTypeVOnPremises DeviceManagementExchangeConnectorType = "onPremises"
// DeviceManagementExchangeConnectorTypeVHosted undocumented
DeviceManagementExchangeConnectorTypeVHosted DeviceManagementExchangeConnectorType = "hosted"
// DeviceManagementExchangeConnectorTypeVServiceToService undocumented
DeviceManagementExchangeConnectorTypeVServiceToService DeviceManagementExchangeConnectorType = "serviceToService"
// DeviceManagementExchangeConnectorTypeVDedicated undocumented
DeviceManagementExchangeConnectorTypeVDedicated DeviceManagementExchangeConnectorType = "dedicated"
)
var (
// DeviceManagementExchangeConnectorTypePOnPremises is a pointer to DeviceManagementExchangeConnectorTypeVOnPremises
DeviceManagementExchangeConnectorTypePOnPremises = &_DeviceManagementExchangeConnectorTypePOnPremises
// DeviceManagementExchangeConnectorTypePHosted is a pointer to DeviceManagementExchangeConnectorTypeVHosted
DeviceManagementExchangeConnectorTypePHosted = &_DeviceManagementExchangeConnectorTypePHosted
// DeviceManagementExchangeConnectorTypePServiceToService is a pointer to DeviceManagementExchangeConnectorTypeVServiceToService
DeviceManagementExchangeConnectorTypePServiceToService = &_DeviceManagementExchangeConnectorTypePServiceToService
// DeviceManagementExchangeConnectorTypePDedicated is a pointer to DeviceManagementExchangeConnectorTypeVDedicated
DeviceManagementExchangeConnectorTypePDedicated = &_DeviceManagementExchangeConnectorTypePDedicated
)
var (
_DeviceManagementExchangeConnectorTypePOnPremises = DeviceManagementExchangeConnectorTypeVOnPremises
_DeviceManagementExchangeConnectorTypePHosted = DeviceManagementExchangeConnectorTypeVHosted
_DeviceManagementExchangeConnectorTypePServiceToService = DeviceManagementExchangeConnectorTypeVServiceToService
_DeviceManagementExchangeConnectorTypePDedicated = DeviceManagementExchangeConnectorTypeVDedicated
)
// DeviceManagementPartnerAppType undocumented
type DeviceManagementPartnerAppType string
const (
// DeviceManagementPartnerAppTypeVUnknown undocumented
DeviceManagementPartnerAppTypeVUnknown DeviceManagementPartnerAppType = "unknown"
// DeviceManagementPartnerAppTypeVSingleTenantApp undocumented
DeviceManagementPartnerAppTypeVSingleTenantApp DeviceManagementPartnerAppType = "singleTenantApp"
// DeviceManagementPartnerAppTypeVMultiTenantApp undocumented
DeviceManagementPartnerAppTypeVMultiTenantApp DeviceManagementPartnerAppType = "multiTenantApp"
)
var (
// DeviceManagementPartnerAppTypePUnknown is a pointer to DeviceManagementPartnerAppTypeVUnknown
DeviceManagementPartnerAppTypePUnknown = &_DeviceManagementPartnerAppTypePUnknown
// DeviceManagementPartnerAppTypePSingleTenantApp is a pointer to DeviceManagementPartnerAppTypeVSingleTenantApp
DeviceManagementPartnerAppTypePSingleTenantApp = &_DeviceManagementPartnerAppTypePSingleTenantApp
// DeviceManagementPartnerAppTypePMultiTenantApp is a pointer to DeviceManagementPartnerAppTypeVMultiTenantApp
DeviceManagementPartnerAppTypePMultiTenantApp = &_DeviceManagementPartnerAppTypePMultiTenantApp
)
var (
_DeviceManagementPartnerAppTypePUnknown = DeviceManagementPartnerAppTypeVUnknown
_DeviceManagementPartnerAppTypePSingleTenantApp = DeviceManagementPartnerAppTypeVSingleTenantApp
_DeviceManagementPartnerAppTypePMultiTenantApp = DeviceManagementPartnerAppTypeVMultiTenantApp
)
// DeviceManagementPartnerTenantState undocumented
type DeviceManagementPartnerTenantState string
const (
// DeviceManagementPartnerTenantStateVUnknown undocumented
DeviceManagementPartnerTenantStateVUnknown DeviceManagementPartnerTenantState = "unknown"
// DeviceManagementPartnerTenantStateVUnavailable undocumented
DeviceManagementPartnerTenantStateVUnavailable DeviceManagementPartnerTenantState = "unavailable"
// DeviceManagementPartnerTenantStateVEnabled undocumented
DeviceManagementPartnerTenantStateVEnabled DeviceManagementPartnerTenantState = "enabled"
// DeviceManagementPartnerTenantStateVTerminated undocumented
DeviceManagementPartnerTenantStateVTerminated DeviceManagementPartnerTenantState = "terminated"
// DeviceManagementPartnerTenantStateVRejected undocumented
DeviceManagementPartnerTenantStateVRejected DeviceManagementPartnerTenantState = "rejected"
// DeviceManagementPartnerTenantStateVUnresponsive undocumented
DeviceManagementPartnerTenantStateVUnresponsive DeviceManagementPartnerTenantState = "unresponsive"
)
var (
// DeviceManagementPartnerTenantStatePUnknown is a pointer to DeviceManagementPartnerTenantStateVUnknown
DeviceManagementPartnerTenantStatePUnknown = &_DeviceManagementPartnerTenantStatePUnknown
// DeviceManagementPartnerTenantStatePUnavailable is a pointer to DeviceManagementPartnerTenantStateVUnavailable
DeviceManagementPartnerTenantStatePUnavailable = &_DeviceManagementPartnerTenantStatePUnavailable
// DeviceManagementPartnerTenantStatePEnabled is a pointer to DeviceManagementPartnerTenantStateVEnabled
DeviceManagementPartnerTenantStatePEnabled = &_DeviceManagementPartnerTenantStatePEnabled
// DeviceManagementPartnerTenantStatePTerminated is a pointer to DeviceManagementPartnerTenantStateVTerminated
DeviceManagementPartnerTenantStatePTerminated = &_DeviceManagementPartnerTenantStatePTerminated
// DeviceManagementPartnerTenantStatePRejected is a pointer to DeviceManagementPartnerTenantStateVRejected
DeviceManagementPartnerTenantStatePRejected = &_DeviceManagementPartnerTenantStatePRejected
// DeviceManagementPartnerTenantStatePUnresponsive is a pointer to DeviceManagementPartnerTenantStateVUnresponsive
DeviceManagementPartnerTenantStatePUnresponsive = &_DeviceManagementPartnerTenantStatePUnresponsive
)
var (
_DeviceManagementPartnerTenantStatePUnknown = DeviceManagementPartnerTenantStateVUnknown
_DeviceManagementPartnerTenantStatePUnavailable = DeviceManagementPartnerTenantStateVUnavailable
_DeviceManagementPartnerTenantStatePEnabled = DeviceManagementPartnerTenantStateVEnabled
_DeviceManagementPartnerTenantStatePTerminated = DeviceManagementPartnerTenantStateVTerminated
_DeviceManagementPartnerTenantStatePRejected = DeviceManagementPartnerTenantStateVRejected
_DeviceManagementPartnerTenantStatePUnresponsive = DeviceManagementPartnerTenantStateVUnresponsive
)
// DeviceManagementReportFileFormat undocumented
type DeviceManagementReportFileFormat string
const (
// DeviceManagementReportFileFormatVCsv undocumented
DeviceManagementReportFileFormatVCsv DeviceManagementReportFileFormat = "csv"
// DeviceManagementReportFileFormatVPdf undocumented
DeviceManagementReportFileFormatVPdf DeviceManagementReportFileFormat = "pdf"
)
var (
// DeviceManagementReportFileFormatPCsv is a pointer to DeviceManagementReportFileFormatVCsv
DeviceManagementReportFileFormatPCsv = &_DeviceManagementReportFileFormatPCsv
// DeviceManagementReportFileFormatPPdf is a pointer to DeviceManagementReportFileFormatVPdf
DeviceManagementReportFileFormatPPdf = &_DeviceManagementReportFileFormatPPdf
)
var (
_DeviceManagementReportFileFormatPCsv = DeviceManagementReportFileFormatVCsv
_DeviceManagementReportFileFormatPPdf = DeviceManagementReportFileFormatVPdf
)
// DeviceManagementReportStatus undocumented
type DeviceManagementReportStatus string
const (
// DeviceManagementReportStatusVUnknown undocumented
DeviceManagementReportStatusVUnknown DeviceManagementReportStatus = "unknown"
// DeviceManagementReportStatusVNotStarted undocumented
DeviceManagementReportStatusVNotStarted DeviceManagementReportStatus = "notStarted"
// DeviceManagementReportStatusVInProgress undocumented
DeviceManagementReportStatusVInProgress DeviceManagementReportStatus = "inProgress"
// DeviceManagementReportStatusVCompleted undocumented
DeviceManagementReportStatusVCompleted DeviceManagementReportStatus = "completed"
// DeviceManagementReportStatusVFailed undocumented
DeviceManagementReportStatusVFailed DeviceManagementReportStatus = "failed"
)
var (
// DeviceManagementReportStatusPUnknown is a pointer to DeviceManagementReportStatusVUnknown
DeviceManagementReportStatusPUnknown = &_DeviceManagementReportStatusPUnknown
// DeviceManagementReportStatusPNotStarted is a pointer to DeviceManagementReportStatusVNotStarted
DeviceManagementReportStatusPNotStarted = &_DeviceManagementReportStatusPNotStarted
// DeviceManagementReportStatusPInProgress is a pointer to DeviceManagementReportStatusVInProgress
DeviceManagementReportStatusPInProgress = &_DeviceManagementReportStatusPInProgress
// DeviceManagementReportStatusPCompleted is a pointer to DeviceManagementReportStatusVCompleted
DeviceManagementReportStatusPCompleted = &_DeviceManagementReportStatusPCompleted
// DeviceManagementReportStatusPFailed is a pointer to DeviceManagementReportStatusVFailed
DeviceManagementReportStatusPFailed = &_DeviceManagementReportStatusPFailed
)
var (
_DeviceManagementReportStatusPUnknown = DeviceManagementReportStatusVUnknown
_DeviceManagementReportStatusPNotStarted = DeviceManagementReportStatusVNotStarted
_DeviceManagementReportStatusPInProgress = DeviceManagementReportStatusVInProgress
_DeviceManagementReportStatusPCompleted = DeviceManagementReportStatusVCompleted
_DeviceManagementReportStatusPFailed = DeviceManagementReportStatusVFailed
)
// DeviceManagementScheduledReportRecurrence undocumented
type DeviceManagementScheduledReportRecurrence string
const (
// DeviceManagementScheduledReportRecurrenceVNone undocumented
DeviceManagementScheduledReportRecurrenceVNone DeviceManagementScheduledReportRecurrence = "none"
// DeviceManagementScheduledReportRecurrenceVDaily undocumented
DeviceManagementScheduledReportRecurrenceVDaily DeviceManagementScheduledReportRecurrence = "daily"
// DeviceManagementScheduledReportRecurrenceVWeekly undocumented
DeviceManagementScheduledReportRecurrenceVWeekly DeviceManagementScheduledReportRecurrence = "weekly"
// DeviceManagementScheduledReportRecurrenceVMonthly undocumented
DeviceManagementScheduledReportRecurrenceVMonthly DeviceManagementScheduledReportRecurrence = "monthly"
)
var (
// DeviceManagementScheduledReportRecurrencePNone is a pointer to DeviceManagementScheduledReportRecurrenceVNone
DeviceManagementScheduledReportRecurrencePNone = &_DeviceManagementScheduledReportRecurrencePNone
// DeviceManagementScheduledReportRecurrencePDaily is a pointer to DeviceManagementScheduledReportRecurrenceVDaily
DeviceManagementScheduledReportRecurrencePDaily = &_DeviceManagementScheduledReportRecurrencePDaily
// DeviceManagementScheduledReportRecurrencePWeekly is a pointer to DeviceManagementScheduledReportRecurrenceVWeekly
DeviceManagementScheduledReportRecurrencePWeekly = &_DeviceManagementScheduledReportRecurrencePWeekly
// DeviceManagementScheduledReportRecurrencePMonthly is a pointer to DeviceManagementScheduledReportRecurrenceVMonthly
DeviceManagementScheduledReportRecurrencePMonthly = &_DeviceManagementScheduledReportRecurrencePMonthly
)
var (
_DeviceManagementScheduledReportRecurrencePNone = DeviceManagementScheduledReportRecurrenceVNone
_DeviceManagementScheduledReportRecurrencePDaily = DeviceManagementScheduledReportRecurrenceVDaily
_DeviceManagementScheduledReportRecurrencePWeekly = DeviceManagementScheduledReportRecurrenceVWeekly
_DeviceManagementScheduledReportRecurrencePMonthly = DeviceManagementScheduledReportRecurrenceVMonthly
)
// DeviceManagementSubscriptionState undocumented
type DeviceManagementSubscriptionState string
const (
// DeviceManagementSubscriptionStateVPending undocumented
DeviceManagementSubscriptionStateVPending DeviceManagementSubscriptionState = "pending"
// DeviceManagementSubscriptionStateVActive undocumented
DeviceManagementSubscriptionStateVActive DeviceManagementSubscriptionState = "active"
// DeviceManagementSubscriptionStateVWarning undocumented
DeviceManagementSubscriptionStateVWarning DeviceManagementSubscriptionState = "warning"
// DeviceManagementSubscriptionStateVDisabled undocumented
DeviceManagementSubscriptionStateVDisabled DeviceManagementSubscriptionState = "disabled"
// DeviceManagementSubscriptionStateVDeleted undocumented
DeviceManagementSubscriptionStateVDeleted DeviceManagementSubscriptionState = "deleted"
// DeviceManagementSubscriptionStateVBlocked undocumented
DeviceManagementSubscriptionStateVBlocked DeviceManagementSubscriptionState = "blocked"
// DeviceManagementSubscriptionStateVLockedOut undocumented
DeviceManagementSubscriptionStateVLockedOut DeviceManagementSubscriptionState = "lockedOut"
)
var (
// DeviceManagementSubscriptionStatePPending is a pointer to DeviceManagementSubscriptionStateVPending
DeviceManagementSubscriptionStatePPending = &_DeviceManagementSubscriptionStatePPending
// DeviceManagementSubscriptionStatePActive is a pointer to DeviceManagementSubscriptionStateVActive
DeviceManagementSubscriptionStatePActive = &_DeviceManagementSubscriptionStatePActive
// DeviceManagementSubscriptionStatePWarning is a pointer to DeviceManagementSubscriptionStateVWarning
DeviceManagementSubscriptionStatePWarning = &_DeviceManagementSubscriptionStatePWarning
// DeviceManagementSubscriptionStatePDisabled is a pointer to DeviceManagementSubscriptionStateVDisabled
DeviceManagementSubscriptionStatePDisabled = &_DeviceManagementSubscriptionStatePDisabled
// DeviceManagementSubscriptionStatePDeleted is a pointer to DeviceManagementSubscriptionStateVDeleted
DeviceManagementSubscriptionStatePDeleted = &_DeviceManagementSubscriptionStatePDeleted
// DeviceManagementSubscriptionStatePBlocked is a pointer to DeviceManagementSubscriptionStateVBlocked
DeviceManagementSubscriptionStatePBlocked = &_DeviceManagementSubscriptionStatePBlocked
// DeviceManagementSubscriptionStatePLockedOut is a pointer to DeviceManagementSubscriptionStateVLockedOut
DeviceManagementSubscriptionStatePLockedOut = &_DeviceManagementSubscriptionStatePLockedOut
)
var (
_DeviceManagementSubscriptionStatePPending = DeviceManagementSubscriptionStateVPending
_DeviceManagementSubscriptionStatePActive = DeviceManagementSubscriptionStateVActive
_DeviceManagementSubscriptionStatePWarning = DeviceManagementSubscriptionStateVWarning
_DeviceManagementSubscriptionStatePDisabled = DeviceManagementSubscriptionStateVDisabled
_DeviceManagementSubscriptionStatePDeleted = DeviceManagementSubscriptionStateVDeleted
_DeviceManagementSubscriptionStatePBlocked = DeviceManagementSubscriptionStateVBlocked
_DeviceManagementSubscriptionStatePLockedOut = DeviceManagementSubscriptionStateVLockedOut
)
// DeviceManagementSubscriptions undocumented
type DeviceManagementSubscriptions string
const (
// DeviceManagementSubscriptionsVNone undocumented
DeviceManagementSubscriptionsVNone DeviceManagementSubscriptions = "none"
// DeviceManagementSubscriptionsVIntune undocumented
DeviceManagementSubscriptionsVIntune DeviceManagementSubscriptions = "intune"
// DeviceManagementSubscriptionsVOffice365 undocumented
DeviceManagementSubscriptionsVOffice365 DeviceManagementSubscriptions = "office365"
// DeviceManagementSubscriptionsVIntunePremium undocumented
DeviceManagementSubscriptionsVIntunePremium DeviceManagementSubscriptions = "intunePremium"
// DeviceManagementSubscriptionsVIntune_EDU undocumented
DeviceManagementSubscriptionsVIntune_EDU DeviceManagementSubscriptions = "intune_EDU"
// DeviceManagementSubscriptionsVIntune_SMB undocumented
DeviceManagementSubscriptionsVIntune_SMB DeviceManagementSubscriptions = "intune_SMB"
)
var (
// DeviceManagementSubscriptionsPNone is a pointer to DeviceManagementSubscriptionsVNone
DeviceManagementSubscriptionsPNone = &_DeviceManagementSubscriptionsPNone
// DeviceManagementSubscriptionsPIntune is a pointer to DeviceManagementSubscriptionsVIntune
DeviceManagementSubscriptionsPIntune = &_DeviceManagementSubscriptionsPIntune
// DeviceManagementSubscriptionsPOffice365 is a pointer to DeviceManagementSubscriptionsVOffice365
DeviceManagementSubscriptionsPOffice365 = &_DeviceManagementSubscriptionsPOffice365
// DeviceManagementSubscriptionsPIntunePremium is a pointer to DeviceManagementSubscriptionsVIntunePremium
DeviceManagementSubscriptionsPIntunePremium = &_DeviceManagementSubscriptionsPIntunePremium
// DeviceManagementSubscriptionsPIntune_EDU is a pointer to DeviceManagementSubscriptionsVIntune_EDU
DeviceManagementSubscriptionsPIntune_EDU = &_DeviceManagementSubscriptionsPIntune_EDU
// DeviceManagementSubscriptionsPIntune_SMB is a pointer to DeviceManagementSubscriptionsVIntune_SMB
DeviceManagementSubscriptionsPIntune_SMB = &_DeviceManagementSubscriptionsPIntune_SMB
)
var (
_DeviceManagementSubscriptionsPNone = DeviceManagementSubscriptionsVNone
_DeviceManagementSubscriptionsPIntune = DeviceManagementSubscriptionsVIntune
_DeviceManagementSubscriptionsPOffice365 = DeviceManagementSubscriptionsVOffice365
_DeviceManagementSubscriptionsPIntunePremium = DeviceManagementSubscriptionsVIntunePremium
_DeviceManagementSubscriptionsPIntune_EDU = DeviceManagementSubscriptionsVIntune_EDU
_DeviceManagementSubscriptionsPIntune_SMB = DeviceManagementSubscriptionsVIntune_SMB
)
// DeviceManagementTemplateType undocumented
type DeviceManagementTemplateType string
const (
// DeviceManagementTemplateTypeVSecurityBaseline undocumented
DeviceManagementTemplateTypeVSecurityBaseline DeviceManagementTemplateType = "securityBaseline"
// DeviceManagementTemplateTypeVSpecializedDevices undocumented
DeviceManagementTemplateTypeVSpecializedDevices DeviceManagementTemplateType = "specializedDevices"
// DeviceManagementTemplateTypeVAdvancedThreatProtectionSecurityBaseline undocumented
DeviceManagementTemplateTypeVAdvancedThreatProtectionSecurityBaseline DeviceManagementTemplateType = "advancedThreatProtectionSecurityBaseline"
// DeviceManagementTemplateTypeVDeviceConfiguration undocumented
DeviceManagementTemplateTypeVDeviceConfiguration DeviceManagementTemplateType = "deviceConfiguration"
// DeviceManagementTemplateTypeVCustom undocumented
DeviceManagementTemplateTypeVCustom DeviceManagementTemplateType = "custom"
// DeviceManagementTemplateTypeVSecurityTemplate undocumented
DeviceManagementTemplateTypeVSecurityTemplate DeviceManagementTemplateType = "securityTemplate"
// DeviceManagementTemplateTypeVMicrosoftEdgeSecurityBaseline undocumented
DeviceManagementTemplateTypeVMicrosoftEdgeSecurityBaseline DeviceManagementTemplateType = "microsoftEdgeSecurityBaseline"
// DeviceManagementTemplateTypeVMicrosoftOffice365ProPlusSecurityBaseline undocumented
DeviceManagementTemplateTypeVMicrosoftOffice365ProPlusSecurityBaseline DeviceManagementTemplateType = "microsoftOffice365ProPlusSecurityBaseline"
)
var (
// DeviceManagementTemplateTypePSecurityBaseline is a pointer to DeviceManagementTemplateTypeVSecurityBaseline
DeviceManagementTemplateTypePSecurityBaseline = &_DeviceManagementTemplateTypePSecurityBaseline
// DeviceManagementTemplateTypePSpecializedDevices is a pointer to DeviceManagementTemplateTypeVSpecializedDevices
DeviceManagementTemplateTypePSpecializedDevices = &_DeviceManagementTemplateTypePSpecializedDevices
// DeviceManagementTemplateTypePAdvancedThreatProtectionSecurityBaseline is a pointer to DeviceManagementTemplateTypeVAdvancedThreatProtectionSecurityBaseline
DeviceManagementTemplateTypePAdvancedThreatProtectionSecurityBaseline = &_DeviceManagementTemplateTypePAdvancedThreatProtectionSecurityBaseline
// DeviceManagementTemplateTypePDeviceConfiguration is a pointer to DeviceManagementTemplateTypeVDeviceConfiguration
DeviceManagementTemplateTypePDeviceConfiguration = &_DeviceManagementTemplateTypePDeviceConfiguration
// DeviceManagementTemplateTypePCustom is a pointer to DeviceManagementTemplateTypeVCustom
DeviceManagementTemplateTypePCustom = &_DeviceManagementTemplateTypePCustom
// DeviceManagementTemplateTypePSecurityTemplate is a pointer to DeviceManagementTemplateTypeVSecurityTemplate
DeviceManagementTemplateTypePSecurityTemplate = &_DeviceManagementTemplateTypePSecurityTemplate
// DeviceManagementTemplateTypePMicrosoftEdgeSecurityBaseline is a pointer to DeviceManagementTemplateTypeVMicrosoftEdgeSecurityBaseline
DeviceManagementTemplateTypePMicrosoftEdgeSecurityBaseline = &_DeviceManagementTemplateTypePMicrosoftEdgeSecurityBaseline
// DeviceManagementTemplateTypePMicrosoftOffice365ProPlusSecurityBaseline is a pointer to DeviceManagementTemplateTypeVMicrosoftOffice365ProPlusSecurityBaseline
DeviceManagementTemplateTypePMicrosoftOffice365ProPlusSecurityBaseline = &_DeviceManagementTemplateTypePMicrosoftOffice365ProPlusSecurityBaseline
)
var (
_DeviceManagementTemplateTypePSecurityBaseline = DeviceManagementTemplateTypeVSecurityBaseline
_DeviceManagementTemplateTypePSpecializedDevices = DeviceManagementTemplateTypeVSpecializedDevices
_DeviceManagementTemplateTypePAdvancedThreatProtectionSecurityBaseline = DeviceManagementTemplateTypeVAdvancedThreatProtectionSecurityBaseline
_DeviceManagementTemplateTypePDeviceConfiguration = DeviceManagementTemplateTypeVDeviceConfiguration
_DeviceManagementTemplateTypePCustom = DeviceManagementTemplateTypeVCustom
_DeviceManagementTemplateTypePSecurityTemplate = DeviceManagementTemplateTypeVSecurityTemplate
_DeviceManagementTemplateTypePMicrosoftEdgeSecurityBaseline = DeviceManagementTemplateTypeVMicrosoftEdgeSecurityBaseline
_DeviceManagementTemplateTypePMicrosoftOffice365ProPlusSecurityBaseline = DeviceManagementTemplateTypeVMicrosoftOffice365ProPlusSecurityBaseline
)
// DeviceManangementIntentValueType undocumented
type DeviceManangementIntentValueType string
const (
// DeviceManangementIntentValueTypeVInteger undocumented
DeviceManangementIntentValueTypeVInteger DeviceManangementIntentValueType = "integer"
// DeviceManangementIntentValueTypeVBoolean undocumented
DeviceManangementIntentValueTypeVBoolean DeviceManangementIntentValueType = "boolean"
// DeviceManangementIntentValueTypeVString undocumented
DeviceManangementIntentValueTypeVString DeviceManangementIntentValueType = "string"
// DeviceManangementIntentValueTypeVComplex undocumented
DeviceManangementIntentValueTypeVComplex DeviceManangementIntentValueType = "complex"
// DeviceManangementIntentValueTypeVCollection undocumented
DeviceManangementIntentValueTypeVCollection DeviceManangementIntentValueType = "collection"
// DeviceManangementIntentValueTypeVAbstractComplex undocumented
DeviceManangementIntentValueTypeVAbstractComplex DeviceManangementIntentValueType = "abstractComplex"
)
var (
// DeviceManangementIntentValueTypePInteger is a pointer to DeviceManangementIntentValueTypeVInteger
DeviceManangementIntentValueTypePInteger = &_DeviceManangementIntentValueTypePInteger
// DeviceManangementIntentValueTypePBoolean is a pointer to DeviceManangementIntentValueTypeVBoolean
DeviceManangementIntentValueTypePBoolean = &_DeviceManangementIntentValueTypePBoolean
// DeviceManangementIntentValueTypePString is a pointer to DeviceManangementIntentValueTypeVString
DeviceManangementIntentValueTypePString = &_DeviceManangementIntentValueTypePString
// DeviceManangementIntentValueTypePComplex is a pointer to DeviceManangementIntentValueTypeVComplex
DeviceManangementIntentValueTypePComplex = &_DeviceManangementIntentValueTypePComplex
// DeviceManangementIntentValueTypePCollection is a pointer to DeviceManangementIntentValueTypeVCollection
DeviceManangementIntentValueTypePCollection = &_DeviceManangementIntentValueTypePCollection
// DeviceManangementIntentValueTypePAbstractComplex is a pointer to DeviceManangementIntentValueTypeVAbstractComplex
DeviceManangementIntentValueTypePAbstractComplex = &_DeviceManangementIntentValueTypePAbstractComplex
)
var (
_DeviceManangementIntentValueTypePInteger = DeviceManangementIntentValueTypeVInteger
_DeviceManangementIntentValueTypePBoolean = DeviceManangementIntentValueTypeVBoolean
_DeviceManangementIntentValueTypePString = DeviceManangementIntentValueTypeVString
_DeviceManangementIntentValueTypePComplex = DeviceManangementIntentValueTypeVComplex
_DeviceManangementIntentValueTypePCollection = DeviceManangementIntentValueTypeVCollection
_DeviceManangementIntentValueTypePAbstractComplex = DeviceManangementIntentValueTypeVAbstractComplex
)
// DevicePlatformType undocumented
type DevicePlatformType string
const (
// DevicePlatformTypeVAndroid undocumented
DevicePlatformTypeVAndroid DevicePlatformType = "android"
// DevicePlatformTypeVAndroidForWork undocumented
DevicePlatformTypeVAndroidForWork DevicePlatformType = "androidForWork"
// DevicePlatformTypeVIOS undocumented
DevicePlatformTypeVIOS DevicePlatformType = "iOS"
// DevicePlatformTypeVMacOS undocumented
DevicePlatformTypeVMacOS DevicePlatformType = "macOS"
// DevicePlatformTypeVWindowsPhone81 undocumented
DevicePlatformTypeVWindowsPhone81 DevicePlatformType = "windowsPhone81"
// DevicePlatformTypeVWindows81AndLater undocumented
DevicePlatformTypeVWindows81AndLater DevicePlatformType = "windows81AndLater"
// DevicePlatformTypeVWindows10AndLater undocumented
DevicePlatformTypeVWindows10AndLater DevicePlatformType = "windows10AndLater"
// DevicePlatformTypeVAndroidWorkProfile undocumented
DevicePlatformTypeVAndroidWorkProfile DevicePlatformType = "androidWorkProfile"
// DevicePlatformTypeVUnknown undocumented
DevicePlatformTypeVUnknown DevicePlatformType = "unknown"
)
var (
// DevicePlatformTypePAndroid is a pointer to DevicePlatformTypeVAndroid
DevicePlatformTypePAndroid = &_DevicePlatformTypePAndroid
// DevicePlatformTypePAndroidForWork is a pointer to DevicePlatformTypeVAndroidForWork
DevicePlatformTypePAndroidForWork = &_DevicePlatformTypePAndroidForWork
// DevicePlatformTypePIOS is a pointer to DevicePlatformTypeVIOS
DevicePlatformTypePIOS = &_DevicePlatformTypePIOS
// DevicePlatformTypePMacOS is a pointer to DevicePlatformTypeVMacOS
DevicePlatformTypePMacOS = &_DevicePlatformTypePMacOS
// DevicePlatformTypePWindowsPhone81 is a pointer to DevicePlatformTypeVWindowsPhone81
DevicePlatformTypePWindowsPhone81 = &_DevicePlatformTypePWindowsPhone81
// DevicePlatformTypePWindows81AndLater is a pointer to DevicePlatformTypeVWindows81AndLater
DevicePlatformTypePWindows81AndLater = &_DevicePlatformTypePWindows81AndLater
// DevicePlatformTypePWindows10AndLater is a pointer to DevicePlatformTypeVWindows10AndLater
DevicePlatformTypePWindows10AndLater = &_DevicePlatformTypePWindows10AndLater
// DevicePlatformTypePAndroidWorkProfile is a pointer to DevicePlatformTypeVAndroidWorkProfile
DevicePlatformTypePAndroidWorkProfile = &_DevicePlatformTypePAndroidWorkProfile
// DevicePlatformTypePUnknown is a pointer to DevicePlatformTypeVUnknown
DevicePlatformTypePUnknown = &_DevicePlatformTypePUnknown
)
var (
_DevicePlatformTypePAndroid = DevicePlatformTypeVAndroid
_DevicePlatformTypePAndroidForWork = DevicePlatformTypeVAndroidForWork
_DevicePlatformTypePIOS = DevicePlatformTypeVIOS
_DevicePlatformTypePMacOS = DevicePlatformTypeVMacOS
_DevicePlatformTypePWindowsPhone81 = DevicePlatformTypeVWindowsPhone81
_DevicePlatformTypePWindows81AndLater = DevicePlatformTypeVWindows81AndLater
_DevicePlatformTypePWindows10AndLater = DevicePlatformTypeVWindows10AndLater
_DevicePlatformTypePAndroidWorkProfile = DevicePlatformTypeVAndroidWorkProfile
_DevicePlatformTypePUnknown = DevicePlatformTypeVUnknown
)
// DeviceRegistrationState undocumented
type DeviceRegistrationState string
const (
// DeviceRegistrationStateVNotRegistered undocumented
DeviceRegistrationStateVNotRegistered DeviceRegistrationState = "notRegistered"
// DeviceRegistrationStateVRegistered undocumented
DeviceRegistrationStateVRegistered DeviceRegistrationState = "registered"
// DeviceRegistrationStateVRevoked undocumented
DeviceRegistrationStateVRevoked DeviceRegistrationState = "revoked"
// DeviceRegistrationStateVKeyConflict undocumented
DeviceRegistrationStateVKeyConflict DeviceRegistrationState = "keyConflict"
// DeviceRegistrationStateVApprovalPending undocumented
DeviceRegistrationStateVApprovalPending DeviceRegistrationState = "approvalPending"
// DeviceRegistrationStateVCertificateReset undocumented
DeviceRegistrationStateVCertificateReset DeviceRegistrationState = "certificateReset"
// DeviceRegistrationStateVNotRegisteredPendingEnrollment undocumented
DeviceRegistrationStateVNotRegisteredPendingEnrollment DeviceRegistrationState = "notRegisteredPendingEnrollment"
// DeviceRegistrationStateVUnknown undocumented
DeviceRegistrationStateVUnknown DeviceRegistrationState = "unknown"
)
var (
// DeviceRegistrationStatePNotRegistered is a pointer to DeviceRegistrationStateVNotRegistered
DeviceRegistrationStatePNotRegistered = &_DeviceRegistrationStatePNotRegistered
// DeviceRegistrationStatePRegistered is a pointer to DeviceRegistrationStateVRegistered
DeviceRegistrationStatePRegistered = &_DeviceRegistrationStatePRegistered
// DeviceRegistrationStatePRevoked is a pointer to DeviceRegistrationStateVRevoked
DeviceRegistrationStatePRevoked = &_DeviceRegistrationStatePRevoked
// DeviceRegistrationStatePKeyConflict is a pointer to DeviceRegistrationStateVKeyConflict
DeviceRegistrationStatePKeyConflict = &_DeviceRegistrationStatePKeyConflict
// DeviceRegistrationStatePApprovalPending is a pointer to DeviceRegistrationStateVApprovalPending
DeviceRegistrationStatePApprovalPending = &_DeviceRegistrationStatePApprovalPending
// DeviceRegistrationStatePCertificateReset is a pointer to DeviceRegistrationStateVCertificateReset
DeviceRegistrationStatePCertificateReset = &_DeviceRegistrationStatePCertificateReset
// DeviceRegistrationStatePNotRegisteredPendingEnrollment is a pointer to DeviceRegistrationStateVNotRegisteredPendingEnrollment
DeviceRegistrationStatePNotRegisteredPendingEnrollment = &_DeviceRegistrationStatePNotRegisteredPendingEnrollment
// DeviceRegistrationStatePUnknown is a pointer to DeviceRegistrationStateVUnknown
DeviceRegistrationStatePUnknown = &_DeviceRegistrationStatePUnknown
)
var (
_DeviceRegistrationStatePNotRegistered = DeviceRegistrationStateVNotRegistered
_DeviceRegistrationStatePRegistered = DeviceRegistrationStateVRegistered
_DeviceRegistrationStatePRevoked = DeviceRegistrationStateVRevoked
_DeviceRegistrationStatePKeyConflict = DeviceRegistrationStateVKeyConflict
_DeviceRegistrationStatePApprovalPending = DeviceRegistrationStateVApprovalPending
_DeviceRegistrationStatePCertificateReset = DeviceRegistrationStateVCertificateReset
_DeviceRegistrationStatePNotRegisteredPendingEnrollment = DeviceRegistrationStateVNotRegisteredPendingEnrollment
_DeviceRegistrationStatePUnknown = DeviceRegistrationStateVUnknown
)
// DeviceThreatProtectionLevel undocumented
type DeviceThreatProtectionLevel string
const (
// DeviceThreatProtectionLevelVUnavailable undocumented
DeviceThreatProtectionLevelVUnavailable DeviceThreatProtectionLevel = "unavailable"
// DeviceThreatProtectionLevelVSecured undocumented
DeviceThreatProtectionLevelVSecured DeviceThreatProtectionLevel = "secured"
// DeviceThreatProtectionLevelVLow undocumented
DeviceThreatProtectionLevelVLow DeviceThreatProtectionLevel = "low"
// DeviceThreatProtectionLevelVMedium undocumented
DeviceThreatProtectionLevelVMedium DeviceThreatProtectionLevel = "medium"
// DeviceThreatProtectionLevelVHigh undocumented
DeviceThreatProtectionLevelVHigh DeviceThreatProtectionLevel = "high"
// DeviceThreatProtectionLevelVNotSet undocumented
DeviceThreatProtectionLevelVNotSet DeviceThreatProtectionLevel = "notSet"
)
var (
// DeviceThreatProtectionLevelPUnavailable is a pointer to DeviceThreatProtectionLevelVUnavailable
DeviceThreatProtectionLevelPUnavailable = &_DeviceThreatProtectionLevelPUnavailable
// DeviceThreatProtectionLevelPSecured is a pointer to DeviceThreatProtectionLevelVSecured
DeviceThreatProtectionLevelPSecured = &_DeviceThreatProtectionLevelPSecured
// DeviceThreatProtectionLevelPLow is a pointer to DeviceThreatProtectionLevelVLow
DeviceThreatProtectionLevelPLow = &_DeviceThreatProtectionLevelPLow
// DeviceThreatProtectionLevelPMedium is a pointer to DeviceThreatProtectionLevelVMedium
DeviceThreatProtectionLevelPMedium = &_DeviceThreatProtectionLevelPMedium
// DeviceThreatProtectionLevelPHigh is a pointer to DeviceThreatProtectionLevelVHigh
DeviceThreatProtectionLevelPHigh = &_DeviceThreatProtectionLevelPHigh
// DeviceThreatProtectionLevelPNotSet is a pointer to DeviceThreatProtectionLevelVNotSet
DeviceThreatProtectionLevelPNotSet = &_DeviceThreatProtectionLevelPNotSet
)
var (
_DeviceThreatProtectionLevelPUnavailable = DeviceThreatProtectionLevelVUnavailable
_DeviceThreatProtectionLevelPSecured = DeviceThreatProtectionLevelVSecured
_DeviceThreatProtectionLevelPLow = DeviceThreatProtectionLevelVLow
_DeviceThreatProtectionLevelPMedium = DeviceThreatProtectionLevelVMedium
_DeviceThreatProtectionLevelPHigh = DeviceThreatProtectionLevelVHigh
_DeviceThreatProtectionLevelPNotSet = DeviceThreatProtectionLevelVNotSet
)
// DeviceType undocumented
type DeviceType string
const (
// DeviceTypeVDesktop undocumented
DeviceTypeVDesktop DeviceType = "desktop"
// DeviceTypeVWindowsRT undocumented
DeviceTypeVWindowsRT DeviceType = "windowsRT"
// DeviceTypeVWinMO6 undocumented
DeviceTypeVWinMO6 DeviceType = "winMO6"
// DeviceTypeVNokia undocumented
DeviceTypeVNokia DeviceType = "nokia"
// DeviceTypeVWindowsPhone undocumented
DeviceTypeVWindowsPhone DeviceType = "windowsPhone"
// DeviceTypeVMac undocumented
DeviceTypeVMac DeviceType = "mac"
// DeviceTypeVWinCE undocumented
DeviceTypeVWinCE DeviceType = "winCE"
// DeviceTypeVWinEmbedded undocumented
DeviceTypeVWinEmbedded DeviceType = "winEmbedded"
// DeviceTypeVIPhone undocumented
DeviceTypeVIPhone DeviceType = "iPhone"
// DeviceTypeVIPad undocumented
DeviceTypeVIPad DeviceType = "iPad"
// DeviceTypeVIPod undocumented
DeviceTypeVIPod DeviceType = "iPod"
// DeviceTypeVAndroid undocumented
DeviceTypeVAndroid DeviceType = "android"
// DeviceTypeVISocConsumer undocumented
DeviceTypeVISocConsumer DeviceType = "iSocConsumer"
// DeviceTypeVUnix undocumented
DeviceTypeVUnix DeviceType = "unix"
// DeviceTypeVMacMDM undocumented
DeviceTypeVMacMDM DeviceType = "macMDM"
// DeviceTypeVHoloLens undocumented
DeviceTypeVHoloLens DeviceType = "holoLens"
// DeviceTypeVSurfaceHub undocumented
DeviceTypeVSurfaceHub DeviceType = "surfaceHub"
// DeviceTypeVAndroidForWork undocumented
DeviceTypeVAndroidForWork DeviceType = "androidForWork"
// DeviceTypeVAndroidEnterprise undocumented
DeviceTypeVAndroidEnterprise DeviceType = "androidEnterprise"
// DeviceTypeVBlackberry undocumented
DeviceTypeVBlackberry DeviceType = "blackberry"
// DeviceTypeVPalm undocumented
DeviceTypeVPalm DeviceType = "palm"
// DeviceTypeVUnknown undocumented
DeviceTypeVUnknown DeviceType = "unknown"
)
var (
// DeviceTypePDesktop is a pointer to DeviceTypeVDesktop
DeviceTypePDesktop = &_DeviceTypePDesktop
// DeviceTypePWindowsRT is a pointer to DeviceTypeVWindowsRT
DeviceTypePWindowsRT = &_DeviceTypePWindowsRT
// DeviceTypePWinMO6 is a pointer to DeviceTypeVWinMO6
DeviceTypePWinMO6 = &_DeviceTypePWinMO6
// DeviceTypePNokia is a pointer to DeviceTypeVNokia
DeviceTypePNokia = &_DeviceTypePNokia
// DeviceTypePWindowsPhone is a pointer to DeviceTypeVWindowsPhone
DeviceTypePWindowsPhone = &_DeviceTypePWindowsPhone
// DeviceTypePMac is a pointer to DeviceTypeVMac
DeviceTypePMac = &_DeviceTypePMac
// DeviceTypePWinCE is a pointer to DeviceTypeVWinCE
DeviceTypePWinCE = &_DeviceTypePWinCE
// DeviceTypePWinEmbedded is a pointer to DeviceTypeVWinEmbedded
DeviceTypePWinEmbedded = &_DeviceTypePWinEmbedded
// DeviceTypePIPhone is a pointer to DeviceTypeVIPhone
DeviceTypePIPhone = &_DeviceTypePIPhone
// DeviceTypePIPad is a pointer to DeviceTypeVIPad
DeviceTypePIPad = &_DeviceTypePIPad
// DeviceTypePIPod is a pointer to DeviceTypeVIPod
DeviceTypePIPod = &_DeviceTypePIPod
// DeviceTypePAndroid is a pointer to DeviceTypeVAndroid
DeviceTypePAndroid = &_DeviceTypePAndroid
// DeviceTypePISocConsumer is a pointer to DeviceTypeVISocConsumer
DeviceTypePISocConsumer = &_DeviceTypePISocConsumer
// DeviceTypePUnix is a pointer to DeviceTypeVUnix
DeviceTypePUnix = &_DeviceTypePUnix
// DeviceTypePMacMDM is a pointer to DeviceTypeVMacMDM
DeviceTypePMacMDM = &_DeviceTypePMacMDM
// DeviceTypePHoloLens is a pointer to DeviceTypeVHoloLens
DeviceTypePHoloLens = &_DeviceTypePHoloLens
// DeviceTypePSurfaceHub is a pointer to DeviceTypeVSurfaceHub
DeviceTypePSurfaceHub = &_DeviceTypePSurfaceHub
// DeviceTypePAndroidForWork is a pointer to DeviceTypeVAndroidForWork
DeviceTypePAndroidForWork = &_DeviceTypePAndroidForWork
// DeviceTypePAndroidEnterprise is a pointer to DeviceTypeVAndroidEnterprise
DeviceTypePAndroidEnterprise = &_DeviceTypePAndroidEnterprise
// DeviceTypePBlackberry is a pointer to DeviceTypeVBlackberry
DeviceTypePBlackberry = &_DeviceTypePBlackberry
// DeviceTypePPalm is a pointer to DeviceTypeVPalm
DeviceTypePPalm = &_DeviceTypePPalm
// DeviceTypePUnknown is a pointer to DeviceTypeVUnknown
DeviceTypePUnknown = &_DeviceTypePUnknown
)
var (
_DeviceTypePDesktop = DeviceTypeVDesktop
_DeviceTypePWindowsRT = DeviceTypeVWindowsRT
_DeviceTypePWinMO6 = DeviceTypeVWinMO6
_DeviceTypePNokia = DeviceTypeVNokia
_DeviceTypePWindowsPhone = DeviceTypeVWindowsPhone
_DeviceTypePMac = DeviceTypeVMac
_DeviceTypePWinCE = DeviceTypeVWinCE
_DeviceTypePWinEmbedded = DeviceTypeVWinEmbedded
_DeviceTypePIPhone = DeviceTypeVIPhone
_DeviceTypePIPad = DeviceTypeVIPad
_DeviceTypePIPod = DeviceTypeVIPod
_DeviceTypePAndroid = DeviceTypeVAndroid
_DeviceTypePISocConsumer = DeviceTypeVISocConsumer
_DeviceTypePUnix = DeviceTypeVUnix
_DeviceTypePMacMDM = DeviceTypeVMacMDM
_DeviceTypePHoloLens = DeviceTypeVHoloLens
_DeviceTypePSurfaceHub = DeviceTypeVSurfaceHub
_DeviceTypePAndroidForWork = DeviceTypeVAndroidForWork
_DeviceTypePAndroidEnterprise = DeviceTypeVAndroidEnterprise
_DeviceTypePBlackberry = DeviceTypeVBlackberry
_DeviceTypePPalm = DeviceTypeVPalm
_DeviceTypePUnknown = DeviceTypeVUnknown
)
// DeviceTypes undocumented
type DeviceTypes string
const (
// DeviceTypesVDesktop undocumented
DeviceTypesVDesktop DeviceTypes = "desktop"
// DeviceTypesVWindowsRT undocumented
DeviceTypesVWindowsRT DeviceTypes = "windowsRT"
// DeviceTypesVWinMO6 undocumented
DeviceTypesVWinMO6 DeviceTypes = "winMO6"
// DeviceTypesVNokia undocumented
DeviceTypesVNokia DeviceTypes = "nokia"
// DeviceTypesVWindowsPhone undocumented
DeviceTypesVWindowsPhone DeviceTypes = "windowsPhone"
// DeviceTypesVMac undocumented
DeviceTypesVMac DeviceTypes = "mac"
// DeviceTypesVWinCE undocumented
DeviceTypesVWinCE DeviceTypes = "winCE"
// DeviceTypesVWinEmbedded undocumented
DeviceTypesVWinEmbedded DeviceTypes = "winEmbedded"
// DeviceTypesVIPhone undocumented
DeviceTypesVIPhone DeviceTypes = "iPhone"
// DeviceTypesVIPad undocumented
DeviceTypesVIPad DeviceTypes = "iPad"
// DeviceTypesVIPod undocumented
DeviceTypesVIPod DeviceTypes = "iPod"
// DeviceTypesVAndroid undocumented
DeviceTypesVAndroid DeviceTypes = "android"
// DeviceTypesVISocConsumer undocumented
DeviceTypesVISocConsumer DeviceTypes = "iSocConsumer"
// DeviceTypesVUnix undocumented
DeviceTypesVUnix DeviceTypes = "unix"
// DeviceTypesVMacMDM undocumented
DeviceTypesVMacMDM DeviceTypes = "macMDM"
// DeviceTypesVHoloLens undocumented
DeviceTypesVHoloLens DeviceTypes = "holoLens"
// DeviceTypesVSurfaceHub undocumented
DeviceTypesVSurfaceHub DeviceTypes = "surfaceHub"
// DeviceTypesVAndroidForWork undocumented
DeviceTypesVAndroidForWork DeviceTypes = "androidForWork"
// DeviceTypesVAndroidEnterprise undocumented
DeviceTypesVAndroidEnterprise DeviceTypes = "androidEnterprise"
// DeviceTypesVBlackberry undocumented
DeviceTypesVBlackberry DeviceTypes = "blackberry"
// DeviceTypesVPalm undocumented
DeviceTypesVPalm DeviceTypes = "palm"
// DeviceTypesVUnknown undocumented
DeviceTypesVUnknown DeviceTypes = "unknown"
)
var (
// DeviceTypesPDesktop is a pointer to DeviceTypesVDesktop
DeviceTypesPDesktop = &_DeviceTypesPDesktop
// DeviceTypesPWindowsRT is a pointer to DeviceTypesVWindowsRT
DeviceTypesPWindowsRT = &_DeviceTypesPWindowsRT
// DeviceTypesPWinMO6 is a pointer to DeviceTypesVWinMO6
DeviceTypesPWinMO6 = &_DeviceTypesPWinMO6
// DeviceTypesPNokia is a pointer to DeviceTypesVNokia
DeviceTypesPNokia = &_DeviceTypesPNokia
// DeviceTypesPWindowsPhone is a pointer to DeviceTypesVWindowsPhone
DeviceTypesPWindowsPhone = &_DeviceTypesPWindowsPhone
// DeviceTypesPMac is a pointer to DeviceTypesVMac
DeviceTypesPMac = &_DeviceTypesPMac
// DeviceTypesPWinCE is a pointer to DeviceTypesVWinCE
DeviceTypesPWinCE = &_DeviceTypesPWinCE
// DeviceTypesPWinEmbedded is a pointer to DeviceTypesVWinEmbedded
DeviceTypesPWinEmbedded = &_DeviceTypesPWinEmbedded
// DeviceTypesPIPhone is a pointer to DeviceTypesVIPhone
DeviceTypesPIPhone = &_DeviceTypesPIPhone
// DeviceTypesPIPad is a pointer to DeviceTypesVIPad
DeviceTypesPIPad = &_DeviceTypesPIPad
// DeviceTypesPIPod is a pointer to DeviceTypesVIPod
DeviceTypesPIPod = &_DeviceTypesPIPod
// DeviceTypesPAndroid is a pointer to DeviceTypesVAndroid
DeviceTypesPAndroid = &_DeviceTypesPAndroid
// DeviceTypesPISocConsumer is a pointer to DeviceTypesVISocConsumer
DeviceTypesPISocConsumer = &_DeviceTypesPISocConsumer
// DeviceTypesPUnix is a pointer to DeviceTypesVUnix
DeviceTypesPUnix = &_DeviceTypesPUnix
// DeviceTypesPMacMDM is a pointer to DeviceTypesVMacMDM
DeviceTypesPMacMDM = &_DeviceTypesPMacMDM
// DeviceTypesPHoloLens is a pointer to DeviceTypesVHoloLens
DeviceTypesPHoloLens = &_DeviceTypesPHoloLens
// DeviceTypesPSurfaceHub is a pointer to DeviceTypesVSurfaceHub
DeviceTypesPSurfaceHub = &_DeviceTypesPSurfaceHub
// DeviceTypesPAndroidForWork is a pointer to DeviceTypesVAndroidForWork
DeviceTypesPAndroidForWork = &_DeviceTypesPAndroidForWork
// DeviceTypesPAndroidEnterprise is a pointer to DeviceTypesVAndroidEnterprise
DeviceTypesPAndroidEnterprise = &_DeviceTypesPAndroidEnterprise
// DeviceTypesPBlackberry is a pointer to DeviceTypesVBlackberry
DeviceTypesPBlackberry = &_DeviceTypesPBlackberry
// DeviceTypesPPalm is a pointer to DeviceTypesVPalm
DeviceTypesPPalm = &_DeviceTypesPPalm
// DeviceTypesPUnknown is a pointer to DeviceTypesVUnknown
DeviceTypesPUnknown = &_DeviceTypesPUnknown
)
var (
_DeviceTypesPDesktop = DeviceTypesVDesktop
_DeviceTypesPWindowsRT = DeviceTypesVWindowsRT
_DeviceTypesPWinMO6 = DeviceTypesVWinMO6
_DeviceTypesPNokia = DeviceTypesVNokia
_DeviceTypesPWindowsPhone = DeviceTypesVWindowsPhone
_DeviceTypesPMac = DeviceTypesVMac
_DeviceTypesPWinCE = DeviceTypesVWinCE
_DeviceTypesPWinEmbedded = DeviceTypesVWinEmbedded
_DeviceTypesPIPhone = DeviceTypesVIPhone
_DeviceTypesPIPad = DeviceTypesVIPad
_DeviceTypesPIPod = DeviceTypesVIPod
_DeviceTypesPAndroid = DeviceTypesVAndroid
_DeviceTypesPISocConsumer = DeviceTypesVISocConsumer
_DeviceTypesPUnix = DeviceTypesVUnix
_DeviceTypesPMacMDM = DeviceTypesVMacMDM
_DeviceTypesPHoloLens = DeviceTypesVHoloLens
_DeviceTypesPSurfaceHub = DeviceTypesVSurfaceHub
_DeviceTypesPAndroidForWork = DeviceTypesVAndroidForWork
_DeviceTypesPAndroidEnterprise = DeviceTypesVAndroidEnterprise
_DeviceTypesPBlackberry = DeviceTypesVBlackberry
_DeviceTypesPPalm = DeviceTypesVPalm
_DeviceTypesPUnknown = DeviceTypesVUnknown
)
|