blob: a09beade78a3da0f42cbf278d59b4d595d6bee1b (
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
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// WindowsAppStartLayoutTileSize undocumented
type WindowsAppStartLayoutTileSize string
const (
// WindowsAppStartLayoutTileSizeVHidden undocumented
WindowsAppStartLayoutTileSizeVHidden WindowsAppStartLayoutTileSize = "hidden"
// WindowsAppStartLayoutTileSizeVSmall undocumented
WindowsAppStartLayoutTileSizeVSmall WindowsAppStartLayoutTileSize = "small"
// WindowsAppStartLayoutTileSizeVMedium undocumented
WindowsAppStartLayoutTileSizeVMedium WindowsAppStartLayoutTileSize = "medium"
// WindowsAppStartLayoutTileSizeVWide undocumented
WindowsAppStartLayoutTileSizeVWide WindowsAppStartLayoutTileSize = "wide"
// WindowsAppStartLayoutTileSizeVLarge undocumented
WindowsAppStartLayoutTileSizeVLarge WindowsAppStartLayoutTileSize = "large"
)
var (
// WindowsAppStartLayoutTileSizePHidden is a pointer to WindowsAppStartLayoutTileSizeVHidden
WindowsAppStartLayoutTileSizePHidden = &_WindowsAppStartLayoutTileSizePHidden
// WindowsAppStartLayoutTileSizePSmall is a pointer to WindowsAppStartLayoutTileSizeVSmall
WindowsAppStartLayoutTileSizePSmall = &_WindowsAppStartLayoutTileSizePSmall
// WindowsAppStartLayoutTileSizePMedium is a pointer to WindowsAppStartLayoutTileSizeVMedium
WindowsAppStartLayoutTileSizePMedium = &_WindowsAppStartLayoutTileSizePMedium
// WindowsAppStartLayoutTileSizePWide is a pointer to WindowsAppStartLayoutTileSizeVWide
WindowsAppStartLayoutTileSizePWide = &_WindowsAppStartLayoutTileSizePWide
// WindowsAppStartLayoutTileSizePLarge is a pointer to WindowsAppStartLayoutTileSizeVLarge
WindowsAppStartLayoutTileSizePLarge = &_WindowsAppStartLayoutTileSizePLarge
)
var (
_WindowsAppStartLayoutTileSizePHidden = WindowsAppStartLayoutTileSizeVHidden
_WindowsAppStartLayoutTileSizePSmall = WindowsAppStartLayoutTileSizeVSmall
_WindowsAppStartLayoutTileSizePMedium = WindowsAppStartLayoutTileSizeVMedium
_WindowsAppStartLayoutTileSizePWide = WindowsAppStartLayoutTileSizeVWide
_WindowsAppStartLayoutTileSizePLarge = WindowsAppStartLayoutTileSizeVLarge
)
// WindowsArchitecture undocumented
type WindowsArchitecture string
const (
// WindowsArchitectureVNone undocumented
WindowsArchitectureVNone WindowsArchitecture = "none"
// WindowsArchitectureVX86 undocumented
WindowsArchitectureVX86 WindowsArchitecture = "x86"
// WindowsArchitectureVX64 undocumented
WindowsArchitectureVX64 WindowsArchitecture = "x64"
// WindowsArchitectureVArm undocumented
WindowsArchitectureVArm WindowsArchitecture = "arm"
// WindowsArchitectureVNeutral undocumented
WindowsArchitectureVNeutral WindowsArchitecture = "neutral"
// WindowsArchitectureVArm64 undocumented
WindowsArchitectureVArm64 WindowsArchitecture = "arm64"
)
var (
// WindowsArchitecturePNone is a pointer to WindowsArchitectureVNone
WindowsArchitecturePNone = &_WindowsArchitecturePNone
// WindowsArchitecturePX86 is a pointer to WindowsArchitectureVX86
WindowsArchitecturePX86 = &_WindowsArchitecturePX86
// WindowsArchitecturePX64 is a pointer to WindowsArchitectureVX64
WindowsArchitecturePX64 = &_WindowsArchitecturePX64
// WindowsArchitecturePArm is a pointer to WindowsArchitectureVArm
WindowsArchitecturePArm = &_WindowsArchitecturePArm
// WindowsArchitecturePNeutral is a pointer to WindowsArchitectureVNeutral
WindowsArchitecturePNeutral = &_WindowsArchitecturePNeutral
// WindowsArchitecturePArm64 is a pointer to WindowsArchitectureVArm64
WindowsArchitecturePArm64 = &_WindowsArchitecturePArm64
)
var (
_WindowsArchitecturePNone = WindowsArchitectureVNone
_WindowsArchitecturePX86 = WindowsArchitectureVX86
_WindowsArchitecturePX64 = WindowsArchitectureVX64
_WindowsArchitecturePArm = WindowsArchitectureVArm
_WindowsArchitecturePNeutral = WindowsArchitectureVNeutral
_WindowsArchitecturePArm64 = WindowsArchitectureVArm64
)
// WindowsAutopilotDeploymentState undocumented
type WindowsAutopilotDeploymentState string
const (
// WindowsAutopilotDeploymentStateVUnknown undocumented
WindowsAutopilotDeploymentStateVUnknown WindowsAutopilotDeploymentState = "unknown"
// WindowsAutopilotDeploymentStateVSuccess undocumented
WindowsAutopilotDeploymentStateVSuccess WindowsAutopilotDeploymentState = "success"
// WindowsAutopilotDeploymentStateVInProgress undocumented
WindowsAutopilotDeploymentStateVInProgress WindowsAutopilotDeploymentState = "inProgress"
// WindowsAutopilotDeploymentStateVFailure undocumented
WindowsAutopilotDeploymentStateVFailure WindowsAutopilotDeploymentState = "failure"
// WindowsAutopilotDeploymentStateVSuccessWithTimeout undocumented
WindowsAutopilotDeploymentStateVSuccessWithTimeout WindowsAutopilotDeploymentState = "successWithTimeout"
)
var (
// WindowsAutopilotDeploymentStatePUnknown is a pointer to WindowsAutopilotDeploymentStateVUnknown
WindowsAutopilotDeploymentStatePUnknown = &_WindowsAutopilotDeploymentStatePUnknown
// WindowsAutopilotDeploymentStatePSuccess is a pointer to WindowsAutopilotDeploymentStateVSuccess
WindowsAutopilotDeploymentStatePSuccess = &_WindowsAutopilotDeploymentStatePSuccess
// WindowsAutopilotDeploymentStatePInProgress is a pointer to WindowsAutopilotDeploymentStateVInProgress
WindowsAutopilotDeploymentStatePInProgress = &_WindowsAutopilotDeploymentStatePInProgress
// WindowsAutopilotDeploymentStatePFailure is a pointer to WindowsAutopilotDeploymentStateVFailure
WindowsAutopilotDeploymentStatePFailure = &_WindowsAutopilotDeploymentStatePFailure
// WindowsAutopilotDeploymentStatePSuccessWithTimeout is a pointer to WindowsAutopilotDeploymentStateVSuccessWithTimeout
WindowsAutopilotDeploymentStatePSuccessWithTimeout = &_WindowsAutopilotDeploymentStatePSuccessWithTimeout
)
var (
_WindowsAutopilotDeploymentStatePUnknown = WindowsAutopilotDeploymentStateVUnknown
_WindowsAutopilotDeploymentStatePSuccess = WindowsAutopilotDeploymentStateVSuccess
_WindowsAutopilotDeploymentStatePInProgress = WindowsAutopilotDeploymentStateVInProgress
_WindowsAutopilotDeploymentStatePFailure = WindowsAutopilotDeploymentStateVFailure
_WindowsAutopilotDeploymentStatePSuccessWithTimeout = WindowsAutopilotDeploymentStateVSuccessWithTimeout
)
// WindowsAutopilotDeviceType undocumented
type WindowsAutopilotDeviceType string
const (
// WindowsAutopilotDeviceTypeVWindowsPc undocumented
WindowsAutopilotDeviceTypeVWindowsPc WindowsAutopilotDeviceType = "windowsPc"
// WindowsAutopilotDeviceTypeVSurfaceHub2 undocumented
WindowsAutopilotDeviceTypeVSurfaceHub2 WindowsAutopilotDeviceType = "surfaceHub2"
)
var (
// WindowsAutopilotDeviceTypePWindowsPc is a pointer to WindowsAutopilotDeviceTypeVWindowsPc
WindowsAutopilotDeviceTypePWindowsPc = &_WindowsAutopilotDeviceTypePWindowsPc
// WindowsAutopilotDeviceTypePSurfaceHub2 is a pointer to WindowsAutopilotDeviceTypeVSurfaceHub2
WindowsAutopilotDeviceTypePSurfaceHub2 = &_WindowsAutopilotDeviceTypePSurfaceHub2
)
var (
_WindowsAutopilotDeviceTypePWindowsPc = WindowsAutopilotDeviceTypeVWindowsPc
_WindowsAutopilotDeviceTypePSurfaceHub2 = WindowsAutopilotDeviceTypeVSurfaceHub2
)
// WindowsAutopilotEnrollmentType undocumented
type WindowsAutopilotEnrollmentType string
const (
// WindowsAutopilotEnrollmentTypeVUnknown undocumented
WindowsAutopilotEnrollmentTypeVUnknown WindowsAutopilotEnrollmentType = "unknown"
// WindowsAutopilotEnrollmentTypeVAzureADJoinedWithAutopilotProfile undocumented
WindowsAutopilotEnrollmentTypeVAzureADJoinedWithAutopilotProfile WindowsAutopilotEnrollmentType = "azureADJoinedWithAutopilotProfile"
// WindowsAutopilotEnrollmentTypeVOfflineDomainJoined undocumented
WindowsAutopilotEnrollmentTypeVOfflineDomainJoined WindowsAutopilotEnrollmentType = "offlineDomainJoined"
// WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithAutopilotProfile undocumented
WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithAutopilotProfile WindowsAutopilotEnrollmentType = "azureADJoinedUsingDeviceAuthWithAutopilotProfile"
// WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile undocumented
WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile WindowsAutopilotEnrollmentType = "azureADJoinedUsingDeviceAuthWithoutAutopilotProfile"
// WindowsAutopilotEnrollmentTypeVAzureADJoinedWithOfflineAutopilotProfile undocumented
WindowsAutopilotEnrollmentTypeVAzureADJoinedWithOfflineAutopilotProfile WindowsAutopilotEnrollmentType = "azureADJoinedWithOfflineAutopilotProfile"
// WindowsAutopilotEnrollmentTypeVAzureADJoinedWithWhiteGlove undocumented
WindowsAutopilotEnrollmentTypeVAzureADJoinedWithWhiteGlove WindowsAutopilotEnrollmentType = "azureADJoinedWithWhiteGlove"
// WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithWhiteGlove undocumented
WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithWhiteGlove WindowsAutopilotEnrollmentType = "offlineDomainJoinedWithWhiteGlove"
// WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithOfflineAutopilotProfile undocumented
WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithOfflineAutopilotProfile WindowsAutopilotEnrollmentType = "offlineDomainJoinedWithOfflineAutopilotProfile"
)
var (
// WindowsAutopilotEnrollmentTypePUnknown is a pointer to WindowsAutopilotEnrollmentTypeVUnknown
WindowsAutopilotEnrollmentTypePUnknown = &_WindowsAutopilotEnrollmentTypePUnknown
// WindowsAutopilotEnrollmentTypePAzureADJoinedWithAutopilotProfile is a pointer to WindowsAutopilotEnrollmentTypeVAzureADJoinedWithAutopilotProfile
WindowsAutopilotEnrollmentTypePAzureADJoinedWithAutopilotProfile = &_WindowsAutopilotEnrollmentTypePAzureADJoinedWithAutopilotProfile
// WindowsAutopilotEnrollmentTypePOfflineDomainJoined is a pointer to WindowsAutopilotEnrollmentTypeVOfflineDomainJoined
WindowsAutopilotEnrollmentTypePOfflineDomainJoined = &_WindowsAutopilotEnrollmentTypePOfflineDomainJoined
// WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithAutopilotProfile is a pointer to WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithAutopilotProfile
WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithAutopilotProfile = &_WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithAutopilotProfile
// WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile is a pointer to WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile
WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile = &_WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile
// WindowsAutopilotEnrollmentTypePAzureADJoinedWithOfflineAutopilotProfile is a pointer to WindowsAutopilotEnrollmentTypeVAzureADJoinedWithOfflineAutopilotProfile
WindowsAutopilotEnrollmentTypePAzureADJoinedWithOfflineAutopilotProfile = &_WindowsAutopilotEnrollmentTypePAzureADJoinedWithOfflineAutopilotProfile
// WindowsAutopilotEnrollmentTypePAzureADJoinedWithWhiteGlove is a pointer to WindowsAutopilotEnrollmentTypeVAzureADJoinedWithWhiteGlove
WindowsAutopilotEnrollmentTypePAzureADJoinedWithWhiteGlove = &_WindowsAutopilotEnrollmentTypePAzureADJoinedWithWhiteGlove
// WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithWhiteGlove is a pointer to WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithWhiteGlove
WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithWhiteGlove = &_WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithWhiteGlove
// WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithOfflineAutopilotProfile is a pointer to WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithOfflineAutopilotProfile
WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithOfflineAutopilotProfile = &_WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithOfflineAutopilotProfile
)
var (
_WindowsAutopilotEnrollmentTypePUnknown = WindowsAutopilotEnrollmentTypeVUnknown
_WindowsAutopilotEnrollmentTypePAzureADJoinedWithAutopilotProfile = WindowsAutopilotEnrollmentTypeVAzureADJoinedWithAutopilotProfile
_WindowsAutopilotEnrollmentTypePOfflineDomainJoined = WindowsAutopilotEnrollmentTypeVOfflineDomainJoined
_WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithAutopilotProfile = WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithAutopilotProfile
_WindowsAutopilotEnrollmentTypePAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile = WindowsAutopilotEnrollmentTypeVAzureADJoinedUsingDeviceAuthWithoutAutopilotProfile
_WindowsAutopilotEnrollmentTypePAzureADJoinedWithOfflineAutopilotProfile = WindowsAutopilotEnrollmentTypeVAzureADJoinedWithOfflineAutopilotProfile
_WindowsAutopilotEnrollmentTypePAzureADJoinedWithWhiteGlove = WindowsAutopilotEnrollmentTypeVAzureADJoinedWithWhiteGlove
_WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithWhiteGlove = WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithWhiteGlove
_WindowsAutopilotEnrollmentTypePOfflineDomainJoinedWithOfflineAutopilotProfile = WindowsAutopilotEnrollmentTypeVOfflineDomainJoinedWithOfflineAutopilotProfile
)
// WindowsAutopilotProfileAssignmentDetailedStatus undocumented
type WindowsAutopilotProfileAssignmentDetailedStatus string
const (
// WindowsAutopilotProfileAssignmentDetailedStatusVNone undocumented
WindowsAutopilotProfileAssignmentDetailedStatusVNone WindowsAutopilotProfileAssignmentDetailedStatus = "none"
// WindowsAutopilotProfileAssignmentDetailedStatusVHardwareRequirementsNotMet undocumented
WindowsAutopilotProfileAssignmentDetailedStatusVHardwareRequirementsNotMet WindowsAutopilotProfileAssignmentDetailedStatus = "hardwareRequirementsNotMet"
)
var (
// WindowsAutopilotProfileAssignmentDetailedStatusPNone is a pointer to WindowsAutopilotProfileAssignmentDetailedStatusVNone
WindowsAutopilotProfileAssignmentDetailedStatusPNone = &_WindowsAutopilotProfileAssignmentDetailedStatusPNone
// WindowsAutopilotProfileAssignmentDetailedStatusPHardwareRequirementsNotMet is a pointer to WindowsAutopilotProfileAssignmentDetailedStatusVHardwareRequirementsNotMet
WindowsAutopilotProfileAssignmentDetailedStatusPHardwareRequirementsNotMet = &_WindowsAutopilotProfileAssignmentDetailedStatusPHardwareRequirementsNotMet
)
var (
_WindowsAutopilotProfileAssignmentDetailedStatusPNone = WindowsAutopilotProfileAssignmentDetailedStatusVNone
_WindowsAutopilotProfileAssignmentDetailedStatusPHardwareRequirementsNotMet = WindowsAutopilotProfileAssignmentDetailedStatusVHardwareRequirementsNotMet
)
// WindowsAutopilotProfileAssignmentStatus undocumented
type WindowsAutopilotProfileAssignmentStatus string
const (
// WindowsAutopilotProfileAssignmentStatusVUnknown undocumented
WindowsAutopilotProfileAssignmentStatusVUnknown WindowsAutopilotProfileAssignmentStatus = "unknown"
// WindowsAutopilotProfileAssignmentStatusVAssignedInSync undocumented
WindowsAutopilotProfileAssignmentStatusVAssignedInSync WindowsAutopilotProfileAssignmentStatus = "assignedInSync"
// WindowsAutopilotProfileAssignmentStatusVAssignedOutOfSync undocumented
WindowsAutopilotProfileAssignmentStatusVAssignedOutOfSync WindowsAutopilotProfileAssignmentStatus = "assignedOutOfSync"
// WindowsAutopilotProfileAssignmentStatusVAssignedUnkownSyncState undocumented
WindowsAutopilotProfileAssignmentStatusVAssignedUnkownSyncState WindowsAutopilotProfileAssignmentStatus = "assignedUnkownSyncState"
// WindowsAutopilotProfileAssignmentStatusVNotAssigned undocumented
WindowsAutopilotProfileAssignmentStatusVNotAssigned WindowsAutopilotProfileAssignmentStatus = "notAssigned"
// WindowsAutopilotProfileAssignmentStatusVPending undocumented
WindowsAutopilotProfileAssignmentStatusVPending WindowsAutopilotProfileAssignmentStatus = "pending"
// WindowsAutopilotProfileAssignmentStatusVFailed undocumented
WindowsAutopilotProfileAssignmentStatusVFailed WindowsAutopilotProfileAssignmentStatus = "failed"
)
var (
// WindowsAutopilotProfileAssignmentStatusPUnknown is a pointer to WindowsAutopilotProfileAssignmentStatusVUnknown
WindowsAutopilotProfileAssignmentStatusPUnknown = &_WindowsAutopilotProfileAssignmentStatusPUnknown
// WindowsAutopilotProfileAssignmentStatusPAssignedInSync is a pointer to WindowsAutopilotProfileAssignmentStatusVAssignedInSync
WindowsAutopilotProfileAssignmentStatusPAssignedInSync = &_WindowsAutopilotProfileAssignmentStatusPAssignedInSync
// WindowsAutopilotProfileAssignmentStatusPAssignedOutOfSync is a pointer to WindowsAutopilotProfileAssignmentStatusVAssignedOutOfSync
WindowsAutopilotProfileAssignmentStatusPAssignedOutOfSync = &_WindowsAutopilotProfileAssignmentStatusPAssignedOutOfSync
// WindowsAutopilotProfileAssignmentStatusPAssignedUnkownSyncState is a pointer to WindowsAutopilotProfileAssignmentStatusVAssignedUnkownSyncState
WindowsAutopilotProfileAssignmentStatusPAssignedUnkownSyncState = &_WindowsAutopilotProfileAssignmentStatusPAssignedUnkownSyncState
// WindowsAutopilotProfileAssignmentStatusPNotAssigned is a pointer to WindowsAutopilotProfileAssignmentStatusVNotAssigned
WindowsAutopilotProfileAssignmentStatusPNotAssigned = &_WindowsAutopilotProfileAssignmentStatusPNotAssigned
// WindowsAutopilotProfileAssignmentStatusPPending is a pointer to WindowsAutopilotProfileAssignmentStatusVPending
WindowsAutopilotProfileAssignmentStatusPPending = &_WindowsAutopilotProfileAssignmentStatusPPending
// WindowsAutopilotProfileAssignmentStatusPFailed is a pointer to WindowsAutopilotProfileAssignmentStatusVFailed
WindowsAutopilotProfileAssignmentStatusPFailed = &_WindowsAutopilotProfileAssignmentStatusPFailed
)
var (
_WindowsAutopilotProfileAssignmentStatusPUnknown = WindowsAutopilotProfileAssignmentStatusVUnknown
_WindowsAutopilotProfileAssignmentStatusPAssignedInSync = WindowsAutopilotProfileAssignmentStatusVAssignedInSync
_WindowsAutopilotProfileAssignmentStatusPAssignedOutOfSync = WindowsAutopilotProfileAssignmentStatusVAssignedOutOfSync
_WindowsAutopilotProfileAssignmentStatusPAssignedUnkownSyncState = WindowsAutopilotProfileAssignmentStatusVAssignedUnkownSyncState
_WindowsAutopilotProfileAssignmentStatusPNotAssigned = WindowsAutopilotProfileAssignmentStatusVNotAssigned
_WindowsAutopilotProfileAssignmentStatusPPending = WindowsAutopilotProfileAssignmentStatusVPending
_WindowsAutopilotProfileAssignmentStatusPFailed = WindowsAutopilotProfileAssignmentStatusVFailed
)
// WindowsAutopilotSyncStatus undocumented
type WindowsAutopilotSyncStatus string
const (
// WindowsAutopilotSyncStatusVUnknown undocumented
WindowsAutopilotSyncStatusVUnknown WindowsAutopilotSyncStatus = "unknown"
// WindowsAutopilotSyncStatusVInProgress undocumented
WindowsAutopilotSyncStatusVInProgress WindowsAutopilotSyncStatus = "inProgress"
// WindowsAutopilotSyncStatusVCompleted undocumented
WindowsAutopilotSyncStatusVCompleted WindowsAutopilotSyncStatus = "completed"
// WindowsAutopilotSyncStatusVFailed undocumented
WindowsAutopilotSyncStatusVFailed WindowsAutopilotSyncStatus = "failed"
)
var (
// WindowsAutopilotSyncStatusPUnknown is a pointer to WindowsAutopilotSyncStatusVUnknown
WindowsAutopilotSyncStatusPUnknown = &_WindowsAutopilotSyncStatusPUnknown
// WindowsAutopilotSyncStatusPInProgress is a pointer to WindowsAutopilotSyncStatusVInProgress
WindowsAutopilotSyncStatusPInProgress = &_WindowsAutopilotSyncStatusPInProgress
// WindowsAutopilotSyncStatusPCompleted is a pointer to WindowsAutopilotSyncStatusVCompleted
WindowsAutopilotSyncStatusPCompleted = &_WindowsAutopilotSyncStatusPCompleted
// WindowsAutopilotSyncStatusPFailed is a pointer to WindowsAutopilotSyncStatusVFailed
WindowsAutopilotSyncStatusPFailed = &_WindowsAutopilotSyncStatusPFailed
)
var (
_WindowsAutopilotSyncStatusPUnknown = WindowsAutopilotSyncStatusVUnknown
_WindowsAutopilotSyncStatusPInProgress = WindowsAutopilotSyncStatusVInProgress
_WindowsAutopilotSyncStatusPCompleted = WindowsAutopilotSyncStatusVCompleted
_WindowsAutopilotSyncStatusPFailed = WindowsAutopilotSyncStatusVFailed
)
// WindowsDefenderApplicationControlSupplementalPolicyStatuses undocumented
type WindowsDefenderApplicationControlSupplementalPolicyStatuses string
const (
// WindowsDefenderApplicationControlSupplementalPolicyStatusesVUnknown undocumented
WindowsDefenderApplicationControlSupplementalPolicyStatusesVUnknown WindowsDefenderApplicationControlSupplementalPolicyStatuses = "unknown"
// WindowsDefenderApplicationControlSupplementalPolicyStatusesVSuccess undocumented
WindowsDefenderApplicationControlSupplementalPolicyStatusesVSuccess WindowsDefenderApplicationControlSupplementalPolicyStatuses = "success"
// WindowsDefenderApplicationControlSupplementalPolicyStatusesVTokenError undocumented
WindowsDefenderApplicationControlSupplementalPolicyStatusesVTokenError WindowsDefenderApplicationControlSupplementalPolicyStatuses = "tokenError"
// WindowsDefenderApplicationControlSupplementalPolicyStatusesVNotAuthorizedByToken undocumented
WindowsDefenderApplicationControlSupplementalPolicyStatusesVNotAuthorizedByToken WindowsDefenderApplicationControlSupplementalPolicyStatuses = "notAuthorizedByToken"
// WindowsDefenderApplicationControlSupplementalPolicyStatusesVPolicyNotFound undocumented
WindowsDefenderApplicationControlSupplementalPolicyStatusesVPolicyNotFound WindowsDefenderApplicationControlSupplementalPolicyStatuses = "policyNotFound"
)
var (
// WindowsDefenderApplicationControlSupplementalPolicyStatusesPUnknown is a pointer to WindowsDefenderApplicationControlSupplementalPolicyStatusesVUnknown
WindowsDefenderApplicationControlSupplementalPolicyStatusesPUnknown = &_WindowsDefenderApplicationControlSupplementalPolicyStatusesPUnknown
// WindowsDefenderApplicationControlSupplementalPolicyStatusesPSuccess is a pointer to WindowsDefenderApplicationControlSupplementalPolicyStatusesVSuccess
WindowsDefenderApplicationControlSupplementalPolicyStatusesPSuccess = &_WindowsDefenderApplicationControlSupplementalPolicyStatusesPSuccess
// WindowsDefenderApplicationControlSupplementalPolicyStatusesPTokenError is a pointer to WindowsDefenderApplicationControlSupplementalPolicyStatusesVTokenError
WindowsDefenderApplicationControlSupplementalPolicyStatusesPTokenError = &_WindowsDefenderApplicationControlSupplementalPolicyStatusesPTokenError
// WindowsDefenderApplicationControlSupplementalPolicyStatusesPNotAuthorizedByToken is a pointer to WindowsDefenderApplicationControlSupplementalPolicyStatusesVNotAuthorizedByToken
WindowsDefenderApplicationControlSupplementalPolicyStatusesPNotAuthorizedByToken = &_WindowsDefenderApplicationControlSupplementalPolicyStatusesPNotAuthorizedByToken
// WindowsDefenderApplicationControlSupplementalPolicyStatusesPPolicyNotFound is a pointer to WindowsDefenderApplicationControlSupplementalPolicyStatusesVPolicyNotFound
WindowsDefenderApplicationControlSupplementalPolicyStatusesPPolicyNotFound = &_WindowsDefenderApplicationControlSupplementalPolicyStatusesPPolicyNotFound
)
var (
_WindowsDefenderApplicationControlSupplementalPolicyStatusesPUnknown = WindowsDefenderApplicationControlSupplementalPolicyStatusesVUnknown
_WindowsDefenderApplicationControlSupplementalPolicyStatusesPSuccess = WindowsDefenderApplicationControlSupplementalPolicyStatusesVSuccess
_WindowsDefenderApplicationControlSupplementalPolicyStatusesPTokenError = WindowsDefenderApplicationControlSupplementalPolicyStatusesVTokenError
_WindowsDefenderApplicationControlSupplementalPolicyStatusesPNotAuthorizedByToken = WindowsDefenderApplicationControlSupplementalPolicyStatusesVNotAuthorizedByToken
_WindowsDefenderApplicationControlSupplementalPolicyStatusesPPolicyNotFound = WindowsDefenderApplicationControlSupplementalPolicyStatusesVPolicyNotFound
)
// WindowsDefenderTamperProtectionOptions undocumented
type WindowsDefenderTamperProtectionOptions string
const (
// WindowsDefenderTamperProtectionOptionsVNotConfigured undocumented
WindowsDefenderTamperProtectionOptionsVNotConfigured WindowsDefenderTamperProtectionOptions = "notConfigured"
// WindowsDefenderTamperProtectionOptionsVEnable undocumented
WindowsDefenderTamperProtectionOptionsVEnable WindowsDefenderTamperProtectionOptions = "enable"
// WindowsDefenderTamperProtectionOptionsVDisable undocumented
WindowsDefenderTamperProtectionOptionsVDisable WindowsDefenderTamperProtectionOptions = "disable"
)
var (
// WindowsDefenderTamperProtectionOptionsPNotConfigured is a pointer to WindowsDefenderTamperProtectionOptionsVNotConfigured
WindowsDefenderTamperProtectionOptionsPNotConfigured = &_WindowsDefenderTamperProtectionOptionsPNotConfigured
// WindowsDefenderTamperProtectionOptionsPEnable is a pointer to WindowsDefenderTamperProtectionOptionsVEnable
WindowsDefenderTamperProtectionOptionsPEnable = &_WindowsDefenderTamperProtectionOptionsPEnable
// WindowsDefenderTamperProtectionOptionsPDisable is a pointer to WindowsDefenderTamperProtectionOptionsVDisable
WindowsDefenderTamperProtectionOptionsPDisable = &_WindowsDefenderTamperProtectionOptionsPDisable
)
var (
_WindowsDefenderTamperProtectionOptionsPNotConfigured = WindowsDefenderTamperProtectionOptionsVNotConfigured
_WindowsDefenderTamperProtectionOptionsPEnable = WindowsDefenderTamperProtectionOptionsVEnable
_WindowsDefenderTamperProtectionOptionsPDisable = WindowsDefenderTamperProtectionOptionsVDisable
)
// WindowsDeliveryOptimizationMode undocumented
type WindowsDeliveryOptimizationMode string
const (
// WindowsDeliveryOptimizationModeVUserDefined undocumented
WindowsDeliveryOptimizationModeVUserDefined WindowsDeliveryOptimizationMode = "userDefined"
// WindowsDeliveryOptimizationModeVHTTPOnly undocumented
WindowsDeliveryOptimizationModeVHTTPOnly WindowsDeliveryOptimizationMode = "httpOnly"
// WindowsDeliveryOptimizationModeVHTTPWithPeeringNat undocumented
WindowsDeliveryOptimizationModeVHTTPWithPeeringNat WindowsDeliveryOptimizationMode = "httpWithPeeringNat"
// WindowsDeliveryOptimizationModeVHTTPWithPeeringPrivateGroup undocumented
WindowsDeliveryOptimizationModeVHTTPWithPeeringPrivateGroup WindowsDeliveryOptimizationMode = "httpWithPeeringPrivateGroup"
// WindowsDeliveryOptimizationModeVHTTPWithInternetPeering undocumented
WindowsDeliveryOptimizationModeVHTTPWithInternetPeering WindowsDeliveryOptimizationMode = "httpWithInternetPeering"
// WindowsDeliveryOptimizationModeVSimpleDownload undocumented
WindowsDeliveryOptimizationModeVSimpleDownload WindowsDeliveryOptimizationMode = "simpleDownload"
// WindowsDeliveryOptimizationModeVBypassMode undocumented
WindowsDeliveryOptimizationModeVBypassMode WindowsDeliveryOptimizationMode = "bypassMode"
)
var (
// WindowsDeliveryOptimizationModePUserDefined is a pointer to WindowsDeliveryOptimizationModeVUserDefined
WindowsDeliveryOptimizationModePUserDefined = &_WindowsDeliveryOptimizationModePUserDefined
// WindowsDeliveryOptimizationModePHTTPOnly is a pointer to WindowsDeliveryOptimizationModeVHTTPOnly
WindowsDeliveryOptimizationModePHTTPOnly = &_WindowsDeliveryOptimizationModePHTTPOnly
// WindowsDeliveryOptimizationModePHTTPWithPeeringNat is a pointer to WindowsDeliveryOptimizationModeVHTTPWithPeeringNat
WindowsDeliveryOptimizationModePHTTPWithPeeringNat = &_WindowsDeliveryOptimizationModePHTTPWithPeeringNat
// WindowsDeliveryOptimizationModePHTTPWithPeeringPrivateGroup is a pointer to WindowsDeliveryOptimizationModeVHTTPWithPeeringPrivateGroup
WindowsDeliveryOptimizationModePHTTPWithPeeringPrivateGroup = &_WindowsDeliveryOptimizationModePHTTPWithPeeringPrivateGroup
// WindowsDeliveryOptimizationModePHTTPWithInternetPeering is a pointer to WindowsDeliveryOptimizationModeVHTTPWithInternetPeering
WindowsDeliveryOptimizationModePHTTPWithInternetPeering = &_WindowsDeliveryOptimizationModePHTTPWithInternetPeering
// WindowsDeliveryOptimizationModePSimpleDownload is a pointer to WindowsDeliveryOptimizationModeVSimpleDownload
WindowsDeliveryOptimizationModePSimpleDownload = &_WindowsDeliveryOptimizationModePSimpleDownload
// WindowsDeliveryOptimizationModePBypassMode is a pointer to WindowsDeliveryOptimizationModeVBypassMode
WindowsDeliveryOptimizationModePBypassMode = &_WindowsDeliveryOptimizationModePBypassMode
)
var (
_WindowsDeliveryOptimizationModePUserDefined = WindowsDeliveryOptimizationModeVUserDefined
_WindowsDeliveryOptimizationModePHTTPOnly = WindowsDeliveryOptimizationModeVHTTPOnly
_WindowsDeliveryOptimizationModePHTTPWithPeeringNat = WindowsDeliveryOptimizationModeVHTTPWithPeeringNat
_WindowsDeliveryOptimizationModePHTTPWithPeeringPrivateGroup = WindowsDeliveryOptimizationModeVHTTPWithPeeringPrivateGroup
_WindowsDeliveryOptimizationModePHTTPWithInternetPeering = WindowsDeliveryOptimizationModeVHTTPWithInternetPeering
_WindowsDeliveryOptimizationModePSimpleDownload = WindowsDeliveryOptimizationModeVSimpleDownload
_WindowsDeliveryOptimizationModePBypassMode = WindowsDeliveryOptimizationModeVBypassMode
)
// WindowsDeviceHealthState undocumented
type WindowsDeviceHealthState string
const (
// WindowsDeviceHealthStateVClean undocumented
WindowsDeviceHealthStateVClean WindowsDeviceHealthState = "clean"
// WindowsDeviceHealthStateVFullScanPending undocumented
WindowsDeviceHealthStateVFullScanPending WindowsDeviceHealthState = "fullScanPending"
// WindowsDeviceHealthStateVRebootPending undocumented
WindowsDeviceHealthStateVRebootPending WindowsDeviceHealthState = "rebootPending"
// WindowsDeviceHealthStateVManualStepsPending undocumented
WindowsDeviceHealthStateVManualStepsPending WindowsDeviceHealthState = "manualStepsPending"
// WindowsDeviceHealthStateVOfflineScanPending undocumented
WindowsDeviceHealthStateVOfflineScanPending WindowsDeviceHealthState = "offlineScanPending"
// WindowsDeviceHealthStateVCritical undocumented
WindowsDeviceHealthStateVCritical WindowsDeviceHealthState = "critical"
)
var (
// WindowsDeviceHealthStatePClean is a pointer to WindowsDeviceHealthStateVClean
WindowsDeviceHealthStatePClean = &_WindowsDeviceHealthStatePClean
// WindowsDeviceHealthStatePFullScanPending is a pointer to WindowsDeviceHealthStateVFullScanPending
WindowsDeviceHealthStatePFullScanPending = &_WindowsDeviceHealthStatePFullScanPending
// WindowsDeviceHealthStatePRebootPending is a pointer to WindowsDeviceHealthStateVRebootPending
WindowsDeviceHealthStatePRebootPending = &_WindowsDeviceHealthStatePRebootPending
// WindowsDeviceHealthStatePManualStepsPending is a pointer to WindowsDeviceHealthStateVManualStepsPending
WindowsDeviceHealthStatePManualStepsPending = &_WindowsDeviceHealthStatePManualStepsPending
// WindowsDeviceHealthStatePOfflineScanPending is a pointer to WindowsDeviceHealthStateVOfflineScanPending
WindowsDeviceHealthStatePOfflineScanPending = &_WindowsDeviceHealthStatePOfflineScanPending
// WindowsDeviceHealthStatePCritical is a pointer to WindowsDeviceHealthStateVCritical
WindowsDeviceHealthStatePCritical = &_WindowsDeviceHealthStatePCritical
)
var (
_WindowsDeviceHealthStatePClean = WindowsDeviceHealthStateVClean
_WindowsDeviceHealthStatePFullScanPending = WindowsDeviceHealthStateVFullScanPending
_WindowsDeviceHealthStatePRebootPending = WindowsDeviceHealthStateVRebootPending
_WindowsDeviceHealthStatePManualStepsPending = WindowsDeviceHealthStateVManualStepsPending
_WindowsDeviceHealthStatePOfflineScanPending = WindowsDeviceHealthStateVOfflineScanPending
_WindowsDeviceHealthStatePCritical = WindowsDeviceHealthStateVCritical
)
// WindowsDeviceType undocumented
type WindowsDeviceType string
const (
// WindowsDeviceTypeVNone undocumented
WindowsDeviceTypeVNone WindowsDeviceType = "none"
// WindowsDeviceTypeVDesktop undocumented
WindowsDeviceTypeVDesktop WindowsDeviceType = "desktop"
// WindowsDeviceTypeVMobile undocumented
WindowsDeviceTypeVMobile WindowsDeviceType = "mobile"
// WindowsDeviceTypeVHolographic undocumented
WindowsDeviceTypeVHolographic WindowsDeviceType = "holographic"
// WindowsDeviceTypeVTeam undocumented
WindowsDeviceTypeVTeam WindowsDeviceType = "team"
)
var (
// WindowsDeviceTypePNone is a pointer to WindowsDeviceTypeVNone
WindowsDeviceTypePNone = &_WindowsDeviceTypePNone
// WindowsDeviceTypePDesktop is a pointer to WindowsDeviceTypeVDesktop
WindowsDeviceTypePDesktop = &_WindowsDeviceTypePDesktop
// WindowsDeviceTypePMobile is a pointer to WindowsDeviceTypeVMobile
WindowsDeviceTypePMobile = &_WindowsDeviceTypePMobile
// WindowsDeviceTypePHolographic is a pointer to WindowsDeviceTypeVHolographic
WindowsDeviceTypePHolographic = &_WindowsDeviceTypePHolographic
// WindowsDeviceTypePTeam is a pointer to WindowsDeviceTypeVTeam
WindowsDeviceTypePTeam = &_WindowsDeviceTypePTeam
)
var (
_WindowsDeviceTypePNone = WindowsDeviceTypeVNone
_WindowsDeviceTypePDesktop = WindowsDeviceTypeVDesktop
_WindowsDeviceTypePMobile = WindowsDeviceTypeVMobile
_WindowsDeviceTypePHolographic = WindowsDeviceTypeVHolographic
_WindowsDeviceTypePTeam = WindowsDeviceTypeVTeam
)
// WindowsDeviceUsageType undocumented
type WindowsDeviceUsageType string
const (
// WindowsDeviceUsageTypeVSingleUser undocumented
WindowsDeviceUsageTypeVSingleUser WindowsDeviceUsageType = "singleUser"
// WindowsDeviceUsageTypeVShared undocumented
WindowsDeviceUsageTypeVShared WindowsDeviceUsageType = "shared"
)
var (
// WindowsDeviceUsageTypePSingleUser is a pointer to WindowsDeviceUsageTypeVSingleUser
WindowsDeviceUsageTypePSingleUser = &_WindowsDeviceUsageTypePSingleUser
// WindowsDeviceUsageTypePShared is a pointer to WindowsDeviceUsageTypeVShared
WindowsDeviceUsageTypePShared = &_WindowsDeviceUsageTypePShared
)
var (
_WindowsDeviceUsageTypePSingleUser = WindowsDeviceUsageTypeVSingleUser
_WindowsDeviceUsageTypePShared = WindowsDeviceUsageTypeVShared
)
// WindowsFirewallRuleInterfaceTypes undocumented
type WindowsFirewallRuleInterfaceTypes string
const (
// WindowsFirewallRuleInterfaceTypesVNotConfigured undocumented
WindowsFirewallRuleInterfaceTypesVNotConfigured WindowsFirewallRuleInterfaceTypes = "notConfigured"
// WindowsFirewallRuleInterfaceTypesVRemoteAccess undocumented
WindowsFirewallRuleInterfaceTypesVRemoteAccess WindowsFirewallRuleInterfaceTypes = "remoteAccess"
// WindowsFirewallRuleInterfaceTypesVWireless undocumented
WindowsFirewallRuleInterfaceTypesVWireless WindowsFirewallRuleInterfaceTypes = "wireless"
// WindowsFirewallRuleInterfaceTypesVLan undocumented
WindowsFirewallRuleInterfaceTypesVLan WindowsFirewallRuleInterfaceTypes = "lan"
)
var (
// WindowsFirewallRuleInterfaceTypesPNotConfigured is a pointer to WindowsFirewallRuleInterfaceTypesVNotConfigured
WindowsFirewallRuleInterfaceTypesPNotConfigured = &_WindowsFirewallRuleInterfaceTypesPNotConfigured
// WindowsFirewallRuleInterfaceTypesPRemoteAccess is a pointer to WindowsFirewallRuleInterfaceTypesVRemoteAccess
WindowsFirewallRuleInterfaceTypesPRemoteAccess = &_WindowsFirewallRuleInterfaceTypesPRemoteAccess
// WindowsFirewallRuleInterfaceTypesPWireless is a pointer to WindowsFirewallRuleInterfaceTypesVWireless
WindowsFirewallRuleInterfaceTypesPWireless = &_WindowsFirewallRuleInterfaceTypesPWireless
// WindowsFirewallRuleInterfaceTypesPLan is a pointer to WindowsFirewallRuleInterfaceTypesVLan
WindowsFirewallRuleInterfaceTypesPLan = &_WindowsFirewallRuleInterfaceTypesPLan
)
var (
_WindowsFirewallRuleInterfaceTypesPNotConfigured = WindowsFirewallRuleInterfaceTypesVNotConfigured
_WindowsFirewallRuleInterfaceTypesPRemoteAccess = WindowsFirewallRuleInterfaceTypesVRemoteAccess
_WindowsFirewallRuleInterfaceTypesPWireless = WindowsFirewallRuleInterfaceTypesVWireless
_WindowsFirewallRuleInterfaceTypesPLan = WindowsFirewallRuleInterfaceTypesVLan
)
// WindowsFirewallRuleNetworkProfileTypes undocumented
type WindowsFirewallRuleNetworkProfileTypes string
const (
// WindowsFirewallRuleNetworkProfileTypesVNotConfigured undocumented
WindowsFirewallRuleNetworkProfileTypesVNotConfigured WindowsFirewallRuleNetworkProfileTypes = "notConfigured"
// WindowsFirewallRuleNetworkProfileTypesVDomain undocumented
WindowsFirewallRuleNetworkProfileTypesVDomain WindowsFirewallRuleNetworkProfileTypes = "domain"
// WindowsFirewallRuleNetworkProfileTypesVPrivate undocumented
WindowsFirewallRuleNetworkProfileTypesVPrivate WindowsFirewallRuleNetworkProfileTypes = "private"
// WindowsFirewallRuleNetworkProfileTypesVPublic undocumented
WindowsFirewallRuleNetworkProfileTypesVPublic WindowsFirewallRuleNetworkProfileTypes = "public"
)
var (
// WindowsFirewallRuleNetworkProfileTypesPNotConfigured is a pointer to WindowsFirewallRuleNetworkProfileTypesVNotConfigured
WindowsFirewallRuleNetworkProfileTypesPNotConfigured = &_WindowsFirewallRuleNetworkProfileTypesPNotConfigured
// WindowsFirewallRuleNetworkProfileTypesPDomain is a pointer to WindowsFirewallRuleNetworkProfileTypesVDomain
WindowsFirewallRuleNetworkProfileTypesPDomain = &_WindowsFirewallRuleNetworkProfileTypesPDomain
// WindowsFirewallRuleNetworkProfileTypesPPrivate is a pointer to WindowsFirewallRuleNetworkProfileTypesVPrivate
WindowsFirewallRuleNetworkProfileTypesPPrivate = &_WindowsFirewallRuleNetworkProfileTypesPPrivate
// WindowsFirewallRuleNetworkProfileTypesPPublic is a pointer to WindowsFirewallRuleNetworkProfileTypesVPublic
WindowsFirewallRuleNetworkProfileTypesPPublic = &_WindowsFirewallRuleNetworkProfileTypesPPublic
)
var (
_WindowsFirewallRuleNetworkProfileTypesPNotConfigured = WindowsFirewallRuleNetworkProfileTypesVNotConfigured
_WindowsFirewallRuleNetworkProfileTypesPDomain = WindowsFirewallRuleNetworkProfileTypesVDomain
_WindowsFirewallRuleNetworkProfileTypesPPrivate = WindowsFirewallRuleNetworkProfileTypesVPrivate
_WindowsFirewallRuleNetworkProfileTypesPPublic = WindowsFirewallRuleNetworkProfileTypesVPublic
)
// WindowsFirewallRuleTrafficDirectionType undocumented
type WindowsFirewallRuleTrafficDirectionType string
const (
// WindowsFirewallRuleTrafficDirectionTypeVNotConfigured undocumented
WindowsFirewallRuleTrafficDirectionTypeVNotConfigured WindowsFirewallRuleTrafficDirectionType = "notConfigured"
// WindowsFirewallRuleTrafficDirectionTypeVOut undocumented
WindowsFirewallRuleTrafficDirectionTypeVOut WindowsFirewallRuleTrafficDirectionType = "out"
// WindowsFirewallRuleTrafficDirectionTypeVIn undocumented
WindowsFirewallRuleTrafficDirectionTypeVIn WindowsFirewallRuleTrafficDirectionType = "in"
)
var (
// WindowsFirewallRuleTrafficDirectionTypePNotConfigured is a pointer to WindowsFirewallRuleTrafficDirectionTypeVNotConfigured
WindowsFirewallRuleTrafficDirectionTypePNotConfigured = &_WindowsFirewallRuleTrafficDirectionTypePNotConfigured
// WindowsFirewallRuleTrafficDirectionTypePOut is a pointer to WindowsFirewallRuleTrafficDirectionTypeVOut
WindowsFirewallRuleTrafficDirectionTypePOut = &_WindowsFirewallRuleTrafficDirectionTypePOut
// WindowsFirewallRuleTrafficDirectionTypePIn is a pointer to WindowsFirewallRuleTrafficDirectionTypeVIn
WindowsFirewallRuleTrafficDirectionTypePIn = &_WindowsFirewallRuleTrafficDirectionTypePIn
)
var (
_WindowsFirewallRuleTrafficDirectionTypePNotConfigured = WindowsFirewallRuleTrafficDirectionTypeVNotConfigured
_WindowsFirewallRuleTrafficDirectionTypePOut = WindowsFirewallRuleTrafficDirectionTypeVOut
_WindowsFirewallRuleTrafficDirectionTypePIn = WindowsFirewallRuleTrafficDirectionTypeVIn
)
// WindowsHealthMonitoringScope undocumented
type WindowsHealthMonitoringScope string
const (
// WindowsHealthMonitoringScopeVUndefined undocumented
WindowsHealthMonitoringScopeVUndefined WindowsHealthMonitoringScope = "undefined"
// WindowsHealthMonitoringScopeVHealthMonitoring undocumented
WindowsHealthMonitoringScopeVHealthMonitoring WindowsHealthMonitoringScope = "healthMonitoring"
// WindowsHealthMonitoringScopeVBootPerformance undocumented
WindowsHealthMonitoringScopeVBootPerformance WindowsHealthMonitoringScope = "bootPerformance"
// WindowsHealthMonitoringScopeVUserExperienceAnalytics undocumented
WindowsHealthMonitoringScopeVUserExperienceAnalytics WindowsHealthMonitoringScope = "userExperienceAnalytics"
)
var (
// WindowsHealthMonitoringScopePUndefined is a pointer to WindowsHealthMonitoringScopeVUndefined
WindowsHealthMonitoringScopePUndefined = &_WindowsHealthMonitoringScopePUndefined
// WindowsHealthMonitoringScopePHealthMonitoring is a pointer to WindowsHealthMonitoringScopeVHealthMonitoring
WindowsHealthMonitoringScopePHealthMonitoring = &_WindowsHealthMonitoringScopePHealthMonitoring
// WindowsHealthMonitoringScopePBootPerformance is a pointer to WindowsHealthMonitoringScopeVBootPerformance
WindowsHealthMonitoringScopePBootPerformance = &_WindowsHealthMonitoringScopePBootPerformance
// WindowsHealthMonitoringScopePUserExperienceAnalytics is a pointer to WindowsHealthMonitoringScopeVUserExperienceAnalytics
WindowsHealthMonitoringScopePUserExperienceAnalytics = &_WindowsHealthMonitoringScopePUserExperienceAnalytics
)
var (
_WindowsHealthMonitoringScopePUndefined = WindowsHealthMonitoringScopeVUndefined
_WindowsHealthMonitoringScopePHealthMonitoring = WindowsHealthMonitoringScopeVHealthMonitoring
_WindowsHealthMonitoringScopePBootPerformance = WindowsHealthMonitoringScopeVBootPerformance
_WindowsHealthMonitoringScopePUserExperienceAnalytics = WindowsHealthMonitoringScopeVUserExperienceAnalytics
)
// WindowsHelloForBusinessPinUsage undocumented
type WindowsHelloForBusinessPinUsage string
const (
// WindowsHelloForBusinessPinUsageVAllowed undocumented
WindowsHelloForBusinessPinUsageVAllowed WindowsHelloForBusinessPinUsage = "allowed"
// WindowsHelloForBusinessPinUsageVRequired undocumented
WindowsHelloForBusinessPinUsageVRequired WindowsHelloForBusinessPinUsage = "required"
// WindowsHelloForBusinessPinUsageVDisallowed undocumented
WindowsHelloForBusinessPinUsageVDisallowed WindowsHelloForBusinessPinUsage = "disallowed"
)
var (
// WindowsHelloForBusinessPinUsagePAllowed is a pointer to WindowsHelloForBusinessPinUsageVAllowed
WindowsHelloForBusinessPinUsagePAllowed = &_WindowsHelloForBusinessPinUsagePAllowed
// WindowsHelloForBusinessPinUsagePRequired is a pointer to WindowsHelloForBusinessPinUsageVRequired
WindowsHelloForBusinessPinUsagePRequired = &_WindowsHelloForBusinessPinUsagePRequired
// WindowsHelloForBusinessPinUsagePDisallowed is a pointer to WindowsHelloForBusinessPinUsageVDisallowed
WindowsHelloForBusinessPinUsagePDisallowed = &_WindowsHelloForBusinessPinUsagePDisallowed
)
var (
_WindowsHelloForBusinessPinUsagePAllowed = WindowsHelloForBusinessPinUsageVAllowed
_WindowsHelloForBusinessPinUsagePRequired = WindowsHelloForBusinessPinUsageVRequired
_WindowsHelloForBusinessPinUsagePDisallowed = WindowsHelloForBusinessPinUsageVDisallowed
)
// WindowsInformationProtectionEnforcementLevel undocumented
type WindowsInformationProtectionEnforcementLevel string
const (
// WindowsInformationProtectionEnforcementLevelVNoProtection undocumented
WindowsInformationProtectionEnforcementLevelVNoProtection WindowsInformationProtectionEnforcementLevel = "noProtection"
// WindowsInformationProtectionEnforcementLevelVEncryptAndAuditOnly undocumented
WindowsInformationProtectionEnforcementLevelVEncryptAndAuditOnly WindowsInformationProtectionEnforcementLevel = "encryptAndAuditOnly"
// WindowsInformationProtectionEnforcementLevelVEncryptAuditAndPrompt undocumented
WindowsInformationProtectionEnforcementLevelVEncryptAuditAndPrompt WindowsInformationProtectionEnforcementLevel = "encryptAuditAndPrompt"
// WindowsInformationProtectionEnforcementLevelVEncryptAuditAndBlock undocumented
WindowsInformationProtectionEnforcementLevelVEncryptAuditAndBlock WindowsInformationProtectionEnforcementLevel = "encryptAuditAndBlock"
)
var (
// WindowsInformationProtectionEnforcementLevelPNoProtection is a pointer to WindowsInformationProtectionEnforcementLevelVNoProtection
WindowsInformationProtectionEnforcementLevelPNoProtection = &_WindowsInformationProtectionEnforcementLevelPNoProtection
// WindowsInformationProtectionEnforcementLevelPEncryptAndAuditOnly is a pointer to WindowsInformationProtectionEnforcementLevelVEncryptAndAuditOnly
WindowsInformationProtectionEnforcementLevelPEncryptAndAuditOnly = &_WindowsInformationProtectionEnforcementLevelPEncryptAndAuditOnly
// WindowsInformationProtectionEnforcementLevelPEncryptAuditAndPrompt is a pointer to WindowsInformationProtectionEnforcementLevelVEncryptAuditAndPrompt
WindowsInformationProtectionEnforcementLevelPEncryptAuditAndPrompt = &_WindowsInformationProtectionEnforcementLevelPEncryptAuditAndPrompt
// WindowsInformationProtectionEnforcementLevelPEncryptAuditAndBlock is a pointer to WindowsInformationProtectionEnforcementLevelVEncryptAuditAndBlock
WindowsInformationProtectionEnforcementLevelPEncryptAuditAndBlock = &_WindowsInformationProtectionEnforcementLevelPEncryptAuditAndBlock
)
var (
_WindowsInformationProtectionEnforcementLevelPNoProtection = WindowsInformationProtectionEnforcementLevelVNoProtection
_WindowsInformationProtectionEnforcementLevelPEncryptAndAuditOnly = WindowsInformationProtectionEnforcementLevelVEncryptAndAuditOnly
_WindowsInformationProtectionEnforcementLevelPEncryptAuditAndPrompt = WindowsInformationProtectionEnforcementLevelVEncryptAuditAndPrompt
_WindowsInformationProtectionEnforcementLevelPEncryptAuditAndBlock = WindowsInformationProtectionEnforcementLevelVEncryptAuditAndBlock
)
// WindowsInformationProtectionPinCharacterRequirements undocumented
type WindowsInformationProtectionPinCharacterRequirements string
const (
// WindowsInformationProtectionPinCharacterRequirementsVNotAllow undocumented
WindowsInformationProtectionPinCharacterRequirementsVNotAllow WindowsInformationProtectionPinCharacterRequirements = "notAllow"
// WindowsInformationProtectionPinCharacterRequirementsVRequireAtLeastOne undocumented
WindowsInformationProtectionPinCharacterRequirementsVRequireAtLeastOne WindowsInformationProtectionPinCharacterRequirements = "requireAtLeastOne"
// WindowsInformationProtectionPinCharacterRequirementsVAllow undocumented
WindowsInformationProtectionPinCharacterRequirementsVAllow WindowsInformationProtectionPinCharacterRequirements = "allow"
)
var (
// WindowsInformationProtectionPinCharacterRequirementsPNotAllow is a pointer to WindowsInformationProtectionPinCharacterRequirementsVNotAllow
WindowsInformationProtectionPinCharacterRequirementsPNotAllow = &_WindowsInformationProtectionPinCharacterRequirementsPNotAllow
// WindowsInformationProtectionPinCharacterRequirementsPRequireAtLeastOne is a pointer to WindowsInformationProtectionPinCharacterRequirementsVRequireAtLeastOne
WindowsInformationProtectionPinCharacterRequirementsPRequireAtLeastOne = &_WindowsInformationProtectionPinCharacterRequirementsPRequireAtLeastOne
// WindowsInformationProtectionPinCharacterRequirementsPAllow is a pointer to WindowsInformationProtectionPinCharacterRequirementsVAllow
WindowsInformationProtectionPinCharacterRequirementsPAllow = &_WindowsInformationProtectionPinCharacterRequirementsPAllow
)
var (
_WindowsInformationProtectionPinCharacterRequirementsPNotAllow = WindowsInformationProtectionPinCharacterRequirementsVNotAllow
_WindowsInformationProtectionPinCharacterRequirementsPRequireAtLeastOne = WindowsInformationProtectionPinCharacterRequirementsVRequireAtLeastOne
_WindowsInformationProtectionPinCharacterRequirementsPAllow = WindowsInformationProtectionPinCharacterRequirementsVAllow
)
// WindowsKioskAppType undocumented
type WindowsKioskAppType string
const (
// WindowsKioskAppTypeVUnknown undocumented
WindowsKioskAppTypeVUnknown WindowsKioskAppType = "unknown"
// WindowsKioskAppTypeVStore undocumented
WindowsKioskAppTypeVStore WindowsKioskAppType = "store"
// WindowsKioskAppTypeVDesktop undocumented
WindowsKioskAppTypeVDesktop WindowsKioskAppType = "desktop"
// WindowsKioskAppTypeVAumID undocumented
WindowsKioskAppTypeVAumID WindowsKioskAppType = "aumId"
)
var (
// WindowsKioskAppTypePUnknown is a pointer to WindowsKioskAppTypeVUnknown
WindowsKioskAppTypePUnknown = &_WindowsKioskAppTypePUnknown
// WindowsKioskAppTypePStore is a pointer to WindowsKioskAppTypeVStore
WindowsKioskAppTypePStore = &_WindowsKioskAppTypePStore
// WindowsKioskAppTypePDesktop is a pointer to WindowsKioskAppTypeVDesktop
WindowsKioskAppTypePDesktop = &_WindowsKioskAppTypePDesktop
// WindowsKioskAppTypePAumID is a pointer to WindowsKioskAppTypeVAumID
WindowsKioskAppTypePAumID = &_WindowsKioskAppTypePAumID
)
var (
_WindowsKioskAppTypePUnknown = WindowsKioskAppTypeVUnknown
_WindowsKioskAppTypePStore = WindowsKioskAppTypeVStore
_WindowsKioskAppTypePDesktop = WindowsKioskAppTypeVDesktop
_WindowsKioskAppTypePAumID = WindowsKioskAppTypeVAumID
)
// WindowsMalwareCategory undocumented
type WindowsMalwareCategory string
const (
// WindowsMalwareCategoryVInvalid undocumented
WindowsMalwareCategoryVInvalid WindowsMalwareCategory = "invalid"
// WindowsMalwareCategoryVAdware undocumented
WindowsMalwareCategoryVAdware WindowsMalwareCategory = "adware"
// WindowsMalwareCategoryVSpyware undocumented
WindowsMalwareCategoryVSpyware WindowsMalwareCategory = "spyware"
// WindowsMalwareCategoryVPasswordStealer undocumented
WindowsMalwareCategoryVPasswordStealer WindowsMalwareCategory = "passwordStealer"
// WindowsMalwareCategoryVTrojanDownloader undocumented
WindowsMalwareCategoryVTrojanDownloader WindowsMalwareCategory = "trojanDownloader"
// WindowsMalwareCategoryVWorm undocumented
WindowsMalwareCategoryVWorm WindowsMalwareCategory = "worm"
// WindowsMalwareCategoryVBackdoor undocumented
WindowsMalwareCategoryVBackdoor WindowsMalwareCategory = "backdoor"
// WindowsMalwareCategoryVRemoteAccessTrojan undocumented
WindowsMalwareCategoryVRemoteAccessTrojan WindowsMalwareCategory = "remoteAccessTrojan"
// WindowsMalwareCategoryVTrojan undocumented
WindowsMalwareCategoryVTrojan WindowsMalwareCategory = "trojan"
// WindowsMalwareCategoryVEmailFlooder undocumented
WindowsMalwareCategoryVEmailFlooder WindowsMalwareCategory = "emailFlooder"
// WindowsMalwareCategoryVKeylogger undocumented
WindowsMalwareCategoryVKeylogger WindowsMalwareCategory = "keylogger"
// WindowsMalwareCategoryVDialer undocumented
WindowsMalwareCategoryVDialer WindowsMalwareCategory = "dialer"
// WindowsMalwareCategoryVMonitoringSoftware undocumented
WindowsMalwareCategoryVMonitoringSoftware WindowsMalwareCategory = "monitoringSoftware"
// WindowsMalwareCategoryVBrowserModifier undocumented
WindowsMalwareCategoryVBrowserModifier WindowsMalwareCategory = "browserModifier"
// WindowsMalwareCategoryVCookie undocumented
WindowsMalwareCategoryVCookie WindowsMalwareCategory = "cookie"
// WindowsMalwareCategoryVBrowserPlugin undocumented
WindowsMalwareCategoryVBrowserPlugin WindowsMalwareCategory = "browserPlugin"
// WindowsMalwareCategoryVAolExploit undocumented
WindowsMalwareCategoryVAolExploit WindowsMalwareCategory = "aolExploit"
// WindowsMalwareCategoryVNuker undocumented
WindowsMalwareCategoryVNuker WindowsMalwareCategory = "nuker"
// WindowsMalwareCategoryVSecurityDisabler undocumented
WindowsMalwareCategoryVSecurityDisabler WindowsMalwareCategory = "securityDisabler"
// WindowsMalwareCategoryVJokeProgram undocumented
WindowsMalwareCategoryVJokeProgram WindowsMalwareCategory = "jokeProgram"
// WindowsMalwareCategoryVHostileActiveXControl undocumented
WindowsMalwareCategoryVHostileActiveXControl WindowsMalwareCategory = "hostileActiveXControl"
// WindowsMalwareCategoryVSoftwareBundler undocumented
WindowsMalwareCategoryVSoftwareBundler WindowsMalwareCategory = "softwareBundler"
// WindowsMalwareCategoryVStealthNotifier undocumented
WindowsMalwareCategoryVStealthNotifier WindowsMalwareCategory = "stealthNotifier"
// WindowsMalwareCategoryVSettingsModifier undocumented
WindowsMalwareCategoryVSettingsModifier WindowsMalwareCategory = "settingsModifier"
// WindowsMalwareCategoryVToolBar undocumented
WindowsMalwareCategoryVToolBar WindowsMalwareCategory = "toolBar"
// WindowsMalwareCategoryVRemoteControlSoftware undocumented
WindowsMalwareCategoryVRemoteControlSoftware WindowsMalwareCategory = "remoteControlSoftware"
// WindowsMalwareCategoryVTrojanFtp undocumented
WindowsMalwareCategoryVTrojanFtp WindowsMalwareCategory = "trojanFtp"
// WindowsMalwareCategoryVPotentialUnwantedSoftware undocumented
WindowsMalwareCategoryVPotentialUnwantedSoftware WindowsMalwareCategory = "potentialUnwantedSoftware"
// WindowsMalwareCategoryVIcqExploit undocumented
WindowsMalwareCategoryVIcqExploit WindowsMalwareCategory = "icqExploit"
// WindowsMalwareCategoryVTrojanTelnet undocumented
WindowsMalwareCategoryVTrojanTelnet WindowsMalwareCategory = "trojanTelnet"
// WindowsMalwareCategoryVExploit undocumented
WindowsMalwareCategoryVExploit WindowsMalwareCategory = "exploit"
// WindowsMalwareCategoryVFilesharingProgram undocumented
WindowsMalwareCategoryVFilesharingProgram WindowsMalwareCategory = "filesharingProgram"
// WindowsMalwareCategoryVMalwareCreationTool undocumented
WindowsMalwareCategoryVMalwareCreationTool WindowsMalwareCategory = "malwareCreationTool"
// WindowsMalwareCategoryVRemote_Control_Software undocumented
WindowsMalwareCategoryVRemote_Control_Software WindowsMalwareCategory = "remote_Control_Software"
// WindowsMalwareCategoryVTool undocumented
WindowsMalwareCategoryVTool WindowsMalwareCategory = "tool"
// WindowsMalwareCategoryVTrojanDenialOfService undocumented
WindowsMalwareCategoryVTrojanDenialOfService WindowsMalwareCategory = "trojanDenialOfService"
// WindowsMalwareCategoryVTrojanDropper undocumented
WindowsMalwareCategoryVTrojanDropper WindowsMalwareCategory = "trojanDropper"
// WindowsMalwareCategoryVTrojanMassMailer undocumented
WindowsMalwareCategoryVTrojanMassMailer WindowsMalwareCategory = "trojanMassMailer"
// WindowsMalwareCategoryVTrojanMonitoringSoftware undocumented
WindowsMalwareCategoryVTrojanMonitoringSoftware WindowsMalwareCategory = "trojanMonitoringSoftware"
// WindowsMalwareCategoryVTrojanProxyServer undocumented
WindowsMalwareCategoryVTrojanProxyServer WindowsMalwareCategory = "trojanProxyServer"
// WindowsMalwareCategoryVVirus undocumented
WindowsMalwareCategoryVVirus WindowsMalwareCategory = "virus"
// WindowsMalwareCategoryVKnown undocumented
WindowsMalwareCategoryVKnown WindowsMalwareCategory = "known"
// WindowsMalwareCategoryVUnknown undocumented
WindowsMalwareCategoryVUnknown WindowsMalwareCategory = "unknown"
// WindowsMalwareCategoryVSpp undocumented
WindowsMalwareCategoryVSpp WindowsMalwareCategory = "spp"
// WindowsMalwareCategoryVBehavior undocumented
WindowsMalwareCategoryVBehavior WindowsMalwareCategory = "behavior"
// WindowsMalwareCategoryVVulnerability undocumented
WindowsMalwareCategoryVVulnerability WindowsMalwareCategory = "vulnerability"
// WindowsMalwareCategoryVPolicy undocumented
WindowsMalwareCategoryVPolicy WindowsMalwareCategory = "policy"
// WindowsMalwareCategoryVEnterpriseUnwantedSoftware undocumented
WindowsMalwareCategoryVEnterpriseUnwantedSoftware WindowsMalwareCategory = "enterpriseUnwantedSoftware"
// WindowsMalwareCategoryVRansom undocumented
WindowsMalwareCategoryVRansom WindowsMalwareCategory = "ransom"
// WindowsMalwareCategoryVHipsRule undocumented
WindowsMalwareCategoryVHipsRule WindowsMalwareCategory = "hipsRule"
)
var (
// WindowsMalwareCategoryPInvalid is a pointer to WindowsMalwareCategoryVInvalid
WindowsMalwareCategoryPInvalid = &_WindowsMalwareCategoryPInvalid
// WindowsMalwareCategoryPAdware is a pointer to WindowsMalwareCategoryVAdware
WindowsMalwareCategoryPAdware = &_WindowsMalwareCategoryPAdware
// WindowsMalwareCategoryPSpyware is a pointer to WindowsMalwareCategoryVSpyware
WindowsMalwareCategoryPSpyware = &_WindowsMalwareCategoryPSpyware
// WindowsMalwareCategoryPPasswordStealer is a pointer to WindowsMalwareCategoryVPasswordStealer
WindowsMalwareCategoryPPasswordStealer = &_WindowsMalwareCategoryPPasswordStealer
// WindowsMalwareCategoryPTrojanDownloader is a pointer to WindowsMalwareCategoryVTrojanDownloader
WindowsMalwareCategoryPTrojanDownloader = &_WindowsMalwareCategoryPTrojanDownloader
// WindowsMalwareCategoryPWorm is a pointer to WindowsMalwareCategoryVWorm
WindowsMalwareCategoryPWorm = &_WindowsMalwareCategoryPWorm
// WindowsMalwareCategoryPBackdoor is a pointer to WindowsMalwareCategoryVBackdoor
WindowsMalwareCategoryPBackdoor = &_WindowsMalwareCategoryPBackdoor
// WindowsMalwareCategoryPRemoteAccessTrojan is a pointer to WindowsMalwareCategoryVRemoteAccessTrojan
WindowsMalwareCategoryPRemoteAccessTrojan = &_WindowsMalwareCategoryPRemoteAccessTrojan
// WindowsMalwareCategoryPTrojan is a pointer to WindowsMalwareCategoryVTrojan
WindowsMalwareCategoryPTrojan = &_WindowsMalwareCategoryPTrojan
// WindowsMalwareCategoryPEmailFlooder is a pointer to WindowsMalwareCategoryVEmailFlooder
WindowsMalwareCategoryPEmailFlooder = &_WindowsMalwareCategoryPEmailFlooder
// WindowsMalwareCategoryPKeylogger is a pointer to WindowsMalwareCategoryVKeylogger
WindowsMalwareCategoryPKeylogger = &_WindowsMalwareCategoryPKeylogger
// WindowsMalwareCategoryPDialer is a pointer to WindowsMalwareCategoryVDialer
WindowsMalwareCategoryPDialer = &_WindowsMalwareCategoryPDialer
// WindowsMalwareCategoryPMonitoringSoftware is a pointer to WindowsMalwareCategoryVMonitoringSoftware
WindowsMalwareCategoryPMonitoringSoftware = &_WindowsMalwareCategoryPMonitoringSoftware
// WindowsMalwareCategoryPBrowserModifier is a pointer to WindowsMalwareCategoryVBrowserModifier
WindowsMalwareCategoryPBrowserModifier = &_WindowsMalwareCategoryPBrowserModifier
// WindowsMalwareCategoryPCookie is a pointer to WindowsMalwareCategoryVCookie
WindowsMalwareCategoryPCookie = &_WindowsMalwareCategoryPCookie
// WindowsMalwareCategoryPBrowserPlugin is a pointer to WindowsMalwareCategoryVBrowserPlugin
WindowsMalwareCategoryPBrowserPlugin = &_WindowsMalwareCategoryPBrowserPlugin
// WindowsMalwareCategoryPAolExploit is a pointer to WindowsMalwareCategoryVAolExploit
WindowsMalwareCategoryPAolExploit = &_WindowsMalwareCategoryPAolExploit
// WindowsMalwareCategoryPNuker is a pointer to WindowsMalwareCategoryVNuker
WindowsMalwareCategoryPNuker = &_WindowsMalwareCategoryPNuker
// WindowsMalwareCategoryPSecurityDisabler is a pointer to WindowsMalwareCategoryVSecurityDisabler
WindowsMalwareCategoryPSecurityDisabler = &_WindowsMalwareCategoryPSecurityDisabler
// WindowsMalwareCategoryPJokeProgram is a pointer to WindowsMalwareCategoryVJokeProgram
WindowsMalwareCategoryPJokeProgram = &_WindowsMalwareCategoryPJokeProgram
// WindowsMalwareCategoryPHostileActiveXControl is a pointer to WindowsMalwareCategoryVHostileActiveXControl
WindowsMalwareCategoryPHostileActiveXControl = &_WindowsMalwareCategoryPHostileActiveXControl
// WindowsMalwareCategoryPSoftwareBundler is a pointer to WindowsMalwareCategoryVSoftwareBundler
WindowsMalwareCategoryPSoftwareBundler = &_WindowsMalwareCategoryPSoftwareBundler
// WindowsMalwareCategoryPStealthNotifier is a pointer to WindowsMalwareCategoryVStealthNotifier
WindowsMalwareCategoryPStealthNotifier = &_WindowsMalwareCategoryPStealthNotifier
// WindowsMalwareCategoryPSettingsModifier is a pointer to WindowsMalwareCategoryVSettingsModifier
WindowsMalwareCategoryPSettingsModifier = &_WindowsMalwareCategoryPSettingsModifier
// WindowsMalwareCategoryPToolBar is a pointer to WindowsMalwareCategoryVToolBar
WindowsMalwareCategoryPToolBar = &_WindowsMalwareCategoryPToolBar
// WindowsMalwareCategoryPRemoteControlSoftware is a pointer to WindowsMalwareCategoryVRemoteControlSoftware
WindowsMalwareCategoryPRemoteControlSoftware = &_WindowsMalwareCategoryPRemoteControlSoftware
// WindowsMalwareCategoryPTrojanFtp is a pointer to WindowsMalwareCategoryVTrojanFtp
WindowsMalwareCategoryPTrojanFtp = &_WindowsMalwareCategoryPTrojanFtp
// WindowsMalwareCategoryPPotentialUnwantedSoftware is a pointer to WindowsMalwareCategoryVPotentialUnwantedSoftware
WindowsMalwareCategoryPPotentialUnwantedSoftware = &_WindowsMalwareCategoryPPotentialUnwantedSoftware
// WindowsMalwareCategoryPIcqExploit is a pointer to WindowsMalwareCategoryVIcqExploit
WindowsMalwareCategoryPIcqExploit = &_WindowsMalwareCategoryPIcqExploit
// WindowsMalwareCategoryPTrojanTelnet is a pointer to WindowsMalwareCategoryVTrojanTelnet
WindowsMalwareCategoryPTrojanTelnet = &_WindowsMalwareCategoryPTrojanTelnet
// WindowsMalwareCategoryPExploit is a pointer to WindowsMalwareCategoryVExploit
WindowsMalwareCategoryPExploit = &_WindowsMalwareCategoryPExploit
// WindowsMalwareCategoryPFilesharingProgram is a pointer to WindowsMalwareCategoryVFilesharingProgram
WindowsMalwareCategoryPFilesharingProgram = &_WindowsMalwareCategoryPFilesharingProgram
// WindowsMalwareCategoryPMalwareCreationTool is a pointer to WindowsMalwareCategoryVMalwareCreationTool
WindowsMalwareCategoryPMalwareCreationTool = &_WindowsMalwareCategoryPMalwareCreationTool
// WindowsMalwareCategoryPRemote_Control_Software is a pointer to WindowsMalwareCategoryVRemote_Control_Software
WindowsMalwareCategoryPRemote_Control_Software = &_WindowsMalwareCategoryPRemote_Control_Software
// WindowsMalwareCategoryPTool is a pointer to WindowsMalwareCategoryVTool
WindowsMalwareCategoryPTool = &_WindowsMalwareCategoryPTool
// WindowsMalwareCategoryPTrojanDenialOfService is a pointer to WindowsMalwareCategoryVTrojanDenialOfService
WindowsMalwareCategoryPTrojanDenialOfService = &_WindowsMalwareCategoryPTrojanDenialOfService
// WindowsMalwareCategoryPTrojanDropper is a pointer to WindowsMalwareCategoryVTrojanDropper
WindowsMalwareCategoryPTrojanDropper = &_WindowsMalwareCategoryPTrojanDropper
// WindowsMalwareCategoryPTrojanMassMailer is a pointer to WindowsMalwareCategoryVTrojanMassMailer
WindowsMalwareCategoryPTrojanMassMailer = &_WindowsMalwareCategoryPTrojanMassMailer
// WindowsMalwareCategoryPTrojanMonitoringSoftware is a pointer to WindowsMalwareCategoryVTrojanMonitoringSoftware
WindowsMalwareCategoryPTrojanMonitoringSoftware = &_WindowsMalwareCategoryPTrojanMonitoringSoftware
// WindowsMalwareCategoryPTrojanProxyServer is a pointer to WindowsMalwareCategoryVTrojanProxyServer
WindowsMalwareCategoryPTrojanProxyServer = &_WindowsMalwareCategoryPTrojanProxyServer
// WindowsMalwareCategoryPVirus is a pointer to WindowsMalwareCategoryVVirus
WindowsMalwareCategoryPVirus = &_WindowsMalwareCategoryPVirus
// WindowsMalwareCategoryPKnown is a pointer to WindowsMalwareCategoryVKnown
WindowsMalwareCategoryPKnown = &_WindowsMalwareCategoryPKnown
// WindowsMalwareCategoryPUnknown is a pointer to WindowsMalwareCategoryVUnknown
WindowsMalwareCategoryPUnknown = &_WindowsMalwareCategoryPUnknown
// WindowsMalwareCategoryPSpp is a pointer to WindowsMalwareCategoryVSpp
WindowsMalwareCategoryPSpp = &_WindowsMalwareCategoryPSpp
// WindowsMalwareCategoryPBehavior is a pointer to WindowsMalwareCategoryVBehavior
WindowsMalwareCategoryPBehavior = &_WindowsMalwareCategoryPBehavior
// WindowsMalwareCategoryPVulnerability is a pointer to WindowsMalwareCategoryVVulnerability
WindowsMalwareCategoryPVulnerability = &_WindowsMalwareCategoryPVulnerability
// WindowsMalwareCategoryPPolicy is a pointer to WindowsMalwareCategoryVPolicy
WindowsMalwareCategoryPPolicy = &_WindowsMalwareCategoryPPolicy
// WindowsMalwareCategoryPEnterpriseUnwantedSoftware is a pointer to WindowsMalwareCategoryVEnterpriseUnwantedSoftware
WindowsMalwareCategoryPEnterpriseUnwantedSoftware = &_WindowsMalwareCategoryPEnterpriseUnwantedSoftware
// WindowsMalwareCategoryPRansom is a pointer to WindowsMalwareCategoryVRansom
WindowsMalwareCategoryPRansom = &_WindowsMalwareCategoryPRansom
// WindowsMalwareCategoryPHipsRule is a pointer to WindowsMalwareCategoryVHipsRule
WindowsMalwareCategoryPHipsRule = &_WindowsMalwareCategoryPHipsRule
)
var (
_WindowsMalwareCategoryPInvalid = WindowsMalwareCategoryVInvalid
_WindowsMalwareCategoryPAdware = WindowsMalwareCategoryVAdware
_WindowsMalwareCategoryPSpyware = WindowsMalwareCategoryVSpyware
_WindowsMalwareCategoryPPasswordStealer = WindowsMalwareCategoryVPasswordStealer
_WindowsMalwareCategoryPTrojanDownloader = WindowsMalwareCategoryVTrojanDownloader
_WindowsMalwareCategoryPWorm = WindowsMalwareCategoryVWorm
_WindowsMalwareCategoryPBackdoor = WindowsMalwareCategoryVBackdoor
_WindowsMalwareCategoryPRemoteAccessTrojan = WindowsMalwareCategoryVRemoteAccessTrojan
_WindowsMalwareCategoryPTrojan = WindowsMalwareCategoryVTrojan
_WindowsMalwareCategoryPEmailFlooder = WindowsMalwareCategoryVEmailFlooder
_WindowsMalwareCategoryPKeylogger = WindowsMalwareCategoryVKeylogger
_WindowsMalwareCategoryPDialer = WindowsMalwareCategoryVDialer
_WindowsMalwareCategoryPMonitoringSoftware = WindowsMalwareCategoryVMonitoringSoftware
_WindowsMalwareCategoryPBrowserModifier = WindowsMalwareCategoryVBrowserModifier
_WindowsMalwareCategoryPCookie = WindowsMalwareCategoryVCookie
_WindowsMalwareCategoryPBrowserPlugin = WindowsMalwareCategoryVBrowserPlugin
_WindowsMalwareCategoryPAolExploit = WindowsMalwareCategoryVAolExploit
_WindowsMalwareCategoryPNuker = WindowsMalwareCategoryVNuker
_WindowsMalwareCategoryPSecurityDisabler = WindowsMalwareCategoryVSecurityDisabler
_WindowsMalwareCategoryPJokeProgram = WindowsMalwareCategoryVJokeProgram
_WindowsMalwareCategoryPHostileActiveXControl = WindowsMalwareCategoryVHostileActiveXControl
_WindowsMalwareCategoryPSoftwareBundler = WindowsMalwareCategoryVSoftwareBundler
_WindowsMalwareCategoryPStealthNotifier = WindowsMalwareCategoryVStealthNotifier
_WindowsMalwareCategoryPSettingsModifier = WindowsMalwareCategoryVSettingsModifier
_WindowsMalwareCategoryPToolBar = WindowsMalwareCategoryVToolBar
_WindowsMalwareCategoryPRemoteControlSoftware = WindowsMalwareCategoryVRemoteControlSoftware
_WindowsMalwareCategoryPTrojanFtp = WindowsMalwareCategoryVTrojanFtp
_WindowsMalwareCategoryPPotentialUnwantedSoftware = WindowsMalwareCategoryVPotentialUnwantedSoftware
_WindowsMalwareCategoryPIcqExploit = WindowsMalwareCategoryVIcqExploit
_WindowsMalwareCategoryPTrojanTelnet = WindowsMalwareCategoryVTrojanTelnet
_WindowsMalwareCategoryPExploit = WindowsMalwareCategoryVExploit
_WindowsMalwareCategoryPFilesharingProgram = WindowsMalwareCategoryVFilesharingProgram
_WindowsMalwareCategoryPMalwareCreationTool = WindowsMalwareCategoryVMalwareCreationTool
_WindowsMalwareCategoryPRemote_Control_Software = WindowsMalwareCategoryVRemote_Control_Software
_WindowsMalwareCategoryPTool = WindowsMalwareCategoryVTool
_WindowsMalwareCategoryPTrojanDenialOfService = WindowsMalwareCategoryVTrojanDenialOfService
_WindowsMalwareCategoryPTrojanDropper = WindowsMalwareCategoryVTrojanDropper
_WindowsMalwareCategoryPTrojanMassMailer = WindowsMalwareCategoryVTrojanMassMailer
_WindowsMalwareCategoryPTrojanMonitoringSoftware = WindowsMalwareCategoryVTrojanMonitoringSoftware
_WindowsMalwareCategoryPTrojanProxyServer = WindowsMalwareCategoryVTrojanProxyServer
_WindowsMalwareCategoryPVirus = WindowsMalwareCategoryVVirus
_WindowsMalwareCategoryPKnown = WindowsMalwareCategoryVKnown
_WindowsMalwareCategoryPUnknown = WindowsMalwareCategoryVUnknown
_WindowsMalwareCategoryPSpp = WindowsMalwareCategoryVSpp
_WindowsMalwareCategoryPBehavior = WindowsMalwareCategoryVBehavior
_WindowsMalwareCategoryPVulnerability = WindowsMalwareCategoryVVulnerability
_WindowsMalwareCategoryPPolicy = WindowsMalwareCategoryVPolicy
_WindowsMalwareCategoryPEnterpriseUnwantedSoftware = WindowsMalwareCategoryVEnterpriseUnwantedSoftware
_WindowsMalwareCategoryPRansom = WindowsMalwareCategoryVRansom
_WindowsMalwareCategoryPHipsRule = WindowsMalwareCategoryVHipsRule
)
// WindowsMalwareExecutionState undocumented
type WindowsMalwareExecutionState string
const (
// WindowsMalwareExecutionStateVUnknown undocumented
WindowsMalwareExecutionStateVUnknown WindowsMalwareExecutionState = "unknown"
// WindowsMalwareExecutionStateVBlocked undocumented
WindowsMalwareExecutionStateVBlocked WindowsMalwareExecutionState = "blocked"
// WindowsMalwareExecutionStateVAllowed undocumented
WindowsMalwareExecutionStateVAllowed WindowsMalwareExecutionState = "allowed"
// WindowsMalwareExecutionStateVRunning undocumented
WindowsMalwareExecutionStateVRunning WindowsMalwareExecutionState = "running"
// WindowsMalwareExecutionStateVNotRunning undocumented
WindowsMalwareExecutionStateVNotRunning WindowsMalwareExecutionState = "notRunning"
)
var (
// WindowsMalwareExecutionStatePUnknown is a pointer to WindowsMalwareExecutionStateVUnknown
WindowsMalwareExecutionStatePUnknown = &_WindowsMalwareExecutionStatePUnknown
// WindowsMalwareExecutionStatePBlocked is a pointer to WindowsMalwareExecutionStateVBlocked
WindowsMalwareExecutionStatePBlocked = &_WindowsMalwareExecutionStatePBlocked
// WindowsMalwareExecutionStatePAllowed is a pointer to WindowsMalwareExecutionStateVAllowed
WindowsMalwareExecutionStatePAllowed = &_WindowsMalwareExecutionStatePAllowed
// WindowsMalwareExecutionStatePRunning is a pointer to WindowsMalwareExecutionStateVRunning
WindowsMalwareExecutionStatePRunning = &_WindowsMalwareExecutionStatePRunning
// WindowsMalwareExecutionStatePNotRunning is a pointer to WindowsMalwareExecutionStateVNotRunning
WindowsMalwareExecutionStatePNotRunning = &_WindowsMalwareExecutionStatePNotRunning
)
var (
_WindowsMalwareExecutionStatePUnknown = WindowsMalwareExecutionStateVUnknown
_WindowsMalwareExecutionStatePBlocked = WindowsMalwareExecutionStateVBlocked
_WindowsMalwareExecutionStatePAllowed = WindowsMalwareExecutionStateVAllowed
_WindowsMalwareExecutionStatePRunning = WindowsMalwareExecutionStateVRunning
_WindowsMalwareExecutionStatePNotRunning = WindowsMalwareExecutionStateVNotRunning
)
// WindowsMalwareSeverity undocumented
type WindowsMalwareSeverity string
const (
// WindowsMalwareSeverityVUnknown undocumented
WindowsMalwareSeverityVUnknown WindowsMalwareSeverity = "unknown"
// WindowsMalwareSeverityVLow undocumented
WindowsMalwareSeverityVLow WindowsMalwareSeverity = "low"
// WindowsMalwareSeverityVModerate undocumented
WindowsMalwareSeverityVModerate WindowsMalwareSeverity = "moderate"
// WindowsMalwareSeverityVHigh undocumented
WindowsMalwareSeverityVHigh WindowsMalwareSeverity = "high"
// WindowsMalwareSeverityVSevere undocumented
WindowsMalwareSeverityVSevere WindowsMalwareSeverity = "severe"
)
var (
// WindowsMalwareSeverityPUnknown is a pointer to WindowsMalwareSeverityVUnknown
WindowsMalwareSeverityPUnknown = &_WindowsMalwareSeverityPUnknown
// WindowsMalwareSeverityPLow is a pointer to WindowsMalwareSeverityVLow
WindowsMalwareSeverityPLow = &_WindowsMalwareSeverityPLow
// WindowsMalwareSeverityPModerate is a pointer to WindowsMalwareSeverityVModerate
WindowsMalwareSeverityPModerate = &_WindowsMalwareSeverityPModerate
// WindowsMalwareSeverityPHigh is a pointer to WindowsMalwareSeverityVHigh
WindowsMalwareSeverityPHigh = &_WindowsMalwareSeverityPHigh
// WindowsMalwareSeverityPSevere is a pointer to WindowsMalwareSeverityVSevere
WindowsMalwareSeverityPSevere = &_WindowsMalwareSeverityPSevere
)
var (
_WindowsMalwareSeverityPUnknown = WindowsMalwareSeverityVUnknown
_WindowsMalwareSeverityPLow = WindowsMalwareSeverityVLow
_WindowsMalwareSeverityPModerate = WindowsMalwareSeverityVModerate
_WindowsMalwareSeverityPHigh = WindowsMalwareSeverityVHigh
_WindowsMalwareSeverityPSevere = WindowsMalwareSeverityVSevere
)
// WindowsMalwareState undocumented
type WindowsMalwareState string
const (
// WindowsMalwareStateVUnknown undocumented
WindowsMalwareStateVUnknown WindowsMalwareState = "unknown"
// WindowsMalwareStateVDetected undocumented
WindowsMalwareStateVDetected WindowsMalwareState = "detected"
// WindowsMalwareStateVCleaned undocumented
WindowsMalwareStateVCleaned WindowsMalwareState = "cleaned"
// WindowsMalwareStateVQuarantined undocumented
WindowsMalwareStateVQuarantined WindowsMalwareState = "quarantined"
// WindowsMalwareStateVRemoved undocumented
WindowsMalwareStateVRemoved WindowsMalwareState = "removed"
// WindowsMalwareStateVAllowed undocumented
WindowsMalwareStateVAllowed WindowsMalwareState = "allowed"
// WindowsMalwareStateVBlocked undocumented
WindowsMalwareStateVBlocked WindowsMalwareState = "blocked"
// WindowsMalwareStateVCleanFailed undocumented
WindowsMalwareStateVCleanFailed WindowsMalwareState = "cleanFailed"
// WindowsMalwareStateVQuarantineFailed undocumented
WindowsMalwareStateVQuarantineFailed WindowsMalwareState = "quarantineFailed"
// WindowsMalwareStateVRemoveFailed undocumented
WindowsMalwareStateVRemoveFailed WindowsMalwareState = "removeFailed"
// WindowsMalwareStateVAllowFailed undocumented
WindowsMalwareStateVAllowFailed WindowsMalwareState = "allowFailed"
// WindowsMalwareStateVAbandoned undocumented
WindowsMalwareStateVAbandoned WindowsMalwareState = "abandoned"
// WindowsMalwareStateVBlockFailed undocumented
WindowsMalwareStateVBlockFailed WindowsMalwareState = "blockFailed"
)
var (
// WindowsMalwareStatePUnknown is a pointer to WindowsMalwareStateVUnknown
WindowsMalwareStatePUnknown = &_WindowsMalwareStatePUnknown
// WindowsMalwareStatePDetected is a pointer to WindowsMalwareStateVDetected
WindowsMalwareStatePDetected = &_WindowsMalwareStatePDetected
// WindowsMalwareStatePCleaned is a pointer to WindowsMalwareStateVCleaned
WindowsMalwareStatePCleaned = &_WindowsMalwareStatePCleaned
// WindowsMalwareStatePQuarantined is a pointer to WindowsMalwareStateVQuarantined
WindowsMalwareStatePQuarantined = &_WindowsMalwareStatePQuarantined
// WindowsMalwareStatePRemoved is a pointer to WindowsMalwareStateVRemoved
WindowsMalwareStatePRemoved = &_WindowsMalwareStatePRemoved
// WindowsMalwareStatePAllowed is a pointer to WindowsMalwareStateVAllowed
WindowsMalwareStatePAllowed = &_WindowsMalwareStatePAllowed
// WindowsMalwareStatePBlocked is a pointer to WindowsMalwareStateVBlocked
WindowsMalwareStatePBlocked = &_WindowsMalwareStatePBlocked
// WindowsMalwareStatePCleanFailed is a pointer to WindowsMalwareStateVCleanFailed
WindowsMalwareStatePCleanFailed = &_WindowsMalwareStatePCleanFailed
// WindowsMalwareStatePQuarantineFailed is a pointer to WindowsMalwareStateVQuarantineFailed
WindowsMalwareStatePQuarantineFailed = &_WindowsMalwareStatePQuarantineFailed
// WindowsMalwareStatePRemoveFailed is a pointer to WindowsMalwareStateVRemoveFailed
WindowsMalwareStatePRemoveFailed = &_WindowsMalwareStatePRemoveFailed
// WindowsMalwareStatePAllowFailed is a pointer to WindowsMalwareStateVAllowFailed
WindowsMalwareStatePAllowFailed = &_WindowsMalwareStatePAllowFailed
// WindowsMalwareStatePAbandoned is a pointer to WindowsMalwareStateVAbandoned
WindowsMalwareStatePAbandoned = &_WindowsMalwareStatePAbandoned
// WindowsMalwareStatePBlockFailed is a pointer to WindowsMalwareStateVBlockFailed
WindowsMalwareStatePBlockFailed = &_WindowsMalwareStatePBlockFailed
)
var (
_WindowsMalwareStatePUnknown = WindowsMalwareStateVUnknown
_WindowsMalwareStatePDetected = WindowsMalwareStateVDetected
_WindowsMalwareStatePCleaned = WindowsMalwareStateVCleaned
_WindowsMalwareStatePQuarantined = WindowsMalwareStateVQuarantined
_WindowsMalwareStatePRemoved = WindowsMalwareStateVRemoved
_WindowsMalwareStatePAllowed = WindowsMalwareStateVAllowed
_WindowsMalwareStatePBlocked = WindowsMalwareStateVBlocked
_WindowsMalwareStatePCleanFailed = WindowsMalwareStateVCleanFailed
_WindowsMalwareStatePQuarantineFailed = WindowsMalwareStateVQuarantineFailed
_WindowsMalwareStatePRemoveFailed = WindowsMalwareStateVRemoveFailed
_WindowsMalwareStatePAllowFailed = WindowsMalwareStateVAllowFailed
_WindowsMalwareStatePAbandoned = WindowsMalwareStateVAbandoned
_WindowsMalwareStatePBlockFailed = WindowsMalwareStateVBlockFailed
)
// WindowsMalwareThreatState undocumented
type WindowsMalwareThreatState string
const (
// WindowsMalwareThreatStateVActive undocumented
WindowsMalwareThreatStateVActive WindowsMalwareThreatState = "active"
// WindowsMalwareThreatStateVActionFailed undocumented
WindowsMalwareThreatStateVActionFailed WindowsMalwareThreatState = "actionFailed"
// WindowsMalwareThreatStateVManualStepsRequired undocumented
WindowsMalwareThreatStateVManualStepsRequired WindowsMalwareThreatState = "manualStepsRequired"
// WindowsMalwareThreatStateVFullScanRequired undocumented
WindowsMalwareThreatStateVFullScanRequired WindowsMalwareThreatState = "fullScanRequired"
// WindowsMalwareThreatStateVRebootRequired undocumented
WindowsMalwareThreatStateVRebootRequired WindowsMalwareThreatState = "rebootRequired"
// WindowsMalwareThreatStateVRemediatedWithNonCriticalFailures undocumented
WindowsMalwareThreatStateVRemediatedWithNonCriticalFailures WindowsMalwareThreatState = "remediatedWithNonCriticalFailures"
// WindowsMalwareThreatStateVQuarantined undocumented
WindowsMalwareThreatStateVQuarantined WindowsMalwareThreatState = "quarantined"
// WindowsMalwareThreatStateVRemoved undocumented
WindowsMalwareThreatStateVRemoved WindowsMalwareThreatState = "removed"
// WindowsMalwareThreatStateVCleaned undocumented
WindowsMalwareThreatStateVCleaned WindowsMalwareThreatState = "cleaned"
// WindowsMalwareThreatStateVAllowed undocumented
WindowsMalwareThreatStateVAllowed WindowsMalwareThreatState = "allowed"
// WindowsMalwareThreatStateVNoStatusCleared undocumented
WindowsMalwareThreatStateVNoStatusCleared WindowsMalwareThreatState = "noStatusCleared"
)
var (
// WindowsMalwareThreatStatePActive is a pointer to WindowsMalwareThreatStateVActive
WindowsMalwareThreatStatePActive = &_WindowsMalwareThreatStatePActive
// WindowsMalwareThreatStatePActionFailed is a pointer to WindowsMalwareThreatStateVActionFailed
WindowsMalwareThreatStatePActionFailed = &_WindowsMalwareThreatStatePActionFailed
// WindowsMalwareThreatStatePManualStepsRequired is a pointer to WindowsMalwareThreatStateVManualStepsRequired
WindowsMalwareThreatStatePManualStepsRequired = &_WindowsMalwareThreatStatePManualStepsRequired
// WindowsMalwareThreatStatePFullScanRequired is a pointer to WindowsMalwareThreatStateVFullScanRequired
WindowsMalwareThreatStatePFullScanRequired = &_WindowsMalwareThreatStatePFullScanRequired
// WindowsMalwareThreatStatePRebootRequired is a pointer to WindowsMalwareThreatStateVRebootRequired
WindowsMalwareThreatStatePRebootRequired = &_WindowsMalwareThreatStatePRebootRequired
// WindowsMalwareThreatStatePRemediatedWithNonCriticalFailures is a pointer to WindowsMalwareThreatStateVRemediatedWithNonCriticalFailures
WindowsMalwareThreatStatePRemediatedWithNonCriticalFailures = &_WindowsMalwareThreatStatePRemediatedWithNonCriticalFailures
// WindowsMalwareThreatStatePQuarantined is a pointer to WindowsMalwareThreatStateVQuarantined
WindowsMalwareThreatStatePQuarantined = &_WindowsMalwareThreatStatePQuarantined
// WindowsMalwareThreatStatePRemoved is a pointer to WindowsMalwareThreatStateVRemoved
WindowsMalwareThreatStatePRemoved = &_WindowsMalwareThreatStatePRemoved
// WindowsMalwareThreatStatePCleaned is a pointer to WindowsMalwareThreatStateVCleaned
WindowsMalwareThreatStatePCleaned = &_WindowsMalwareThreatStatePCleaned
// WindowsMalwareThreatStatePAllowed is a pointer to WindowsMalwareThreatStateVAllowed
WindowsMalwareThreatStatePAllowed = &_WindowsMalwareThreatStatePAllowed
// WindowsMalwareThreatStatePNoStatusCleared is a pointer to WindowsMalwareThreatStateVNoStatusCleared
WindowsMalwareThreatStatePNoStatusCleared = &_WindowsMalwareThreatStatePNoStatusCleared
)
var (
_WindowsMalwareThreatStatePActive = WindowsMalwareThreatStateVActive
_WindowsMalwareThreatStatePActionFailed = WindowsMalwareThreatStateVActionFailed
_WindowsMalwareThreatStatePManualStepsRequired = WindowsMalwareThreatStateVManualStepsRequired
_WindowsMalwareThreatStatePFullScanRequired = WindowsMalwareThreatStateVFullScanRequired
_WindowsMalwareThreatStatePRebootRequired = WindowsMalwareThreatStateVRebootRequired
_WindowsMalwareThreatStatePRemediatedWithNonCriticalFailures = WindowsMalwareThreatStateVRemediatedWithNonCriticalFailures
_WindowsMalwareThreatStatePQuarantined = WindowsMalwareThreatStateVQuarantined
_WindowsMalwareThreatStatePRemoved = WindowsMalwareThreatStateVRemoved
_WindowsMalwareThreatStatePCleaned = WindowsMalwareThreatStateVCleaned
_WindowsMalwareThreatStatePAllowed = WindowsMalwareThreatStateVAllowed
_WindowsMalwareThreatStatePNoStatusCleared = WindowsMalwareThreatStateVNoStatusCleared
)
// WindowsPrivacyDataAccessLevel undocumented
type WindowsPrivacyDataAccessLevel string
const (
// WindowsPrivacyDataAccessLevelVNotConfigured undocumented
WindowsPrivacyDataAccessLevelVNotConfigured WindowsPrivacyDataAccessLevel = "notConfigured"
// WindowsPrivacyDataAccessLevelVForceAllow undocumented
WindowsPrivacyDataAccessLevelVForceAllow WindowsPrivacyDataAccessLevel = "forceAllow"
// WindowsPrivacyDataAccessLevelVForceDeny undocumented
WindowsPrivacyDataAccessLevelVForceDeny WindowsPrivacyDataAccessLevel = "forceDeny"
// WindowsPrivacyDataAccessLevelVUserInControl undocumented
WindowsPrivacyDataAccessLevelVUserInControl WindowsPrivacyDataAccessLevel = "userInControl"
)
var (
// WindowsPrivacyDataAccessLevelPNotConfigured is a pointer to WindowsPrivacyDataAccessLevelVNotConfigured
WindowsPrivacyDataAccessLevelPNotConfigured = &_WindowsPrivacyDataAccessLevelPNotConfigured
// WindowsPrivacyDataAccessLevelPForceAllow is a pointer to WindowsPrivacyDataAccessLevelVForceAllow
WindowsPrivacyDataAccessLevelPForceAllow = &_WindowsPrivacyDataAccessLevelPForceAllow
// WindowsPrivacyDataAccessLevelPForceDeny is a pointer to WindowsPrivacyDataAccessLevelVForceDeny
WindowsPrivacyDataAccessLevelPForceDeny = &_WindowsPrivacyDataAccessLevelPForceDeny
// WindowsPrivacyDataAccessLevelPUserInControl is a pointer to WindowsPrivacyDataAccessLevelVUserInControl
WindowsPrivacyDataAccessLevelPUserInControl = &_WindowsPrivacyDataAccessLevelPUserInControl
)
var (
_WindowsPrivacyDataAccessLevelPNotConfigured = WindowsPrivacyDataAccessLevelVNotConfigured
_WindowsPrivacyDataAccessLevelPForceAllow = WindowsPrivacyDataAccessLevelVForceAllow
_WindowsPrivacyDataAccessLevelPForceDeny = WindowsPrivacyDataAccessLevelVForceDeny
_WindowsPrivacyDataAccessLevelPUserInControl = WindowsPrivacyDataAccessLevelVUserInControl
)
// WindowsPrivacyDataCategory undocumented
type WindowsPrivacyDataCategory string
const (
// WindowsPrivacyDataCategoryVNotConfigured undocumented
WindowsPrivacyDataCategoryVNotConfigured WindowsPrivacyDataCategory = "notConfigured"
// WindowsPrivacyDataCategoryVAccountInfo undocumented
WindowsPrivacyDataCategoryVAccountInfo WindowsPrivacyDataCategory = "accountInfo"
// WindowsPrivacyDataCategoryVAppsRunInBackground undocumented
WindowsPrivacyDataCategoryVAppsRunInBackground WindowsPrivacyDataCategory = "appsRunInBackground"
// WindowsPrivacyDataCategoryVCalendar undocumented
WindowsPrivacyDataCategoryVCalendar WindowsPrivacyDataCategory = "calendar"
// WindowsPrivacyDataCategoryVCallHistory undocumented
WindowsPrivacyDataCategoryVCallHistory WindowsPrivacyDataCategory = "callHistory"
// WindowsPrivacyDataCategoryVCamera undocumented
WindowsPrivacyDataCategoryVCamera WindowsPrivacyDataCategory = "camera"
// WindowsPrivacyDataCategoryVContacts undocumented
WindowsPrivacyDataCategoryVContacts WindowsPrivacyDataCategory = "contacts"
// WindowsPrivacyDataCategoryVDiagnosticsInfo undocumented
WindowsPrivacyDataCategoryVDiagnosticsInfo WindowsPrivacyDataCategory = "diagnosticsInfo"
// WindowsPrivacyDataCategoryVEmail undocumented
WindowsPrivacyDataCategoryVEmail WindowsPrivacyDataCategory = "email"
// WindowsPrivacyDataCategoryVLocation undocumented
WindowsPrivacyDataCategoryVLocation WindowsPrivacyDataCategory = "location"
// WindowsPrivacyDataCategoryVMessaging undocumented
WindowsPrivacyDataCategoryVMessaging WindowsPrivacyDataCategory = "messaging"
// WindowsPrivacyDataCategoryVMicrophone undocumented
WindowsPrivacyDataCategoryVMicrophone WindowsPrivacyDataCategory = "microphone"
// WindowsPrivacyDataCategoryVMotion undocumented
WindowsPrivacyDataCategoryVMotion WindowsPrivacyDataCategory = "motion"
// WindowsPrivacyDataCategoryVNotifications undocumented
WindowsPrivacyDataCategoryVNotifications WindowsPrivacyDataCategory = "notifications"
// WindowsPrivacyDataCategoryVPhone undocumented
WindowsPrivacyDataCategoryVPhone WindowsPrivacyDataCategory = "phone"
// WindowsPrivacyDataCategoryVRadios undocumented
WindowsPrivacyDataCategoryVRadios WindowsPrivacyDataCategory = "radios"
// WindowsPrivacyDataCategoryVTasks undocumented
WindowsPrivacyDataCategoryVTasks WindowsPrivacyDataCategory = "tasks"
// WindowsPrivacyDataCategoryVSyncWithDevices undocumented
WindowsPrivacyDataCategoryVSyncWithDevices WindowsPrivacyDataCategory = "syncWithDevices"
// WindowsPrivacyDataCategoryVTrustedDevices undocumented
WindowsPrivacyDataCategoryVTrustedDevices WindowsPrivacyDataCategory = "trustedDevices"
)
var (
// WindowsPrivacyDataCategoryPNotConfigured is a pointer to WindowsPrivacyDataCategoryVNotConfigured
WindowsPrivacyDataCategoryPNotConfigured = &_WindowsPrivacyDataCategoryPNotConfigured
// WindowsPrivacyDataCategoryPAccountInfo is a pointer to WindowsPrivacyDataCategoryVAccountInfo
WindowsPrivacyDataCategoryPAccountInfo = &_WindowsPrivacyDataCategoryPAccountInfo
// WindowsPrivacyDataCategoryPAppsRunInBackground is a pointer to WindowsPrivacyDataCategoryVAppsRunInBackground
WindowsPrivacyDataCategoryPAppsRunInBackground = &_WindowsPrivacyDataCategoryPAppsRunInBackground
// WindowsPrivacyDataCategoryPCalendar is a pointer to WindowsPrivacyDataCategoryVCalendar
WindowsPrivacyDataCategoryPCalendar = &_WindowsPrivacyDataCategoryPCalendar
// WindowsPrivacyDataCategoryPCallHistory is a pointer to WindowsPrivacyDataCategoryVCallHistory
WindowsPrivacyDataCategoryPCallHistory = &_WindowsPrivacyDataCategoryPCallHistory
// WindowsPrivacyDataCategoryPCamera is a pointer to WindowsPrivacyDataCategoryVCamera
WindowsPrivacyDataCategoryPCamera = &_WindowsPrivacyDataCategoryPCamera
// WindowsPrivacyDataCategoryPContacts is a pointer to WindowsPrivacyDataCategoryVContacts
WindowsPrivacyDataCategoryPContacts = &_WindowsPrivacyDataCategoryPContacts
// WindowsPrivacyDataCategoryPDiagnosticsInfo is a pointer to WindowsPrivacyDataCategoryVDiagnosticsInfo
WindowsPrivacyDataCategoryPDiagnosticsInfo = &_WindowsPrivacyDataCategoryPDiagnosticsInfo
// WindowsPrivacyDataCategoryPEmail is a pointer to WindowsPrivacyDataCategoryVEmail
WindowsPrivacyDataCategoryPEmail = &_WindowsPrivacyDataCategoryPEmail
// WindowsPrivacyDataCategoryPLocation is a pointer to WindowsPrivacyDataCategoryVLocation
WindowsPrivacyDataCategoryPLocation = &_WindowsPrivacyDataCategoryPLocation
// WindowsPrivacyDataCategoryPMessaging is a pointer to WindowsPrivacyDataCategoryVMessaging
WindowsPrivacyDataCategoryPMessaging = &_WindowsPrivacyDataCategoryPMessaging
// WindowsPrivacyDataCategoryPMicrophone is a pointer to WindowsPrivacyDataCategoryVMicrophone
WindowsPrivacyDataCategoryPMicrophone = &_WindowsPrivacyDataCategoryPMicrophone
// WindowsPrivacyDataCategoryPMotion is a pointer to WindowsPrivacyDataCategoryVMotion
WindowsPrivacyDataCategoryPMotion = &_WindowsPrivacyDataCategoryPMotion
// WindowsPrivacyDataCategoryPNotifications is a pointer to WindowsPrivacyDataCategoryVNotifications
WindowsPrivacyDataCategoryPNotifications = &_WindowsPrivacyDataCategoryPNotifications
// WindowsPrivacyDataCategoryPPhone is a pointer to WindowsPrivacyDataCategoryVPhone
WindowsPrivacyDataCategoryPPhone = &_WindowsPrivacyDataCategoryPPhone
// WindowsPrivacyDataCategoryPRadios is a pointer to WindowsPrivacyDataCategoryVRadios
WindowsPrivacyDataCategoryPRadios = &_WindowsPrivacyDataCategoryPRadios
// WindowsPrivacyDataCategoryPTasks is a pointer to WindowsPrivacyDataCategoryVTasks
WindowsPrivacyDataCategoryPTasks = &_WindowsPrivacyDataCategoryPTasks
// WindowsPrivacyDataCategoryPSyncWithDevices is a pointer to WindowsPrivacyDataCategoryVSyncWithDevices
WindowsPrivacyDataCategoryPSyncWithDevices = &_WindowsPrivacyDataCategoryPSyncWithDevices
// WindowsPrivacyDataCategoryPTrustedDevices is a pointer to WindowsPrivacyDataCategoryVTrustedDevices
WindowsPrivacyDataCategoryPTrustedDevices = &_WindowsPrivacyDataCategoryPTrustedDevices
)
var (
_WindowsPrivacyDataCategoryPNotConfigured = WindowsPrivacyDataCategoryVNotConfigured
_WindowsPrivacyDataCategoryPAccountInfo = WindowsPrivacyDataCategoryVAccountInfo
_WindowsPrivacyDataCategoryPAppsRunInBackground = WindowsPrivacyDataCategoryVAppsRunInBackground
_WindowsPrivacyDataCategoryPCalendar = WindowsPrivacyDataCategoryVCalendar
_WindowsPrivacyDataCategoryPCallHistory = WindowsPrivacyDataCategoryVCallHistory
_WindowsPrivacyDataCategoryPCamera = WindowsPrivacyDataCategoryVCamera
_WindowsPrivacyDataCategoryPContacts = WindowsPrivacyDataCategoryVContacts
_WindowsPrivacyDataCategoryPDiagnosticsInfo = WindowsPrivacyDataCategoryVDiagnosticsInfo
_WindowsPrivacyDataCategoryPEmail = WindowsPrivacyDataCategoryVEmail
_WindowsPrivacyDataCategoryPLocation = WindowsPrivacyDataCategoryVLocation
_WindowsPrivacyDataCategoryPMessaging = WindowsPrivacyDataCategoryVMessaging
_WindowsPrivacyDataCategoryPMicrophone = WindowsPrivacyDataCategoryVMicrophone
_WindowsPrivacyDataCategoryPMotion = WindowsPrivacyDataCategoryVMotion
_WindowsPrivacyDataCategoryPNotifications = WindowsPrivacyDataCategoryVNotifications
_WindowsPrivacyDataCategoryPPhone = WindowsPrivacyDataCategoryVPhone
_WindowsPrivacyDataCategoryPRadios = WindowsPrivacyDataCategoryVRadios
_WindowsPrivacyDataCategoryPTasks = WindowsPrivacyDataCategoryVTasks
_WindowsPrivacyDataCategoryPSyncWithDevices = WindowsPrivacyDataCategoryVSyncWithDevices
_WindowsPrivacyDataCategoryPTrustedDevices = WindowsPrivacyDataCategoryVTrustedDevices
)
// WindowsSModeConfiguration undocumented
type WindowsSModeConfiguration string
const (
// WindowsSModeConfigurationVNoRestriction undocumented
WindowsSModeConfigurationVNoRestriction WindowsSModeConfiguration = "noRestriction"
// WindowsSModeConfigurationVBlock undocumented
WindowsSModeConfigurationVBlock WindowsSModeConfiguration = "block"
// WindowsSModeConfigurationVUnlock undocumented
WindowsSModeConfigurationVUnlock WindowsSModeConfiguration = "unlock"
)
var (
// WindowsSModeConfigurationPNoRestriction is a pointer to WindowsSModeConfigurationVNoRestriction
WindowsSModeConfigurationPNoRestriction = &_WindowsSModeConfigurationPNoRestriction
// WindowsSModeConfigurationPBlock is a pointer to WindowsSModeConfigurationVBlock
WindowsSModeConfigurationPBlock = &_WindowsSModeConfigurationPBlock
// WindowsSModeConfigurationPUnlock is a pointer to WindowsSModeConfigurationVUnlock
WindowsSModeConfigurationPUnlock = &_WindowsSModeConfigurationPUnlock
)
var (
_WindowsSModeConfigurationPNoRestriction = WindowsSModeConfigurationVNoRestriction
_WindowsSModeConfigurationPBlock = WindowsSModeConfigurationVBlock
_WindowsSModeConfigurationPUnlock = WindowsSModeConfigurationVUnlock
)
// WindowsSpotlightEnablementSettings undocumented
type WindowsSpotlightEnablementSettings string
const (
// WindowsSpotlightEnablementSettingsVNotConfigured undocumented
WindowsSpotlightEnablementSettingsVNotConfigured WindowsSpotlightEnablementSettings = "notConfigured"
// WindowsSpotlightEnablementSettingsVDisabled undocumented
WindowsSpotlightEnablementSettingsVDisabled WindowsSpotlightEnablementSettings = "disabled"
// WindowsSpotlightEnablementSettingsVEnabled undocumented
WindowsSpotlightEnablementSettingsVEnabled WindowsSpotlightEnablementSettings = "enabled"
)
var (
// WindowsSpotlightEnablementSettingsPNotConfigured is a pointer to WindowsSpotlightEnablementSettingsVNotConfigured
WindowsSpotlightEnablementSettingsPNotConfigured = &_WindowsSpotlightEnablementSettingsPNotConfigured
// WindowsSpotlightEnablementSettingsPDisabled is a pointer to WindowsSpotlightEnablementSettingsVDisabled
WindowsSpotlightEnablementSettingsPDisabled = &_WindowsSpotlightEnablementSettingsPDisabled
// WindowsSpotlightEnablementSettingsPEnabled is a pointer to WindowsSpotlightEnablementSettingsVEnabled
WindowsSpotlightEnablementSettingsPEnabled = &_WindowsSpotlightEnablementSettingsPEnabled
)
var (
_WindowsSpotlightEnablementSettingsPNotConfigured = WindowsSpotlightEnablementSettingsVNotConfigured
_WindowsSpotlightEnablementSettingsPDisabled = WindowsSpotlightEnablementSettingsVDisabled
_WindowsSpotlightEnablementSettingsPEnabled = WindowsSpotlightEnablementSettingsVEnabled
)
// WindowsStartMenuAppListVisibilityType undocumented
type WindowsStartMenuAppListVisibilityType string
const (
// WindowsStartMenuAppListVisibilityTypeVUserDefined undocumented
WindowsStartMenuAppListVisibilityTypeVUserDefined WindowsStartMenuAppListVisibilityType = "userDefined"
// WindowsStartMenuAppListVisibilityTypeVCollapse undocumented
WindowsStartMenuAppListVisibilityTypeVCollapse WindowsStartMenuAppListVisibilityType = "collapse"
// WindowsStartMenuAppListVisibilityTypeVRemove undocumented
WindowsStartMenuAppListVisibilityTypeVRemove WindowsStartMenuAppListVisibilityType = "remove"
// WindowsStartMenuAppListVisibilityTypeVDisableSettingsApp undocumented
WindowsStartMenuAppListVisibilityTypeVDisableSettingsApp WindowsStartMenuAppListVisibilityType = "disableSettingsApp"
)
var (
// WindowsStartMenuAppListVisibilityTypePUserDefined is a pointer to WindowsStartMenuAppListVisibilityTypeVUserDefined
WindowsStartMenuAppListVisibilityTypePUserDefined = &_WindowsStartMenuAppListVisibilityTypePUserDefined
// WindowsStartMenuAppListVisibilityTypePCollapse is a pointer to WindowsStartMenuAppListVisibilityTypeVCollapse
WindowsStartMenuAppListVisibilityTypePCollapse = &_WindowsStartMenuAppListVisibilityTypePCollapse
// WindowsStartMenuAppListVisibilityTypePRemove is a pointer to WindowsStartMenuAppListVisibilityTypeVRemove
WindowsStartMenuAppListVisibilityTypePRemove = &_WindowsStartMenuAppListVisibilityTypePRemove
// WindowsStartMenuAppListVisibilityTypePDisableSettingsApp is a pointer to WindowsStartMenuAppListVisibilityTypeVDisableSettingsApp
WindowsStartMenuAppListVisibilityTypePDisableSettingsApp = &_WindowsStartMenuAppListVisibilityTypePDisableSettingsApp
)
var (
_WindowsStartMenuAppListVisibilityTypePUserDefined = WindowsStartMenuAppListVisibilityTypeVUserDefined
_WindowsStartMenuAppListVisibilityTypePCollapse = WindowsStartMenuAppListVisibilityTypeVCollapse
_WindowsStartMenuAppListVisibilityTypePRemove = WindowsStartMenuAppListVisibilityTypeVRemove
_WindowsStartMenuAppListVisibilityTypePDisableSettingsApp = WindowsStartMenuAppListVisibilityTypeVDisableSettingsApp
)
// WindowsStartMenuModeType undocumented
type WindowsStartMenuModeType string
const (
// WindowsStartMenuModeTypeVUserDefined undocumented
WindowsStartMenuModeTypeVUserDefined WindowsStartMenuModeType = "userDefined"
// WindowsStartMenuModeTypeVFullScreen undocumented
WindowsStartMenuModeTypeVFullScreen WindowsStartMenuModeType = "fullScreen"
// WindowsStartMenuModeTypeVNonFullScreen undocumented
WindowsStartMenuModeTypeVNonFullScreen WindowsStartMenuModeType = "nonFullScreen"
)
var (
// WindowsStartMenuModeTypePUserDefined is a pointer to WindowsStartMenuModeTypeVUserDefined
WindowsStartMenuModeTypePUserDefined = &_WindowsStartMenuModeTypePUserDefined
// WindowsStartMenuModeTypePFullScreen is a pointer to WindowsStartMenuModeTypeVFullScreen
WindowsStartMenuModeTypePFullScreen = &_WindowsStartMenuModeTypePFullScreen
// WindowsStartMenuModeTypePNonFullScreen is a pointer to WindowsStartMenuModeTypeVNonFullScreen
WindowsStartMenuModeTypePNonFullScreen = &_WindowsStartMenuModeTypePNonFullScreen
)
var (
_WindowsStartMenuModeTypePUserDefined = WindowsStartMenuModeTypeVUserDefined
_WindowsStartMenuModeTypePFullScreen = WindowsStartMenuModeTypeVFullScreen
_WindowsStartMenuModeTypePNonFullScreen = WindowsStartMenuModeTypeVNonFullScreen
)
// WindowsUpdateForBusinessUpdateWeeks undocumented
type WindowsUpdateForBusinessUpdateWeeks string
const (
// WindowsUpdateForBusinessUpdateWeeksVUserDefined undocumented
WindowsUpdateForBusinessUpdateWeeksVUserDefined WindowsUpdateForBusinessUpdateWeeks = "userDefined"
// WindowsUpdateForBusinessUpdateWeeksVFirstWeek undocumented
WindowsUpdateForBusinessUpdateWeeksVFirstWeek WindowsUpdateForBusinessUpdateWeeks = "firstWeek"
// WindowsUpdateForBusinessUpdateWeeksVSecondWeek undocumented
WindowsUpdateForBusinessUpdateWeeksVSecondWeek WindowsUpdateForBusinessUpdateWeeks = "secondWeek"
// WindowsUpdateForBusinessUpdateWeeksVThirdWeek undocumented
WindowsUpdateForBusinessUpdateWeeksVThirdWeek WindowsUpdateForBusinessUpdateWeeks = "thirdWeek"
// WindowsUpdateForBusinessUpdateWeeksVFourthWeek undocumented
WindowsUpdateForBusinessUpdateWeeksVFourthWeek WindowsUpdateForBusinessUpdateWeeks = "fourthWeek"
// WindowsUpdateForBusinessUpdateWeeksVEveryWeek undocumented
WindowsUpdateForBusinessUpdateWeeksVEveryWeek WindowsUpdateForBusinessUpdateWeeks = "everyWeek"
)
var (
// WindowsUpdateForBusinessUpdateWeeksPUserDefined is a pointer to WindowsUpdateForBusinessUpdateWeeksVUserDefined
WindowsUpdateForBusinessUpdateWeeksPUserDefined = &_WindowsUpdateForBusinessUpdateWeeksPUserDefined
// WindowsUpdateForBusinessUpdateWeeksPFirstWeek is a pointer to WindowsUpdateForBusinessUpdateWeeksVFirstWeek
WindowsUpdateForBusinessUpdateWeeksPFirstWeek = &_WindowsUpdateForBusinessUpdateWeeksPFirstWeek
// WindowsUpdateForBusinessUpdateWeeksPSecondWeek is a pointer to WindowsUpdateForBusinessUpdateWeeksVSecondWeek
WindowsUpdateForBusinessUpdateWeeksPSecondWeek = &_WindowsUpdateForBusinessUpdateWeeksPSecondWeek
// WindowsUpdateForBusinessUpdateWeeksPThirdWeek is a pointer to WindowsUpdateForBusinessUpdateWeeksVThirdWeek
WindowsUpdateForBusinessUpdateWeeksPThirdWeek = &_WindowsUpdateForBusinessUpdateWeeksPThirdWeek
// WindowsUpdateForBusinessUpdateWeeksPFourthWeek is a pointer to WindowsUpdateForBusinessUpdateWeeksVFourthWeek
WindowsUpdateForBusinessUpdateWeeksPFourthWeek = &_WindowsUpdateForBusinessUpdateWeeksPFourthWeek
// WindowsUpdateForBusinessUpdateWeeksPEveryWeek is a pointer to WindowsUpdateForBusinessUpdateWeeksVEveryWeek
WindowsUpdateForBusinessUpdateWeeksPEveryWeek = &_WindowsUpdateForBusinessUpdateWeeksPEveryWeek
)
var (
_WindowsUpdateForBusinessUpdateWeeksPUserDefined = WindowsUpdateForBusinessUpdateWeeksVUserDefined
_WindowsUpdateForBusinessUpdateWeeksPFirstWeek = WindowsUpdateForBusinessUpdateWeeksVFirstWeek
_WindowsUpdateForBusinessUpdateWeeksPSecondWeek = WindowsUpdateForBusinessUpdateWeeksVSecondWeek
_WindowsUpdateForBusinessUpdateWeeksPThirdWeek = WindowsUpdateForBusinessUpdateWeeksVThirdWeek
_WindowsUpdateForBusinessUpdateWeeksPFourthWeek = WindowsUpdateForBusinessUpdateWeeksVFourthWeek
_WindowsUpdateForBusinessUpdateWeeksPEveryWeek = WindowsUpdateForBusinessUpdateWeeksVEveryWeek
)
// WindowsUpdateNotificationDisplayOption undocumented
type WindowsUpdateNotificationDisplayOption string
const (
// WindowsUpdateNotificationDisplayOptionVNotConfigured undocumented
WindowsUpdateNotificationDisplayOptionVNotConfigured WindowsUpdateNotificationDisplayOption = "notConfigured"
// WindowsUpdateNotificationDisplayOptionVDefaultNotifications undocumented
WindowsUpdateNotificationDisplayOptionVDefaultNotifications WindowsUpdateNotificationDisplayOption = "defaultNotifications"
// WindowsUpdateNotificationDisplayOptionVRestartWarningsOnly undocumented
WindowsUpdateNotificationDisplayOptionVRestartWarningsOnly WindowsUpdateNotificationDisplayOption = "restartWarningsOnly"
// WindowsUpdateNotificationDisplayOptionVDisableAllNotifications undocumented
WindowsUpdateNotificationDisplayOptionVDisableAllNotifications WindowsUpdateNotificationDisplayOption = "disableAllNotifications"
)
var (
// WindowsUpdateNotificationDisplayOptionPNotConfigured is a pointer to WindowsUpdateNotificationDisplayOptionVNotConfigured
WindowsUpdateNotificationDisplayOptionPNotConfigured = &_WindowsUpdateNotificationDisplayOptionPNotConfigured
// WindowsUpdateNotificationDisplayOptionPDefaultNotifications is a pointer to WindowsUpdateNotificationDisplayOptionVDefaultNotifications
WindowsUpdateNotificationDisplayOptionPDefaultNotifications = &_WindowsUpdateNotificationDisplayOptionPDefaultNotifications
// WindowsUpdateNotificationDisplayOptionPRestartWarningsOnly is a pointer to WindowsUpdateNotificationDisplayOptionVRestartWarningsOnly
WindowsUpdateNotificationDisplayOptionPRestartWarningsOnly = &_WindowsUpdateNotificationDisplayOptionPRestartWarningsOnly
// WindowsUpdateNotificationDisplayOptionPDisableAllNotifications is a pointer to WindowsUpdateNotificationDisplayOptionVDisableAllNotifications
WindowsUpdateNotificationDisplayOptionPDisableAllNotifications = &_WindowsUpdateNotificationDisplayOptionPDisableAllNotifications
)
var (
_WindowsUpdateNotificationDisplayOptionPNotConfigured = WindowsUpdateNotificationDisplayOptionVNotConfigured
_WindowsUpdateNotificationDisplayOptionPDefaultNotifications = WindowsUpdateNotificationDisplayOptionVDefaultNotifications
_WindowsUpdateNotificationDisplayOptionPRestartWarningsOnly = WindowsUpdateNotificationDisplayOptionVRestartWarningsOnly
_WindowsUpdateNotificationDisplayOptionPDisableAllNotifications = WindowsUpdateNotificationDisplayOptionVDisableAllNotifications
)
// WindowsUpdateStatus undocumented
type WindowsUpdateStatus string
const (
// WindowsUpdateStatusVUpToDate undocumented
WindowsUpdateStatusVUpToDate WindowsUpdateStatus = "upToDate"
// WindowsUpdateStatusVPendingInstallation undocumented
WindowsUpdateStatusVPendingInstallation WindowsUpdateStatus = "pendingInstallation"
// WindowsUpdateStatusVPendingReboot undocumented
WindowsUpdateStatusVPendingReboot WindowsUpdateStatus = "pendingReboot"
// WindowsUpdateStatusVFailed undocumented
WindowsUpdateStatusVFailed WindowsUpdateStatus = "failed"
)
var (
// WindowsUpdateStatusPUpToDate is a pointer to WindowsUpdateStatusVUpToDate
WindowsUpdateStatusPUpToDate = &_WindowsUpdateStatusPUpToDate
// WindowsUpdateStatusPPendingInstallation is a pointer to WindowsUpdateStatusVPendingInstallation
WindowsUpdateStatusPPendingInstallation = &_WindowsUpdateStatusPPendingInstallation
// WindowsUpdateStatusPPendingReboot is a pointer to WindowsUpdateStatusVPendingReboot
WindowsUpdateStatusPPendingReboot = &_WindowsUpdateStatusPPendingReboot
// WindowsUpdateStatusPFailed is a pointer to WindowsUpdateStatusVFailed
WindowsUpdateStatusPFailed = &_WindowsUpdateStatusPFailed
)
var (
_WindowsUpdateStatusPUpToDate = WindowsUpdateStatusVUpToDate
_WindowsUpdateStatusPPendingInstallation = WindowsUpdateStatusVPendingInstallation
_WindowsUpdateStatusPPendingReboot = WindowsUpdateStatusVPendingReboot
_WindowsUpdateStatusPFailed = WindowsUpdateStatusVFailed
)
// WindowsUpdateType undocumented
type WindowsUpdateType string
const (
// WindowsUpdateTypeVUserDefined undocumented
WindowsUpdateTypeVUserDefined WindowsUpdateType = "userDefined"
// WindowsUpdateTypeVAll undocumented
WindowsUpdateTypeVAll WindowsUpdateType = "all"
// WindowsUpdateTypeVBusinessReadyOnly undocumented
WindowsUpdateTypeVBusinessReadyOnly WindowsUpdateType = "businessReadyOnly"
// WindowsUpdateTypeVWindowsInsiderBuildFast undocumented
WindowsUpdateTypeVWindowsInsiderBuildFast WindowsUpdateType = "windowsInsiderBuildFast"
// WindowsUpdateTypeVWindowsInsiderBuildSlow undocumented
WindowsUpdateTypeVWindowsInsiderBuildSlow WindowsUpdateType = "windowsInsiderBuildSlow"
// WindowsUpdateTypeVWindowsInsiderBuildRelease undocumented
WindowsUpdateTypeVWindowsInsiderBuildRelease WindowsUpdateType = "windowsInsiderBuildRelease"
)
var (
// WindowsUpdateTypePUserDefined is a pointer to WindowsUpdateTypeVUserDefined
WindowsUpdateTypePUserDefined = &_WindowsUpdateTypePUserDefined
// WindowsUpdateTypePAll is a pointer to WindowsUpdateTypeVAll
WindowsUpdateTypePAll = &_WindowsUpdateTypePAll
// WindowsUpdateTypePBusinessReadyOnly is a pointer to WindowsUpdateTypeVBusinessReadyOnly
WindowsUpdateTypePBusinessReadyOnly = &_WindowsUpdateTypePBusinessReadyOnly
// WindowsUpdateTypePWindowsInsiderBuildFast is a pointer to WindowsUpdateTypeVWindowsInsiderBuildFast
WindowsUpdateTypePWindowsInsiderBuildFast = &_WindowsUpdateTypePWindowsInsiderBuildFast
// WindowsUpdateTypePWindowsInsiderBuildSlow is a pointer to WindowsUpdateTypeVWindowsInsiderBuildSlow
WindowsUpdateTypePWindowsInsiderBuildSlow = &_WindowsUpdateTypePWindowsInsiderBuildSlow
// WindowsUpdateTypePWindowsInsiderBuildRelease is a pointer to WindowsUpdateTypeVWindowsInsiderBuildRelease
WindowsUpdateTypePWindowsInsiderBuildRelease = &_WindowsUpdateTypePWindowsInsiderBuildRelease
)
var (
_WindowsUpdateTypePUserDefined = WindowsUpdateTypeVUserDefined
_WindowsUpdateTypePAll = WindowsUpdateTypeVAll
_WindowsUpdateTypePBusinessReadyOnly = WindowsUpdateTypeVBusinessReadyOnly
_WindowsUpdateTypePWindowsInsiderBuildFast = WindowsUpdateTypeVWindowsInsiderBuildFast
_WindowsUpdateTypePWindowsInsiderBuildSlow = WindowsUpdateTypeVWindowsInsiderBuildSlow
_WindowsUpdateTypePWindowsInsiderBuildRelease = WindowsUpdateTypeVWindowsInsiderBuildRelease
)
// WindowsUserAccountControlSettings undocumented
type WindowsUserAccountControlSettings string
const (
// WindowsUserAccountControlSettingsVUserDefined undocumented
WindowsUserAccountControlSettingsVUserDefined WindowsUserAccountControlSettings = "userDefined"
// WindowsUserAccountControlSettingsVAlwaysNotify undocumented
WindowsUserAccountControlSettingsVAlwaysNotify WindowsUserAccountControlSettings = "alwaysNotify"
// WindowsUserAccountControlSettingsVNotifyOnAppChanges undocumented
WindowsUserAccountControlSettingsVNotifyOnAppChanges WindowsUserAccountControlSettings = "notifyOnAppChanges"
// WindowsUserAccountControlSettingsVNotifyOnAppChangesWithoutDimming undocumented
WindowsUserAccountControlSettingsVNotifyOnAppChangesWithoutDimming WindowsUserAccountControlSettings = "notifyOnAppChangesWithoutDimming"
// WindowsUserAccountControlSettingsVNeverNotify undocumented
WindowsUserAccountControlSettingsVNeverNotify WindowsUserAccountControlSettings = "neverNotify"
)
var (
// WindowsUserAccountControlSettingsPUserDefined is a pointer to WindowsUserAccountControlSettingsVUserDefined
WindowsUserAccountControlSettingsPUserDefined = &_WindowsUserAccountControlSettingsPUserDefined
// WindowsUserAccountControlSettingsPAlwaysNotify is a pointer to WindowsUserAccountControlSettingsVAlwaysNotify
WindowsUserAccountControlSettingsPAlwaysNotify = &_WindowsUserAccountControlSettingsPAlwaysNotify
// WindowsUserAccountControlSettingsPNotifyOnAppChanges is a pointer to WindowsUserAccountControlSettingsVNotifyOnAppChanges
WindowsUserAccountControlSettingsPNotifyOnAppChanges = &_WindowsUserAccountControlSettingsPNotifyOnAppChanges
// WindowsUserAccountControlSettingsPNotifyOnAppChangesWithoutDimming is a pointer to WindowsUserAccountControlSettingsVNotifyOnAppChangesWithoutDimming
WindowsUserAccountControlSettingsPNotifyOnAppChangesWithoutDimming = &_WindowsUserAccountControlSettingsPNotifyOnAppChangesWithoutDimming
// WindowsUserAccountControlSettingsPNeverNotify is a pointer to WindowsUserAccountControlSettingsVNeverNotify
WindowsUserAccountControlSettingsPNeverNotify = &_WindowsUserAccountControlSettingsPNeverNotify
)
var (
_WindowsUserAccountControlSettingsPUserDefined = WindowsUserAccountControlSettingsVUserDefined
_WindowsUserAccountControlSettingsPAlwaysNotify = WindowsUserAccountControlSettingsVAlwaysNotify
_WindowsUserAccountControlSettingsPNotifyOnAppChanges = WindowsUserAccountControlSettingsVNotifyOnAppChanges
_WindowsUserAccountControlSettingsPNotifyOnAppChangesWithoutDimming = WindowsUserAccountControlSettingsVNotifyOnAppChangesWithoutDimming
_WindowsUserAccountControlSettingsPNeverNotify = WindowsUserAccountControlSettingsVNeverNotify
)
// WindowsUserType undocumented
type WindowsUserType string
const (
// WindowsUserTypeVAdministrator undocumented
WindowsUserTypeVAdministrator WindowsUserType = "administrator"
// WindowsUserTypeVStandard undocumented
WindowsUserTypeVStandard WindowsUserType = "standard"
)
var (
// WindowsUserTypePAdministrator is a pointer to WindowsUserTypeVAdministrator
WindowsUserTypePAdministrator = &_WindowsUserTypePAdministrator
// WindowsUserTypePStandard is a pointer to WindowsUserTypeVStandard
WindowsUserTypePStandard = &_WindowsUserTypePStandard
)
var (
_WindowsUserTypePAdministrator = WindowsUserTypeVAdministrator
_WindowsUserTypePStandard = WindowsUserTypeVStandard
)
// WindowsVPNConnectionType undocumented
type WindowsVPNConnectionType string
const (
// WindowsVPNConnectionTypeVPulseSecure undocumented
WindowsVPNConnectionTypeVPulseSecure WindowsVPNConnectionType = "pulseSecure"
// WindowsVPNConnectionTypeVF5EdgeClient undocumented
WindowsVPNConnectionTypeVF5EdgeClient WindowsVPNConnectionType = "f5EdgeClient"
// WindowsVPNConnectionTypeVDellSonicWallMobileConnect undocumented
WindowsVPNConnectionTypeVDellSonicWallMobileConnect WindowsVPNConnectionType = "dellSonicWallMobileConnect"
// WindowsVPNConnectionTypeVCheckPointCapsuleVPN undocumented
WindowsVPNConnectionTypeVCheckPointCapsuleVPN WindowsVPNConnectionType = "checkPointCapsuleVpn"
)
var (
// WindowsVPNConnectionTypePPulseSecure is a pointer to WindowsVPNConnectionTypeVPulseSecure
WindowsVPNConnectionTypePPulseSecure = &_WindowsVPNConnectionTypePPulseSecure
// WindowsVPNConnectionTypePF5EdgeClient is a pointer to WindowsVPNConnectionTypeVF5EdgeClient
WindowsVPNConnectionTypePF5EdgeClient = &_WindowsVPNConnectionTypePF5EdgeClient
// WindowsVPNConnectionTypePDellSonicWallMobileConnect is a pointer to WindowsVPNConnectionTypeVDellSonicWallMobileConnect
WindowsVPNConnectionTypePDellSonicWallMobileConnect = &_WindowsVPNConnectionTypePDellSonicWallMobileConnect
// WindowsVPNConnectionTypePCheckPointCapsuleVPN is a pointer to WindowsVPNConnectionTypeVCheckPointCapsuleVPN
WindowsVPNConnectionTypePCheckPointCapsuleVPN = &_WindowsVPNConnectionTypePCheckPointCapsuleVPN
)
var (
_WindowsVPNConnectionTypePPulseSecure = WindowsVPNConnectionTypeVPulseSecure
_WindowsVPNConnectionTypePF5EdgeClient = WindowsVPNConnectionTypeVF5EdgeClient
_WindowsVPNConnectionTypePDellSonicWallMobileConnect = WindowsVPNConnectionTypeVDellSonicWallMobileConnect
_WindowsVPNConnectionTypePCheckPointCapsuleVPN = WindowsVPNConnectionTypeVCheckPointCapsuleVPN
)
|