bfg-common 1.1.68 → 1.1.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,670 +1,777 @@
|
|
|
1
|
-
import { UI_I_Compatibility } from '~/components/common/vm/actions/add/select/models/interfaces'
|
|
2
|
-
|
|
3
|
-
export const capabilities: UI_I_Compatibility = {
|
|
4
|
-
compatibility: [
|
|
5
|
-
{
|
|
6
|
-
text: 'Procurator 1.0.0 and later',
|
|
7
|
-
value: '001_pvm-1',
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
text: 'Gorizont-VS 1.0.74 and later',
|
|
11
|
-
value: '002_hor-1',
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
text: 'ESXi 6.7 and later',
|
|
15
|
-
value: '003_vmx-14',
|
|
16
|
-
},
|
|
17
|
-
],
|
|
18
|
-
guestOsFamilies: [
|
|
19
|
-
{
|
|
20
|
-
text: 'Windows',
|
|
21
|
-
value: '001_windows',
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
text: 'Linux',
|
|
25
|
-
value: '002_linux',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
text: 'Other',
|
|
29
|
-
value: '003_other',
|
|
30
|
-
},
|
|
31
|
-
],
|
|
32
|
-
machineTypes: [
|
|
33
|
-
{
|
|
34
|
-
text: 'Q35',
|
|
35
|
-
value: '001_pc-q35-3.1',
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
text: 'I440FX',
|
|
39
|
-
value: '002_pc-i440fx-3.1',
|
|
40
|
-
},
|
|
41
|
-
],
|
|
42
|
-
cpuModels: [
|
|
43
|
-
{
|
|
44
|
-
text: 'Nehalem',
|
|
45
|
-
value: '001_Nehalem',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
text: 'kvm64',
|
|
49
|
-
value: '002_kvm64',
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
text: 'kvm32',
|
|
53
|
-
value: '003_kvm32',
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
text: 'qemu64',
|
|
57
|
-
value: '004_qemu64',
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
text: 'qemu32',
|
|
61
|
-
value: '005_qemu32',
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
text: 'core2duo',
|
|
65
|
-
value: '006_core2duo',
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
text: 'cpu64-rhel5',
|
|
69
|
-
value: '007_cpu64-rhel5',
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
text: 'cpu64-rhel6',
|
|
73
|
-
value: '008_cpu64-rhel6',
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
text: 'Westmere',
|
|
77
|
-
value: '009_Westmere',
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
text: 'Haswell-noTSX',
|
|
81
|
-
value: '010_Haswell-noTSX',
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
text: 'Haswell',
|
|
85
|
-
value: '011_Haswell',
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
text: 'Broadwell-noTSX',
|
|
89
|
-
value: '012_Broadwell-noTSX',
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
text: 'Broadwell',
|
|
93
|
-
value: '013_Broadwell',
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
text: 'phenom',
|
|
97
|
-
value: '014_phenom',
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
text: 'Opteron_G4',
|
|
101
|
-
value: '015_Opteron_G4',
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
text: 'Opteron_G5',
|
|
105
|
-
value: '016_Opteron_G5',
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
text: 'IvyBridge',
|
|
109
|
-
value: '017_IvyBridge',
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
text: 'SandyBridge',
|
|
113
|
-
value: '018_SandyBridge',
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
text: 'Skylake-Client',
|
|
117
|
-
value: '019_Skylake-Client',
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
text: 'Host Model',
|
|
121
|
-
value: '020_host-model',
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
text: 'Host Passthrough',
|
|
125
|
-
value: '021_host-passthrough',
|
|
126
|
-
},
|
|
127
|
-
],
|
|
128
|
-
guestOsVersions: {
|
|
129
|
-
'001_windows': [
|
|
130
|
-
{
|
|
131
|
-
text: 'Microsoft Windows Server 2022 (64-bit)',
|
|
132
|
-
value: '001_windows2019srvNext_64Guest-vbsEnabled-true',
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
text: 'Microsoft Windows Server 2019 (64-bit)',
|
|
136
|
-
value: '002_windows2019srv_64Guest-vbsEnabled-true',
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
text: 'Microsoft Windows Server 2016 (64-bit)',
|
|
140
|
-
value: '003_windows9Server64Guest-vbsEnabled-true',
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
text: 'Microsoft Windows Server 2012 (64-bit)',
|
|
144
|
-
value: '004_windows8Server64Guest-vbsEnabled-false',
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
text: 'Microsoft Windows Server 2008 R2 (64-bit)',
|
|
148
|
-
value: '005_windows7Server64Guest-vbsEnabled-false',
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
text: 'Microsoft Windows Server 2008 (64-bit)',
|
|
152
|
-
value: '006_winLonghorn64Guest-vbsEnabled-false',
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
text: 'Microsoft Windows Server 2008 (32-bit)',
|
|
156
|
-
value: '007_winLonghornGuest-vbsEnabled-false',
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
text: 'Microsoft Windows Server 2003 (64-bit)',
|
|
160
|
-
value: '008_winNetEnterprise64Guest-vbsEnabled-false',
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
text: 'Microsoft Windows Server 2003 (32-bit)',
|
|
164
|
-
value: '009_winNetEnterpriseGuest-vbsEnabled-false',
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
text: 'Microsoft Windows 10 (64-bit)',
|
|
168
|
-
value: '010_windows9_64Guest-vbsEnabled-true',
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
text: 'Microsoft Windows 10 (32-bit)',
|
|
172
|
-
value: '011_windows9Guest-vbsEnabled-false',
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
text: 'Microsoft Windows 8.x (64-bit)',
|
|
176
|
-
value: '012_windows8_64Guest-vbsEnabled-false',
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
text: 'Microsoft Windows 8.x (32-bit)',
|
|
180
|
-
value: '013_windows8Guest-vbsEnabled-false',
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
text: 'Microsoft Windows 7 (64-bit)',
|
|
184
|
-
value: '014_windows7_64Guest-vbsEnabled-false',
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
text: 'Microsoft Windows 7 (32-bit)',
|
|
188
|
-
value: '015_windows7Guest-vbsEnabled-false',
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
text: 'Microsoft Windows Vista (64-bit)',
|
|
192
|
-
value: '016_winVista64Guest-vbsEnabled-false',
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
text: 'Microsoft Windows Vista (32-bit)',
|
|
196
|
-
value: '017_winVistaGuest-vbsEnabled-false',
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
text: 'Microsoft Windows XP Professional (64-bit)',
|
|
200
|
-
value: '018_winXPPro64Guest-vbsEnabled-false',
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
text: 'Microsoft Windows XP Professional (32-bit)',
|
|
204
|
-
value: '019_winXPProGuest-vbsEnabled-false',
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
text: 'Microsoft Windows 2000',
|
|
208
|
-
value: '020_win2000AdvServGuest-vbsEnabled-false',
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
text: 'Microsoft Windows NT',
|
|
212
|
-
value: '021_winNTGuest-vbsEnabled-false',
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
text: 'Microsoft Windows 98',
|
|
216
|
-
value: '022_win98Guest-vbsEnabled-false',
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
text: 'Microsoft Windows 95',
|
|
220
|
-
value: '023_win95Guest-vbsEnabled-false',
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
},
|
|
230
|
-
],
|
|
231
|
-
'002_linux': [
|
|
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
|
-
|
|
1
|
+
import { UI_I_Compatibility } from '~/components/common/vm/actions/add/select/models/interfaces'
|
|
2
|
+
|
|
3
|
+
export const capabilities: UI_I_Compatibility = {
|
|
4
|
+
compatibility: [
|
|
5
|
+
{
|
|
6
|
+
text: 'Procurator 1.0.0 and later',
|
|
7
|
+
value: '001_pvm-1',
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
text: 'Gorizont-VS 1.0.74 and later',
|
|
11
|
+
value: '002_hor-1',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
text: 'ESXi 6.7 and later',
|
|
15
|
+
value: '003_vmx-14',
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
guestOsFamilies: [
|
|
19
|
+
{
|
|
20
|
+
text: 'Windows',
|
|
21
|
+
value: '001_windows',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
text: 'Linux',
|
|
25
|
+
value: '002_linux',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
text: 'Other',
|
|
29
|
+
value: '003_other',
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
machineTypes: [
|
|
33
|
+
{
|
|
34
|
+
text: 'Q35',
|
|
35
|
+
value: '001_pc-q35-3.1',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
text: 'I440FX',
|
|
39
|
+
value: '002_pc-i440fx-3.1',
|
|
40
|
+
},
|
|
41
|
+
],
|
|
42
|
+
cpuModels: [
|
|
43
|
+
{
|
|
44
|
+
text: 'Nehalem',
|
|
45
|
+
value: '001_Nehalem',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
text: 'kvm64',
|
|
49
|
+
value: '002_kvm64',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
text: 'kvm32',
|
|
53
|
+
value: '003_kvm32',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
text: 'qemu64',
|
|
57
|
+
value: '004_qemu64',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
text: 'qemu32',
|
|
61
|
+
value: '005_qemu32',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
text: 'core2duo',
|
|
65
|
+
value: '006_core2duo',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
text: 'cpu64-rhel5',
|
|
69
|
+
value: '007_cpu64-rhel5',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
text: 'cpu64-rhel6',
|
|
73
|
+
value: '008_cpu64-rhel6',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
text: 'Westmere',
|
|
77
|
+
value: '009_Westmere',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
text: 'Haswell-noTSX',
|
|
81
|
+
value: '010_Haswell-noTSX',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
text: 'Haswell',
|
|
85
|
+
value: '011_Haswell',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
text: 'Broadwell-noTSX',
|
|
89
|
+
value: '012_Broadwell-noTSX',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
text: 'Broadwell',
|
|
93
|
+
value: '013_Broadwell',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
text: 'phenom',
|
|
97
|
+
value: '014_phenom',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
text: 'Opteron_G4',
|
|
101
|
+
value: '015_Opteron_G4',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
text: 'Opteron_G5',
|
|
105
|
+
value: '016_Opteron_G5',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
text: 'IvyBridge',
|
|
109
|
+
value: '017_IvyBridge',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
text: 'SandyBridge',
|
|
113
|
+
value: '018_SandyBridge',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
text: 'Skylake-Client',
|
|
117
|
+
value: '019_Skylake-Client',
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
text: 'Host Model',
|
|
121
|
+
value: '020_host-model',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
text: 'Host Passthrough',
|
|
125
|
+
value: '021_host-passthrough',
|
|
126
|
+
},
|
|
127
|
+
],
|
|
128
|
+
guestOsVersions: {
|
|
129
|
+
'001_windows': [
|
|
130
|
+
{
|
|
131
|
+
text: 'Microsoft Windows Server 2022 (64-bit)',
|
|
132
|
+
value: '001_windows2019srvNext_64Guest-vbsEnabled-true',
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
text: 'Microsoft Windows Server 2019 (64-bit)',
|
|
136
|
+
value: '002_windows2019srv_64Guest-vbsEnabled-true',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
text: 'Microsoft Windows Server 2016 (64-bit)',
|
|
140
|
+
value: '003_windows9Server64Guest-vbsEnabled-true',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
text: 'Microsoft Windows Server 2012 (64-bit)',
|
|
144
|
+
value: '004_windows8Server64Guest-vbsEnabled-false',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
text: 'Microsoft Windows Server 2008 R2 (64-bit)',
|
|
148
|
+
value: '005_windows7Server64Guest-vbsEnabled-false',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
text: 'Microsoft Windows Server 2008 (64-bit)',
|
|
152
|
+
value: '006_winLonghorn64Guest-vbsEnabled-false',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
text: 'Microsoft Windows Server 2008 (32-bit)',
|
|
156
|
+
value: '007_winLonghornGuest-vbsEnabled-false',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
text: 'Microsoft Windows Server 2003 (64-bit)',
|
|
160
|
+
value: '008_winNetEnterprise64Guest-vbsEnabled-false',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
text: 'Microsoft Windows Server 2003 (32-bit)',
|
|
164
|
+
value: '009_winNetEnterpriseGuest-vbsEnabled-false',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
text: 'Microsoft Windows 10 (64-bit)',
|
|
168
|
+
value: '010_windows9_64Guest-vbsEnabled-true',
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
text: 'Microsoft Windows 10 (32-bit)',
|
|
172
|
+
value: '011_windows9Guest-vbsEnabled-false',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
text: 'Microsoft Windows 8.x (64-bit)',
|
|
176
|
+
value: '012_windows8_64Guest-vbsEnabled-false',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
text: 'Microsoft Windows 8.x (32-bit)',
|
|
180
|
+
value: '013_windows8Guest-vbsEnabled-false',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
text: 'Microsoft Windows 7 (64-bit)',
|
|
184
|
+
value: '014_windows7_64Guest-vbsEnabled-false',
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
text: 'Microsoft Windows 7 (32-bit)',
|
|
188
|
+
value: '015_windows7Guest-vbsEnabled-false',
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
text: 'Microsoft Windows Vista (64-bit)',
|
|
192
|
+
value: '016_winVista64Guest-vbsEnabled-false',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
text: 'Microsoft Windows Vista (32-bit)',
|
|
196
|
+
value: '017_winVistaGuest-vbsEnabled-false',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
text: 'Microsoft Windows XP Professional (64-bit)',
|
|
200
|
+
value: '018_winXPPro64Guest-vbsEnabled-false',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
text: 'Microsoft Windows XP Professional (32-bit)',
|
|
204
|
+
value: '019_winXPProGuest-vbsEnabled-false',
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
text: 'Microsoft Windows 2000',
|
|
208
|
+
value: '020_win2000AdvServGuest-vbsEnabled-false',
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
text: 'Microsoft Windows NT',
|
|
212
|
+
value: '021_winNTGuest-vbsEnabled-false',
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
text: 'Microsoft Windows 98',
|
|
216
|
+
value: '022_win98Guest-vbsEnabled-false',
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
text: 'Microsoft Windows 95',
|
|
220
|
+
value: '023_win95Guest-vbsEnabled-false',
|
|
221
|
+
},
|
|
222
|
+
// {
|
|
223
|
+
// text: 'Microsoft Windows 3.1',
|
|
224
|
+
// value: '024_win31Guest-vbsEnabled-false',
|
|
225
|
+
// },
|
|
226
|
+
// {
|
|
227
|
+
// text: 'Microsoft MS-DOS',
|
|
228
|
+
// value: '025_dosGuest-vbsEnabled-false',
|
|
229
|
+
// },
|
|
230
|
+
],
|
|
231
|
+
'002_linux': [
|
|
232
|
+
// {
|
|
233
|
+
// text: 'Amazon Linux 2 (64-bit)',
|
|
234
|
+
// value: 'amazonlinux2_64Guest-vbsEnabled-false',
|
|
235
|
+
// },
|
|
236
|
+
// {
|
|
237
|
+
// text: 'Asianux 3 (32-bit)',
|
|
238
|
+
// value: 'asianux3Guest-vbsEnabled-false',
|
|
239
|
+
// },
|
|
240
|
+
// {
|
|
241
|
+
// text: 'Asianux 3 (64-bit)',
|
|
242
|
+
// value: 'asianux3_64Guest-vbsEnabled-false',
|
|
243
|
+
// },
|
|
244
|
+
// {
|
|
245
|
+
// text: 'Asianux 4 (32-bit)',
|
|
246
|
+
// value: 'asianux4Guest-vbsEnabled-false',
|
|
247
|
+
// },
|
|
248
|
+
// {
|
|
249
|
+
// text: 'Asianux 4 (64-bit)',
|
|
250
|
+
// value: 'asianux4_64Guest-vbsEnabled-false',
|
|
251
|
+
// },
|
|
252
|
+
// {
|
|
253
|
+
// text: 'Asianux 7 (64-bit)',
|
|
254
|
+
// value: 'asianux7_64Guest-vbsEnabled-false',
|
|
255
|
+
// },
|
|
256
|
+
// {
|
|
257
|
+
// text: 'Asianux 8 (64-bit)',
|
|
258
|
+
// value: 'asianux8_64Guest-vbsEnabled-false',
|
|
259
|
+
// },
|
|
260
|
+
// {
|
|
261
|
+
// text: 'CentOS 4/5 (64-bit)',
|
|
262
|
+
// value: 'centos64Guest-vbsEnabled-false',
|
|
263
|
+
// },
|
|
264
|
+
// {
|
|
265
|
+
// text: 'CentOS 6 (32-bit)',
|
|
266
|
+
// value: 'centos6Guest-vbsEnabled-false',
|
|
267
|
+
// },
|
|
268
|
+
// {
|
|
269
|
+
// text: 'CentOS 6 (64-bit)',
|
|
270
|
+
// value: 'centos6_64Guest-vbsEnabled-false',
|
|
271
|
+
// },
|
|
272
|
+
// {
|
|
273
|
+
// text: 'CentOS 7 (64-bit)',
|
|
274
|
+
// value: 'centos7_64Guest-vbsEnabled-false',
|
|
275
|
+
// },
|
|
276
|
+
// {
|
|
277
|
+
// text: 'CentOS 8 (64-bit)',
|
|
278
|
+
// value: 'centos8_64Guest-vbsEnabled-false',
|
|
279
|
+
// },
|
|
280
|
+
// {
|
|
281
|
+
// text: 'CentOS 4/5 (32-bit)',
|
|
282
|
+
// value: 'centosGuest-vbsEnabled-false',
|
|
283
|
+
// },
|
|
284
|
+
// {
|
|
285
|
+
// text: 'VMware CRX Pod 1 (64-bit)',
|
|
286
|
+
// value: 'crxPod1Guest-vbsEnabled-false',
|
|
287
|
+
// },
|
|
288
|
+
// {
|
|
289
|
+
// text: 'Debian GNU/Linux 10 (32-bit)',
|
|
290
|
+
// value: 'debian10Guest-vbsEnabled-false',
|
|
291
|
+
// },
|
|
292
|
+
// {
|
|
293
|
+
// text: 'Debian GNU/Linux 10 (64-bit)',
|
|
294
|
+
// value: 'debian10_64Guest-vbsEnabled-false',
|
|
295
|
+
// },
|
|
296
|
+
// {
|
|
297
|
+
// text: 'Debian GNU/Linux 11 (32-bit)',
|
|
298
|
+
// value: 'debian11Guest-vbsEnabled-false',
|
|
299
|
+
// },
|
|
300
|
+
// {
|
|
301
|
+
// text: 'Debian GNU/Linux 11 (64-bit)',
|
|
302
|
+
// value: 'debian11_64Guest-vbsEnabled-false',
|
|
303
|
+
// },
|
|
304
|
+
// {
|
|
305
|
+
// text: 'Debian GNU/Linux 4 (32-bit)',
|
|
306
|
+
// value: 'debian4Guest-vbsEnabled-false',
|
|
307
|
+
// },
|
|
308
|
+
// {
|
|
309
|
+
// text: 'Debian GNU/Linux 4 (64-bit)',
|
|
310
|
+
// value: 'debian4_64Guest-vbsEnabled-false',
|
|
311
|
+
// },
|
|
312
|
+
// {
|
|
313
|
+
// text: 'Debian GNU/Linux 5 (32-bit)',
|
|
314
|
+
// value: 'debian5Guest-vbsEnabled-false',
|
|
315
|
+
// },
|
|
316
|
+
// {
|
|
317
|
+
// text: 'Debian GNU/Linux 5 (64-bit)',
|
|
318
|
+
// value: 'debian5_64Guest-vbsEnabled-false',
|
|
319
|
+
// },
|
|
320
|
+
// {
|
|
321
|
+
// text: 'Debian GNU/Linux 6 (32-bit)',
|
|
322
|
+
// value: 'debian6Guest-vbsEnabled-false',
|
|
323
|
+
// },
|
|
324
|
+
// {
|
|
325
|
+
// text: 'Debian GNU/Linux 6 (64-bit)',
|
|
326
|
+
// value: 'debian6_64Guest-vbsEnabled-false',
|
|
327
|
+
// },
|
|
328
|
+
// {
|
|
329
|
+
// text: 'Debian GNU/Linux 7 (32-bit)',
|
|
330
|
+
// value: 'debian7Guest-vbsEnabled-false',
|
|
331
|
+
// },
|
|
332
|
+
// {
|
|
333
|
+
// text: 'Debian GNU/Linux 7 (64-bit)',
|
|
334
|
+
// value: 'debian7_64Guest-vbsEnabled-false',
|
|
335
|
+
// },
|
|
336
|
+
// {
|
|
337
|
+
// text: 'Debian GNU/Linux 8 (32-bit)',
|
|
338
|
+
// value: 'debian8Guest-vbsEnabled-false',
|
|
339
|
+
// },
|
|
340
|
+
// {
|
|
341
|
+
// text: 'Debian GNU/Linux 8 (64-bit)',
|
|
342
|
+
// value: 'debian8_64Guest-vbsEnabled-false',
|
|
343
|
+
// },
|
|
344
|
+
// {
|
|
345
|
+
// text: 'Debian GNU/Linux 9 (32-bit)',
|
|
346
|
+
// value: 'debian9Guest-vbsEnabled-false',
|
|
347
|
+
// },
|
|
348
|
+
// {
|
|
349
|
+
// text: 'Debian GNU/Linux 9 (64-bit)',
|
|
350
|
+
// value: 'debian9_64Guest-vbsEnabled-false',
|
|
351
|
+
// },
|
|
352
|
+
// {
|
|
353
|
+
// text: 'Red Hat Fedora (64-bit)',
|
|
354
|
+
// value: 'fedora64Guest-vbsEnabled-false',
|
|
355
|
+
// },
|
|
356
|
+
// {
|
|
357
|
+
// text: 'Red Hat Fedora (32-bit)',
|
|
358
|
+
// value: 'fedoraGuest-vbsEnabled-false',
|
|
359
|
+
// },
|
|
360
|
+
// {
|
|
361
|
+
// text: 'SUSE openSUSE (64-bit)',
|
|
362
|
+
// value: 'opensuse64Guest-vbsEnabled-false',
|
|
363
|
+
// },
|
|
364
|
+
// {
|
|
365
|
+
// text: 'SUSE openSUSE (32-bit)',
|
|
366
|
+
// value: 'opensuseGuest-vbsEnabled-false',
|
|
367
|
+
// },
|
|
368
|
+
// {
|
|
369
|
+
// text: 'Oracle Linux 4/5 (64-bit)',
|
|
370
|
+
// value: 'oracleLinux64Guest-vbsEnabled-false',
|
|
371
|
+
// },
|
|
372
|
+
// {
|
|
373
|
+
// text: 'Oracle Linux 6 (32-bit)',
|
|
374
|
+
// value: 'oracleLinux6Guest-vbsEnabled-false',
|
|
375
|
+
// },
|
|
376
|
+
// {
|
|
377
|
+
// text: 'Oracle Linux 6 (64-bit)',
|
|
378
|
+
// value: 'oracleLinux6_64Guest-vbsEnabled-false',
|
|
379
|
+
// },
|
|
380
|
+
// {
|
|
381
|
+
// text: 'Oracle Linux 7 (64-bit)',
|
|
382
|
+
// value: 'oracleLinux7_64Guest-vbsEnabled-false',
|
|
383
|
+
// },
|
|
384
|
+
// {
|
|
385
|
+
// text: 'Oracle Linux 8 (64-bit)',
|
|
386
|
+
// value: 'oracleLinux8_64Guest-vbsEnabled-false',
|
|
387
|
+
// },
|
|
388
|
+
// {
|
|
389
|
+
// text: 'Oracle Linux 4/5 (32-bit)',
|
|
390
|
+
// value: 'oracleLinuxGuest-vbsEnabled-false',
|
|
391
|
+
// },
|
|
392
|
+
// {
|
|
393
|
+
// text: 'Other 2.4.x Linux (64-bit)',
|
|
394
|
+
// value: 'other24xLinux64Guest-vbsEnabled-false',
|
|
395
|
+
// },
|
|
396
|
+
// {
|
|
397
|
+
// text: 'Other 2.4.x Linux (32-bit)',
|
|
398
|
+
// value: 'other24xLinuxGuest-vbsEnabled-false',
|
|
399
|
+
// },
|
|
400
|
+
// {
|
|
401
|
+
// text: 'Other 2.6.x Linux (64-bit)',
|
|
402
|
+
// value: 'other26xLinux64Guest-vbsEnabled-false',
|
|
403
|
+
// },
|
|
404
|
+
// {
|
|
405
|
+
// text: 'Other 2.6.x Linux (32-bit)',
|
|
406
|
+
// value: 'other26xLinuxGuest-vbsEnabled-false',
|
|
407
|
+
// },
|
|
408
|
+
// {
|
|
409
|
+
// text: 'Other 3.x Linux (64-bit)',
|
|
410
|
+
// value: 'other3xLinux64Guest-vbsEnabled-false',
|
|
411
|
+
// },
|
|
412
|
+
// {
|
|
413
|
+
// text: 'Other 3.x Linux (32-bit)',
|
|
414
|
+
// value: 'other3xLinuxGuest-vbsEnabled-false',
|
|
415
|
+
// },
|
|
416
|
+
// {
|
|
417
|
+
// text: 'Other 4.x Linux (64-bit)',
|
|
418
|
+
// value: 'other4xLinux64Guest-vbsEnabled-false',
|
|
419
|
+
// },
|
|
420
|
+
// {
|
|
421
|
+
// text: 'Other 4.x Linux (32-bit)',
|
|
422
|
+
// value: 'other4xLinuxGuest-vbsEnabled-false',
|
|
423
|
+
// },
|
|
424
|
+
// {
|
|
425
|
+
// text: 'Other 5.x or later Linux (64-bit)',
|
|
426
|
+
// value: 'other5xLinux64Guest-vbsEnabled-false',
|
|
427
|
+
// },
|
|
428
|
+
// {
|
|
429
|
+
// text: 'Other 5.x or later Linux (32-bit)',
|
|
430
|
+
// value: 'other5xLinuxGuest-vbsEnabled-false',
|
|
431
|
+
// },
|
|
432
|
+
// {
|
|
433
|
+
// text: 'Other Linux (64-bit)',
|
|
434
|
+
// value: 'otherLinux64Guest-vbsEnabled-false',
|
|
435
|
+
// },
|
|
436
|
+
// {
|
|
437
|
+
// text: 'Other Linux (32-bit)',
|
|
438
|
+
// value: 'otherLinuxGuest-vbsEnabled-false',
|
|
439
|
+
// },
|
|
440
|
+
// {
|
|
441
|
+
// text: 'Red Hat Enterprise Linux 4 (32-bit)',
|
|
442
|
+
// value: 'rhel4Guest-vbsEnabled-false',
|
|
443
|
+
// },
|
|
444
|
+
// {
|
|
445
|
+
// text: 'Red Hat Enterprise Linux 4 (64-bit)',
|
|
446
|
+
// value: 'rhel4_64Guest-vbsEnabled-false',
|
|
447
|
+
// },
|
|
448
|
+
// {
|
|
449
|
+
// text: 'Red Hat Enterprise Linux 5 (32-bit)',
|
|
450
|
+
// value: 'rhel5Guest-vbsEnabled-false',
|
|
451
|
+
// },
|
|
452
|
+
// {
|
|
453
|
+
// text: 'Red Hat Enterprise Linux 5 (64-bit)',
|
|
454
|
+
// value: 'rhel5_64Guest-vbsEnabled-false',
|
|
455
|
+
// },
|
|
456
|
+
// {
|
|
457
|
+
// text: 'Red Hat Enterprise Linux 6 (32-bit)',
|
|
458
|
+
// value: 'rhel6Guest-vbsEnabled-false',
|
|
459
|
+
// },
|
|
460
|
+
// {
|
|
461
|
+
// text: 'Red Hat Enterprise Linux 6 (64-bit)',
|
|
462
|
+
// value: 'rhel6_64Guest-vbsEnabled-false',
|
|
463
|
+
// },
|
|
464
|
+
// {
|
|
465
|
+
// text: 'Red Hat Enterprise Linux 7 (64-bit)',
|
|
466
|
+
// value: 'rhel7_64Guest-vbsEnabled-false',
|
|
467
|
+
// },
|
|
468
|
+
// {
|
|
469
|
+
// text: 'Red Hat Enterprise Linux 8 (64-bit)',
|
|
470
|
+
// value: 'rhel8_64Guest-vbsEnabled-false',
|
|
471
|
+
// },
|
|
472
|
+
// {
|
|
473
|
+
// text: 'Red Hat Enterprise Linux 9 (64-bit)',
|
|
474
|
+
// value: 'rhel9_64Guest-vbsEnabled-false',
|
|
475
|
+
// },
|
|
476
|
+
// {
|
|
477
|
+
// text: 'SUSE Linux Enterprise 10 (32-bit)',
|
|
478
|
+
// value: 'sles10Guest-vbsEnabled-false',
|
|
479
|
+
// },
|
|
480
|
+
// {
|
|
481
|
+
// text: 'SUSE Linux Enterprise 10 (64-bit)',
|
|
482
|
+
// value: 'sles10_64Guest-vbsEnabled-false',
|
|
483
|
+
// },
|
|
484
|
+
// {
|
|
485
|
+
// text: 'SUSE Linux Enterprise 11 (32-bit)',
|
|
486
|
+
// value: 'sles11Guest-vbsEnabled-false',
|
|
487
|
+
// },
|
|
488
|
+
// {
|
|
489
|
+
// text: 'SUSE Linux Enterprise 11 (64-bit)',
|
|
490
|
+
// value: 'sles11_64Guest-vbsEnabled-false',
|
|
491
|
+
// },
|
|
492
|
+
// {
|
|
493
|
+
// text: 'SUSE Linux Enterprise 12 (64-bit)',
|
|
494
|
+
// value: 'sles12_64Guest-vbsEnabled-false',
|
|
495
|
+
// },
|
|
496
|
+
// {
|
|
497
|
+
// text: 'SUSE Linux Enterprise 15 (64-bit)',
|
|
498
|
+
// value: 'sles15_64Guest-vbsEnabled-false',
|
|
499
|
+
// },
|
|
500
|
+
|
|
501
|
+
{
|
|
502
|
+
text: 'Red Hat Enterprise Linux (64-bit)',
|
|
503
|
+
value: 'rhel64Guest-vbsEnabled-false',
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
text: 'SUSE Linux Enterprise (64-bit)',
|
|
507
|
+
value: 'sles_64Guest-vbsEnabled-false',
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
text: 'CentOS (64-bit)',
|
|
511
|
+
value: 'centos64Guest-vbsEnabled-false',
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
text: 'Debian GNU/Linux (64-bit)',
|
|
515
|
+
value: 'debian64Guest-vbsEnabled-false',
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
text: 'Debian GNU/Linux (32-bit)',
|
|
519
|
+
value: 'debianGuest-vbsEnabled-false',
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
text: 'SUSE openSUSE (64-bit)',
|
|
523
|
+
value: 'opensuse64Guest-vbsEnabled-false',
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
text: 'SUSE openSUSE (32-bit)',
|
|
527
|
+
value: 'opensuseGuest-vbsEnabled-false',
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
text: 'Red Hat Fedora (64-bit)',
|
|
531
|
+
value: 'fedora64Guest-vbsEnabled-false',
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
text: 'Red Hat Fedora (32-bit)',
|
|
535
|
+
value: 'fedoraGuest-vbsEnabled-false',
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
text: 'Oracle Linux (64-bit)',
|
|
539
|
+
value: 'oracleLinux64Guest-vbsEnabled-false',
|
|
540
|
+
},
|
|
541
|
+
|
|
542
|
+
// {
|
|
543
|
+
// text: 'SUSE Linux Enterprise 8/9 (64-bit)',
|
|
544
|
+
// value: 'sles64Guest-vbsEnabled-false',
|
|
545
|
+
// },
|
|
546
|
+
// {
|
|
547
|
+
// text: 'SUSE Linux Enterprise 8/9 (32-bit)',
|
|
548
|
+
// value: 'slesGuest-vbsEnabled-false',
|
|
549
|
+
// },
|
|
550
|
+
|
|
551
|
+
{
|
|
552
|
+
text: 'Ubuntu Linux (64-bit)',
|
|
553
|
+
value: 'ubuntu64Guest-vbsEnabled-false',
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
text: 'Ubuntu Linux (32-bit)',
|
|
557
|
+
value: 'ubuntuGuest-vbsEnabled-false',
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
text: 'Astra Linux (64-bit)',
|
|
561
|
+
value: 'astraLinux64Guest-vbsEnabled-false',
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
text: 'Astra Linux (32-bit)',
|
|
565
|
+
value: 'astraLinuxGuest-vbsEnabled-false',
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
text: 'ALT Linux (64-bit)',
|
|
569
|
+
value: 'altLinux64Guest-vbsEnabled-false',
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
text: 'ALT Linux (32-bit)',
|
|
573
|
+
value: 'altLinuxGuest-vbsEnabled-false',
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
text: 'Rocky Linux (64-bit)',
|
|
577
|
+
value: 'rocky64Guest-vbsEnabled-false',
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
text: 'MCBC 5.0 (32-bit)',
|
|
581
|
+
value: 'msvs5_32Guest-vbsEnabled-false',
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
text: 'MCBC 3.0 (32-bit)',
|
|
585
|
+
value: 'msvs3_32Guest-vbsEnabled-false',
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
text: 'Other Linux (64-bit)',
|
|
589
|
+
value: 'otherLinux64Guest-vbsEnabled-false',
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
text: 'Other Linux (32-bit)',
|
|
593
|
+
value: 'otherLinuxGuest-vbsEnabled-false',
|
|
594
|
+
},
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
// {
|
|
598
|
+
// text: 'VMware Photon OS (64-bit)',
|
|
599
|
+
// value: 'vmwarePhoton64Guest-vbsEnabled-false',
|
|
600
|
+
// },
|
|
601
|
+
],
|
|
602
|
+
'003_other': [
|
|
603
|
+
{
|
|
604
|
+
text: 'Apple macOS (64-bit)',
|
|
605
|
+
value: 'darwin64Guest-vbsEnabled-false',
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
text: 'Android (64-bit)',
|
|
609
|
+
value: 'android64Guest-vbsEnabled-false',
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
text: 'FreeBSD 13 or later versions (64-bit)',
|
|
613
|
+
value: 'freebsd13_64Guest-vbsEnabled-false',
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
text: 'FreeBSD 13 or later versions (32-bit)',
|
|
617
|
+
value: 'freebsd13Guest-vbsEnabled-false',
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
text: 'Other (64-bit)',
|
|
621
|
+
value: 'otherGuest64-vbsEnabled-false',
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
text: 'Other (32-bit)',
|
|
625
|
+
value: 'otherGuest-vbsEnabled-false',
|
|
626
|
+
},
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
// {
|
|
630
|
+
// text: 'Apple Mac OS X 10.10 (64-bit)',
|
|
631
|
+
// value: 'darwin14_64Guest-vbsEnabled-false',
|
|
632
|
+
// },
|
|
633
|
+
// {
|
|
634
|
+
// text: 'Apple Mac OS X 10.11 (64-bit)',
|
|
635
|
+
// value: 'darwin15_64Guest-vbsEnabled-false',
|
|
636
|
+
// },
|
|
637
|
+
// {
|
|
638
|
+
// text: 'Apple macOS 10.12 (64-bit)',
|
|
639
|
+
// value: 'darwin16_64Guest-vbsEnabled-false',
|
|
640
|
+
// },
|
|
641
|
+
// {
|
|
642
|
+
// text: 'Apple macOS 10.13 (64-bit)',
|
|
643
|
+
// value: 'darwin17_64Guest-vbsEnabled-false',
|
|
644
|
+
// },
|
|
645
|
+
// {
|
|
646
|
+
// text: 'Apple macOS 10.14 (64-bit)',
|
|
647
|
+
// value: 'darwin18_64Guest-vbsEnabled-false',
|
|
648
|
+
// },
|
|
649
|
+
// {
|
|
650
|
+
// text: 'Apple macOS 10.15 (64-bit)',
|
|
651
|
+
// value: 'darwin19_64Guest-vbsEnabled-false',
|
|
652
|
+
// },
|
|
653
|
+
// {
|
|
654
|
+
// text: 'Apple macOS 11 (64-bit)',
|
|
655
|
+
// value: 'darwin20_64Guest-vbsEnabled-false',
|
|
656
|
+
// },
|
|
657
|
+
// {
|
|
658
|
+
// text: 'Apple macOS 12 (64-bit)',
|
|
659
|
+
// value: 'darwin21_64Guest-vbsEnabled-false',
|
|
660
|
+
// },
|
|
661
|
+
// {
|
|
662
|
+
// text: 'Serenity Systems eComStation 2',
|
|
663
|
+
// value: 'eComStation2Guest-vbsEnabled-false',
|
|
664
|
+
// },
|
|
665
|
+
// {
|
|
666
|
+
// text: 'Serenity Systems eComStation 1',
|
|
667
|
+
// value: 'eComStationGuest-vbsEnabled-false',
|
|
668
|
+
// },
|
|
669
|
+
// {
|
|
670
|
+
// text: 'FreeBSD 11 (32-bit)',
|
|
671
|
+
// value: 'freebsd11Guest-vbsEnabled-false',
|
|
672
|
+
// },
|
|
673
|
+
// {
|
|
674
|
+
// text: 'FreeBSD 11 (64-bit)',
|
|
675
|
+
// value: 'freebsd11_64Guest-vbsEnabled-false',
|
|
676
|
+
// },
|
|
677
|
+
// {
|
|
678
|
+
// text: 'FreeBSD 12 (32-bit)',
|
|
679
|
+
// value: 'freebsd12Guest-vbsEnabled-false',
|
|
680
|
+
// },
|
|
681
|
+
// {
|
|
682
|
+
// text: 'FreeBSD 12 (64-bit)',
|
|
683
|
+
// value: 'freebsd12_64Guest-vbsEnabled-false',
|
|
684
|
+
// },
|
|
685
|
+
// {
|
|
686
|
+
// text: 'FreeBSD 13 or later versions (32-bit)',
|
|
687
|
+
// value: 'freebsd13Guest-vbsEnabled-false',
|
|
688
|
+
// },
|
|
689
|
+
// {
|
|
690
|
+
// text: 'FreeBSD 13 or later versions (64-bit)',
|
|
691
|
+
// value: 'freebsd13_64Guest-vbsEnabled-false',
|
|
692
|
+
// },
|
|
693
|
+
// {
|
|
694
|
+
// text: 'FreeBSD Pre-11 versions (64-bit)',
|
|
695
|
+
// value: 'freebsd64Guest-vbsEnabled-false',
|
|
696
|
+
// },
|
|
697
|
+
// {
|
|
698
|
+
// text: 'FreeBSD Pre-11 versions (32-bit)',
|
|
699
|
+
// value: 'freebsdGuest-vbsEnabled-false',
|
|
700
|
+
// },
|
|
701
|
+
// {
|
|
702
|
+
// text: 'Novell NetWare 5.1',
|
|
703
|
+
// value: 'netware5Guest-vbsEnabled-false',
|
|
704
|
+
// },
|
|
705
|
+
// {
|
|
706
|
+
// text: 'Novell NetWare 6.x',
|
|
707
|
+
// value: 'netware6Guest-vbsEnabled-false',
|
|
708
|
+
// },
|
|
709
|
+
// {
|
|
710
|
+
// text: 'SCO OpenServer 5',
|
|
711
|
+
// value: 'openServer5Guest-vbsEnabled-false',
|
|
712
|
+
// },
|
|
713
|
+
// {
|
|
714
|
+
// text: 'SCO OpenServer 6',
|
|
715
|
+
// value: 'openServer6Guest-vbsEnabled-false',
|
|
716
|
+
// },
|
|
717
|
+
// {
|
|
718
|
+
// text: 'IBM OS/2',
|
|
719
|
+
// value: 'os2Guest-vbsEnabled-false',
|
|
720
|
+
// },
|
|
721
|
+
// {
|
|
722
|
+
// text: 'Other (32-bit)',
|
|
723
|
+
// value: 'otherGuest-vbsEnabled-false',
|
|
724
|
+
// },
|
|
725
|
+
// {
|
|
726
|
+
// text: 'Other (64-bit)',
|
|
727
|
+
// value: 'otherGuest64-vbsEnabled-false',
|
|
728
|
+
// },
|
|
729
|
+
// {
|
|
730
|
+
// text: 'Oracle Solaris 10 (32-bit)',
|
|
731
|
+
// value: 'solaris10Guest-vbsEnabled-false',
|
|
732
|
+
// },
|
|
733
|
+
// {
|
|
734
|
+
// text: 'Oracle Solaris 10 (64-bit)',
|
|
735
|
+
// value: 'solaris10_64Guest-vbsEnabled-false',
|
|
736
|
+
// },
|
|
737
|
+
// {
|
|
738
|
+
// text: 'Oracle Solaris 11 (64-bit)',
|
|
739
|
+
// value: 'solaris11_64Guest-vbsEnabled-false',
|
|
740
|
+
// },
|
|
741
|
+
// {
|
|
742
|
+
// text: 'Sun Microsystems Solaris 8',
|
|
743
|
+
// value: 'solaris8Guest-vbsEnabled-false',
|
|
744
|
+
// },
|
|
745
|
+
// {
|
|
746
|
+
// text: 'Sun Microsystems Solaris 9',
|
|
747
|
+
// value: 'solaris9Guest-vbsEnabled-false',
|
|
748
|
+
// },
|
|
749
|
+
// {
|
|
750
|
+
// text: 'SCO UnixWare 7',
|
|
751
|
+
// value: 'unixWare7Guest-vbsEnabled-false',
|
|
752
|
+
// },
|
|
753
|
+
// {
|
|
754
|
+
// text: 'VMware ESXi 5.x',
|
|
755
|
+
// value: 'vmkernel5Guest-vbsEnabled-false',
|
|
756
|
+
// },
|
|
757
|
+
// {
|
|
758
|
+
// text: 'VMware ESXi 6.x',
|
|
759
|
+
// value: 'vmkernel65Guest-vbsEnabled-false',
|
|
760
|
+
// },
|
|
761
|
+
// {
|
|
762
|
+
// text: 'VMware ESXi 6.0',
|
|
763
|
+
// value: 'vmkernel6Guest-vbsEnabled-false',
|
|
764
|
+
// },
|
|
765
|
+
// {
|
|
766
|
+
// text: 'VMware ESXi 7.0 or later',
|
|
767
|
+
// value: 'vmkernel7Guest-vbsEnabled-false',
|
|
768
|
+
// },
|
|
769
|
+
// {
|
|
770
|
+
// text: 'VMware ESX 4.x',
|
|
771
|
+
// value: 'vmkernelGuest-vbsEnabled-false',
|
|
772
|
+
// },
|
|
773
|
+
],
|
|
774
|
+
},
|
|
775
|
+
maxCpus: 140,
|
|
776
|
+
maxMemory: 65536,
|
|
777
|
+
}
|