-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsummary.json
10830 lines (10830 loc) · 680 KB
/
summary.json
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
{
"Table of contents": {
"Home": "README.md",
"Verb Mapping": "verb-mapping.md",
"Command Reference": {
"dir": "cmdlets",
"v9.20": {
"dir": "v9.20",
"Appliance": {
"dir": "appliance",
"Add-OVApplianceTrustedCertificate": "add-ovappliancetrustedcertificate.md",
"Add-OVBaseline": "add-ovbaseline.md",
"Add-OVResourceToScope": "add-ovresourcetoscope.md",
"Add-OVSmtpAlertEmailFilter": "add-ovsmtpalertemailfilter.md",
"Clear-OVAlert": "clear-ovalert.md",
"Connect-OVComputeOpsManagement": "connect-ovcomputeopsmanagement.md",
"Disable-OVApplianceComplexPasswords": "disable-ovappliancecomplexpasswords.md",
"Disable-OVApplianceServiceConsoleAccess": "disable-ovapplianceserviceconsoleaccess.md",
"Disable-OVApplianceSshAccess": "disable-ovappliancesshaccess.md",
"Disable-OVApplianceStrictSecurityCipherSuite": "disable-ovappliancestrictsecurityciphersuite.md",
"Disable-OVApplianceTwoFactorAuthentication": "disable-ovappliancetwofactorauthentication.md",
"Disable-OVCertificateValidation": "disable-ovcertificatevalidation.md",
"Disable-OVComposerIlo": "disable-ovcomposerilo.md",
"Disable-OVComputeOpsManagement": "disable-ovcomputeopsmanagement.md",
"Disable-OVRemoteSupport": "disable-ovremotesupport.md",
"Disable-OVRemoteSyslog": "disable-ovremotesyslog.md",
"Enable-OVApplianceComplexPasswords": "enable-ovappliancecomplexpasswords.md",
"Enable-OVApplianceServiceConsoleAccess": "enable-ovapplianceserviceconsoleaccess.md",
"Enable-OVApplianceSshAccess": "enable-ovappliancesshaccess.md",
"Enable-OVApplianceStrictSecurityCipherSuite": "enable-ovappliancestrictsecurityciphersuite.md",
"Enable-OVCertificateValidation": "enable-ovcertificatevalidation.md",
"Enable-OVComposerHANode": "enable-ovcomposerhanode.md",
"Enable-OVComposerIlo": "enable-ovcomposerilo.md",
"Enable-OVComputeOpsmanagement": "enable-ovcomputeopsmanagement.md",
"Enable-OVRemoteSupport": "enable-ovremotesupport.md",
"Enable-OVRemoteSyslog": "enable-ovremotesyslog.md",
"Get-OVAddressPool": "get-ovaddresspool.md",
"Get-OVAddressPoolRange": "get-ovaddresspoolrange.md",
"Get-OVAddressPoolSubnet": "get-ovaddresspoolsubnet.md",
"Get-OVAlert": "get-ovalert.md",
"Get-OVApplianceAuditLogForwarding": "get-ovapplianceauditlogforwarding.md",
"Get-OVApplianceAvailableSecurityMode": "get-ovapplianceavailablesecuritymode.md",
"Get-OVApplianceCertificateStatus": "get-ovappliancecertificatestatus.md",
"Get-OVApplianceCurrentSecurityMode": "get-ovappliancecurrentsecuritymode.md",
"Get-OVApplianceDateTime": "get-ovappliancedatetime.md",
"Get-OVApplianceGlobalSetting": "get-ovapplianceglobalsetting.md",
"Get-OVApplianceIPAddress": "get-ovapplianceipaddress.md",
"Get-OVApplianceNetworkConfig": "get-ovappliancenetworkconfig.md",
"Get-OVApplianceProxy": "get-ovapplianceproxy.md",
"Get-OVApplianceSecurityProtocol": "get-ovappliancesecurityprotocol.md",
"Get-OVApplianceServiceConsoleAccess": "get-ovapplianceserviceconsoleaccess.md",
"Get-OVApplianceSnmpV3EngineId": "get-ovappliancesnmpv3engineid.md",
"Get-OVApplianceSshAccess": "get-ovappliancesshaccess.md",
"Get-OVApplianceStaticRoute": "get-ovappliancestaticroute.md",
"Get-OVApplianceStatus": "get-ovappliancestatus.md",
"Get-OVApplianceTrapDestination": "get-ovappliancetrapdestination.md",
"Get-OVApplianceTrustedCertificate": "get-ovappliancetrustedcertificate.md",
"Get-OVApplianceTwoFactorAuthentication": "get-ovappliancetwofactorauthentication.md",
"Get-OVApplianceUpdate": "get-ovapplianceupdate.md",
"Get-OVApplianceUpdateSchedule": "get-ovapplianceupdateschedule.md",
"Get-OVAuditLog": "get-ovauditlog.md",
"Get-OVAuditLogArchive": "get-ovauditlogarchive.md",
"Get-OVAutomaticBackupConfig": "get-ovautomaticbackupconfig.md",
"Get-OVBackup": "get-ovbackup.md",
"Get-OVBaseline": "get-ovbaseline.md",
"Get-OVBaselineRepository": "get-ovbaselinerepository.md",
"Get-OVComposerIloStatus": "get-ovcomposerilostatus.md",
"Get-OVComputeOpsManagement": "get-ovcomputeopsmanagement.md",
"Get-OVEulaStatus": "get-oveulastatus.md",
"Get-OVFirmwareBundleUpdate": "get-ovfirmwarebundleupdate.md",
"Get-OVFirmwareBundleUpdateSchedule": "get-ovfirmwarebundleupdateschedule.md",
"Get-OVFixMeInstallationLog": "get-ovfixmeinstallationlog.md",
"Get-OVHealthStatus": "get-ovhealthstatus.md",
"Get-OVInterconnectNTPConfiguration": "get-ovinterconnectntpconfiguration.md",
"Get-OVLabel": "get-ovlabel.md",
"Get-OVLicense": "get-ovlicense.md",
"Get-OVLoginMessage": "get-ovloginmessage.md",
"Get-OVPendingUpdate": "get-ovpendingupdate.md",
"Get-OVRemoteSupport": "get-ovremotesupport.md",
"Get-OVRemoteSupportContact": "get-ovremotesupportcontact.md",
"Get-OVRemoteSupportDataCollectionSchedule": "get-ovremotesupportdatacollectionschedule.md",
"Get-OVRemoteSupportDefaultSite": "get-ovremotesupportdefaultsite.md",
"Get-OVRemoteSupportEntitlementStatus": "get-ovremotesupportentitlementstatus.md",
"Get-OVRemoteSupportPartner": "get-ovremotesupportpartner.md",
"Get-OVRemoteSupportSetting": "get-ovremotesupportsetting.md",
"Get-OVRemoteSyslog": "get-ovremotesyslog.md",
"Get-OVRotateMPPasswordPolicy": "get-ovrotatemppasswordpolicy.md",
"Get-OVRotateMPPasswordPolicyReport": "get-ovrotatemppasswordpolicyreport.md",
"Get-OVScmbCertificates": "get-ovscmbcertificates.md",
"Get-OVScope": "get-ovscope.md",
"Get-OVServerNTPConfiguration": "get-ovserverntpconfiguration.md",
"Get-OVServiceAlert": "get-ovservicealert.md",
"Get-OVSmtpAlertEmailFilter": "get-ovsmtpalertemailfilter.md",
"Get-OVSMTPConfig": "get-ovsmtpconfig.md",
"Get-OVSnmpReadCommunity": "get-ovsnmpreadcommunity.md",
"Get-OVSnmpV3User": "get-ovsnmpv3user.md",
"Get-OVTask": "get-ovtask.md",
"Get-OVUser": "get-ovuser.md",
"Import-OVSslCertificate": "import-ovsslcertificate.md",
"Install-OVApplianceCertificate": "install-ovappliancecertificate.md",
"Install-OVUpdate": "install-ovupdate.md",
"New-OVAddressPoolRange": "new-ovaddresspoolrange.md",
"New-OVAddressPoolSubnet": "new-ovaddresspoolsubnet.md",
"New-OVApplianceCsr": "new-ovappliancecsr.md",
"New-OVApplianceSelfSignedCertificate": "new-ovapplianceselfsignedcertificate.md",
"New-OVApplianceStaticRoute": "new-ovappliancestaticroute.md",
"New-OVApplianceTrapDestination": "new-ovappliancetrapdestination.md",
"New-OVBackup": "new-ovbackup.md",
"New-OVCustomBaseline": "new-ovcustombaseline.md",
"New-OVExternalRepository": "new-ovexternalrepository.md",
"New-OVLicense": "new-ovlicense.md",
"New-OVRemoteSupportContact": "new-ovremotesupportcontact.md",
"New-OVRemoteSupportPartner": "new-ovremotesupportpartner.md",
"New-OVRestore": "new-ovrestore.md",
"New-OVScope": "new-ovscope.md",
"New-OVSupportDump": "new-ovsupportdump.md",
"Ping-OVAddress": "ping-ovaddress.md",
"Remove-OVAddressPoolRange": "remove-ovaddresspoolrange.md",
"Remove-OVAddressPoolSubnet": "remove-ovaddresspoolsubnet.md",
"Remove-OVAlert": "remove-ovalert.md",
"Remove-OVApplianceProxy": "remove-ovapplianceproxy.md",
"Remove-OVApplianceStaticRoute": "remove-ovappliancestaticroute.md",
"Remove-OVApplianceTrapDestination": "remove-ovappliancetrapdestination.md",
"Remove-OVApplianceTrustedCertificate": "remove-ovappliancetrustedcertificate.md",
"Remove-OVBaseline": "remove-ovbaseline.md",
"Remove-OVExternalRepository": "remove-ovexternalrepository.md",
"Remove-OVLicense": "remove-ovlicense.md",
"Remove-OVPendingUpdate": "remove-ovpendingupdate.md",
"Remove-OVRemoteSupportContact": "remove-ovremotesupportcontact.md",
"Remove-OVRemoteSupportPartner": "remove-ovremotesupportpartner.md",
"Remove-OVResourceFromLabel": "remove-ovresourcefromlabel.md",
"Remove-OVResourceFromScope": "remove-ovresourcefromscope.md",
"Remove-OVScmbCertificate": "remove-ovscmbcertificate.md",
"Remove-OVScope": "remove-ovscope.md",
"Remove-OVSmtpAlertEmailFilter": "remove-ovsmtpalertemailfilter.md",
"Remove-OVStandbyComposerNode": "remove-ovstandbycomposernode.md",
"Restart-OVAppliance": "restart-ovappliance.md",
"Restore-OVCustomBaseline": "restore-ovcustombaseline.md",
"Save-OVBackup": "save-ovbackup.md",
"Search-OVAssociations": "search-ovassociations.md",
"Search-OVIndex": "search-ovindex.md",
"Set-OVAddressPoolSubnet": "set-ovaddresspoolsubnet.md",
"Set-OVAlert": "set-ovalert.md",
"Set-OVApplianceAuditLogForwarding": "set-ovapplianceauditlogforwarding.md",
"Set-OVApplianceCurrentSecurityMode": "set-ovappliancecurrentsecuritymode.md",
"Set-OVApplianceDateTime": "set-ovappliancedatetime.md",
"Set-OVApplianceGlobalSetting": "set-ovapplianceglobalsetting.md",
"Set-OVApplianceNetworkConfig": "set-ovappliancenetworkconfig.md",
"Set-OVApplianceProxy": "set-ovapplianceproxy.md",
"Set-OVApplianceSecurityProtocol": "set-ovappliancesecurityprotocol.md",
"Set-OVApplianceSnmpV3EngineId": "set-ovappliancesnmpv3engineid.md",
"Set-OVApplianceStaticRoute": "set-ovappliancestaticroute.md",
"Set-OVApplianceTwoFactorAuthentication": "set-ovappliancetwofactorauthentication.md",
"Set-OVAutomaticBackupConfig": "set-ovautomaticbackupconfig.md",
"Set-OVComposerIlo": "set-ovcomposerilo.md",
"Set-OVComputeOpsManagement": "set-ovcomputeopsmanagement.md",
"Set-OVDataCenterRemoteSupport": "set-ovdatacenterremotesupport.md",
"Set-OVEulaStatus": "set-oveulastatus.md",
"Set-OVExternalRepository": "set-ovexternalrepository.md",
"Set-OVFirmwareBundleUpdateSchedule": "set-ovfirmwarebundleupdateschedule.md",
"Set-OVInitialPassword": "set-ovinitialpassword.md",
"Set-OVInterconnectNTPConfiguration": "set-ovinterconnectntpconfiguration.md",
"Set-OVRemoteSupport": "set-ovremotesupport.md",
"Set-OVRemoteSupportDataCollectionSchedule": "set-ovremotesupportdatacollectionschedule.md",
"Set-OVRemoteSupportDefaultSite": "set-ovremotesupportdefaultsite.md",
"Set-OVRemoteSupportPrimaryContact": "set-ovremotesupportprimarycontact.md",
"Set-OVRemoteSupportSecondaryContact": "set-ovremotesupportsecondarycontact.md",
"Set-OVRemoteSupportSetting": "set-ovremotesupportsetting.md",
"Set-OVRemoteSyslog": "set-ovremotesyslog.md",
"Set-OVReservedVlanRange": "set-ovreservedvlanrange.md",
"Set-OVRotateMPPasswordPolicy": "set-ovrotatemppasswordpolicy.md",
"Set-OVServerNTPConfiguration": "set-ovserverntpconfiguration.md",
"Set-OVSmtpAlertEmailFilter": "set-ovsmtpalertemailfilter.md",
"Set-OVSMTPConfig": "set-ovsmtpconfig.md",
"Set-OVSnmpReadCommunity": "set-ovsnmpreadcommunity.md",
"Show-OVApplianceSecurityModeCompatibilityReport": "show-ovappliancesecuritymodecompatibilityreport.md",
"Show-OVBaselineRepositorySize": "show-ovbaselinerepositorysize.md",
"Show-OVUserSession": "show-ovusersession.md",
"Start-OVRemoteSupportCollection": "start-ovremotesupportcollection.md",
"Stop-OVAppliance": "stop-ovappliance.md",
"Test-OVApplianceAuditLogForwarding": "test-ovapplianceauditlogforwarding.md",
"Test-OVEmailAlert": "test-ovemailalert.md",
"Test-OVRemoteSupportEvent": "test-ovremotesupportevent.md",
"Update-OVApplianceTrustedAuthorityCrl": "update-ovappliancetrustedauthoritycrl.md",
"Update-OVExternalRepository": "update-ovexternalrepository.md",
"Update-OVRemoteSupportEntitlement": "update-ovremotesupportentitlement.md",
"Wait-OVTaskComplete": "wait-ovtaskcomplete.md",
"Wait-OVTaskStart": "wait-ovtaskstart.md"
},
"Cluster": {
"dir": "cluster",
"Add-OVClusterManager": "add-ovclustermanager.md",
"Add-OVClusterNode": "add-ovclusternode.md",
"Add-OVClusterNodeToCluster": "add-ovclusternodetocluster.md",
"Enter-OVClusterNodeMaintenanceMode": "enter-ovclusternodemaintenancemode.md",
"Exit-OVClusterNodeMaintenanceMode": "exit-ovclusternodemaintenancemode.md",
"Get-OVCluster": "get-ovcluster.md",
"Get-OVClusterManager": "get-ovclustermanager.md",
"Get-OVClusterNode": "get-ovclusternode.md",
"Get-OVClusterProfile": "get-ovclusterprofile.md",
"New-OVClusterProfile": "new-ovclusterprofile.md",
"New-OVClusterProfileMember": "new-ovclusterprofilemember.md",
"Remove-OVClusterManager": "remove-ovclustermanager.md",
"Remove-OVClusterProfile": "remove-ovclusterprofile.md",
"Set-OVClusterManager": "set-ovclustermanager.md",
"Show-OVHypervisorCluster": "show-ovhypervisorcluster.md",
"Update-OVClusterNode": "update-ovclusternode.md",
"Update-OVClusterProfile": "update-ovclusterprofile.md"
},
"Facilities": {
"dir": "facilities",
"Add-OVPowerDevice": "add-ovpowerdevice.md",
"Add-OVPowerDeviceConnection": "add-ovpowerdeviceconnection.md",
"Add-OVRackToDataCenter": "add-ovracktodatacenter.md",
"Add-OVResourceToLabel": "add-ovresourcetolabel.md",
"Add-OVResourceToRack": "add-ovresourcetorack.md",
"Get-OVDataCenter": "get-ovdatacenter.md",
"Get-OVPowerDevice": "get-ovpowerdevice.md",
"Get-OVPowerPotentialDeviceConnection": "get-ovpowerpotentialdeviceconnection.md",
"Get-OVRack": "get-ovrack.md",
"Get-OVRackMember": "get-ovrackmember.md",
"Get-OVUnmanagedDevice": "get-ovunmanageddevice.md",
"New-OVDataCenter": "new-ovdatacenter.md",
"New-OVPowerDevice": "new-ovpowerdevice.md",
"New-OVRack": "new-ovrack.md",
"New-OVUnmanagedDevice": "new-ovunmanageddevice.md",
"Remove-OVDataCenter": "remove-ovdatacenter.md",
"Remove-OVPowerDevice": "remove-ovpowerdevice.md",
"Remove-OVRack": "remove-ovrack.md",
"Remove-OVRackMember": "remove-ovrackmember.md",
"Remove-OVUnmanagedDevice": "remove-ovunmanageddevice.md",
"Set-OVDataCenter": "set-ovdatacenter.md",
"Set-OVRack": "set-ovrack.md",
"Set-OVRackMemberLocation": "set-ovrackmemberlocation.md"
},
"Library": {
"dir": "library",
"Connect-OVMgmt": "connect-ovmgmt.md",
"ConvertTo-OVPowerShellScript": "convertto-ovpowershellscript.md",
"Disable-OVCertificateRevocationChecking": "disable-ovcertificaterevocationchecking.md",
"Disable-OVDebug": "disable-ovdebug.md",
"Disable-OVMSDSC": "disable-ovmsdsc.md",
"Disconnect-OVMgmt": "disconnect-ovmgmt.md",
"Enable-OVCertificateRevocationChecking": "enable-ovcertificaterevocationchecking.md",
"Enable-OVDebug": "enable-ovdebug.md",
"Enable-OVMSDSC": "enable-ovmsdsc.md",
"Get-OVCommandTrace": "get-ovcommandtrace.md",
"Get-OVRemoteSupportPortalConnectionStatus": "get-ovremotesupportportalconnectionstatus.md",
"Get-OVVersion": "get-ovversion.md",
"Get-OVXApiVersion": "get-ovxapiversion.md",
"Invoke-OVWebBrowser": "invoke-ovwebbrowser.md",
"New-OVIloDirectoryGroup": "new-ovilodirectorygroup.md",
"New-OVResource": "new-ovresource.md",
"New-OVSnmpConfiguration": "new-ovsnmpconfiguration.md",
"New-OVSnmpTrapDestination": "new-ovsnmptrapdestination.md",
"New-OVSnmpV3User": "new-ovsnmpv3user.md",
"Pop-OVAppliancePermission": "pop-ovappliancepermission.md",
"Push-OVAppliancePermission": "push-ovappliancepermission.md",
"Register-OVRemoteSupportPortalConnection": "register-ovremotesupportportalconnection.md",
"Remove-OVResource": "remove-ovresource.md",
"Remove-OVSnmpV3User": "remove-ovsnmpv3user.md",
"Send-OVRequest": "send-ovrequest.md",
"Set-OVApplianceDefaultConnection": "set-ovappliancedefaultconnection.md",
"Set-OVCertificateRevocationInterval": "set-ovcertificaterevocationinterval.md",
"Set-OVResource": "set-ovresource.md",
"Start-OVLibraryTrace": "start-ovlibrarytrace.md",
"Stop-OVLibraryTrace": "stop-ovlibrarytrace.md",
"Unregister-OVRemoteSupportPortalConnection": "unregister-ovremotesupportportalconnection.md",
"Update-OVUserScript": "update-ovuserscript.md",
"Wait-OVApplianceStart": "wait-ovappliancestart.md"
},
"Networking": {
"dir": "networking",
"Add-OVFabricManager": "add-ovfabricmanager.md",
"Disable-OVLogicalInterconnectPortMonitoring": "disable-ovlogicalinterconnectportmonitoring.md",
"Enable-OVLogicalInterconnectPortMonitoring": "enable-ovlogicalinterconnectportmonitoring.md",
"Get-OVFabricManager": "get-ovfabricmanager.md",
"Get-OVInterconnect": "get-ovinterconnect.md",
"Get-OVInterconnectType": "get-ovinterconnecttype.md",
"Get-OVLogicalInterconnect": "get-ovlogicalinterconnect.md",
"Get-OVLogicalInterconnectGroup": "get-ovlogicalinterconnectgroup.md",
"Get-OVLogicalInterconnectPortMonitoring": "get-ovlogicalinterconnectportmonitoring.md",
"Get-OVLogicalSwitch": "get-ovlogicalswitch.md",
"Get-OVLogicalSwitchGroup": "get-ovlogicalswitchgroup.md",
"Get-OVNetwork": "get-ovnetwork.md",
"Get-OVNetworkSet": "get-ovnetworkset.md",
"Get-OVReservedVlanRange": "get-ovreservedvlanrange.md",
"Get-OVSasInterconnectType": "get-ovsasinterconnecttype.md",
"Get-OVSasLogicalInterconnect": "get-ovsaslogicalinterconnect.md",
"Get-OVSwitch": "get-ovswitch.md",
"Get-OVSwitchType": "get-ovswitchtype.md",
"Get-OVUplinkSet": "get-ovuplinkset.md",
"Install-OVLogicalInterconnectFirmware": "install-ovlogicalinterconnectfirmware.md",
"Invoke-OVVcmMigration": "invoke-ovvcmmigration.md",
"New-OVLogicalInterconnectGroup": "new-ovlogicalinterconnectgroup.md",
"New-OVLogicalSwitch": "new-ovlogicalswitch.md",
"New-OVLogicalSwitchGroup": "new-ovlogicalswitchgroup.md",
"New-OVNetwork": "new-ovnetwork.md",
"New-OVNetworkSet": "new-ovnetworkset.md",
"New-OVQosConfig": "new-ovqosconfig.md",
"New-OVQosTrafficClass": "new-ovqostrafficclass.md",
"New-OVUplinkSet": "new-ovuplinkset.md",
"Remove-OVFabricManager": "remove-ovfabricmanager.md",
"Remove-OVLogicalInterconnectGroup": "remove-ovlogicalinterconnectgroup.md",
"Remove-OVLogicalSwitch": "remove-ovlogicalswitch.md",
"Remove-OVLogicalSwitchGroup": "remove-ovlogicalswitchgroup.md",
"Remove-OVNetwork": "remove-ovnetwork.md",
"Remove-OVNetworkSet": "remove-ovnetworkset.md",
"Reset-OVInterconnectNetOpPassword": "reset-ovinterconnectnetoppassword.md",
"Set-OVInterconnectName": "set-ovinterconnectname.md",
"Set-OVNetwork": "set-ovnetwork.md",
"Set-OVNetworkSet": "set-ovnetworkset.md",
"Set-OVUplinkSet": "set-ovuplinkset.md",
"Show-OVLogicalInterconnectMacTable": "show-ovlogicalinterconnectmactable.md",
"Show-OVPortStatistics": "show-ovportstatistics.md",
"Update-OVLogicalEnclosureFirmware": "update-ovlogicalenclosurefirmware.md",
"Update-OVLogicalInterconnect": "update-ovlogicalinterconnect.md",
"Update-OVLogicalSwitch": "update-ovlogicalswitch.md"
},
"Security": {
"dir": "security",
"Add-OVLdapServer": "add-ovldapserver.md",
"Disable-OVApplianceDataAtRestEncryption": "disable-ovappliancedataatrestencryption.md",
"Disable-OVLdapLocalLogin": "disable-ovldaplocallogin.md",
"Enable-OVApplianceDataAtRestEncryption": "enable-ovappliancedataatrestencryption.md",
"Enable-OVLdapLocalLogin": "enable-ovldaplocallogin.md",
"Get-OVApplianceDataAtRestEncryption": "get-ovappliancedataatrestencryption.md",
"Get-OVLdap": "get-ovldap.md",
"Get-OVLdapDirectory": "get-ovldapdirectory.md",
"Get-OVLdapGroup": "get-ovldapgroup.md",
"Get-OVRole": "get-ovrole.md",
"New-OVApplianceDataAtRestEncryptionKey": "new-ovappliancedataatrestencryptionkey.md",
"New-OVLdapDirectory": "new-ovldapdirectory.md",
"New-OVLdapGroup": "new-ovldapgroup.md",
"New-OVLdapServer": "new-ovldapserver.md",
"New-OVUser": "new-ovuser.md",
"Remove-OVLdapDirectory": "remove-ovldapdirectory.md",
"Remove-OVLdapGroup": "remove-ovldapgroup.md",
"Remove-OVLdapServer": "remove-ovldapserver.md",
"Remove-OVUser": "remove-ovuser.md",
"Save-OVApplianceDataAtRestEncryptionKey": "save-ovappliancedataatrestencryptionkey.md",
"Set-OVLdapDefaultDirectory": "set-ovldapdefaultdirectory.md",
"Set-OVLdapGroupRole": "set-ovldapgrouprole.md",
"Set-OVLoginMessage": "set-ovloginmessage.md",
"Set-OVUser": "set-ovuser.md",
"Set-OVUserPassword": "set-ovuserpassword.md",
"Set-OVUserRole": "set-ovuserrole.md",
"Show-OVActiveUser": "show-ovactiveuser.md",
"Show-OVLdapGroups": "show-ovldapgroups.md"
},
"Servers": {
"dir": "servers",
"Add-OVEnclosure": "add-ovenclosure.md",
"Add-OVRackManager": "add-ovrackmanager.md",
"Add-OVRemoteFrame": "add-ovremoteframe.md",
"Add-OVServer": "add-ovserver.md",
"Convert-OVServerProfile": "convert-ovserverprofile.md",
"Convert-OVServerProfileTemplate": "convert-ovserverprofiletemplate.md",
"ConvertTo-OVImageStreamerConfiguration": "convertto-ovimagestreamerconfiguration.md",
"ConvertTo-OVServerProfileTemplate": "convertto-ovserverprofiletemplate.md",
"Copy-OVServerProfile": "copy-ovserverprofile.md",
"Disable-OVDeviceUid": "disable-ovdeviceuid.md",
"Disable-OVMaintenanceMode": "disable-ovmaintenancemode.md",
"Enable-OVDeviceUid": "enable-ovdeviceuid.md",
"Enable-OVMaintenanceMode": "enable-ovmaintenancemode.md",
"Get-OVComposerNode": "get-ovcomposernode.md",
"Get-OVEnclosure": "get-ovenclosure.md",
"Get-OVEnclosureGroup": "get-ovenclosuregroup.md",
"Get-OVIloSso": "get-ovilosso.md",
"Get-OVImageStreamerAppliance": "get-ovimagestreamerappliance.md",
"Get-OVLogicalEnclosure": "get-ovlogicalenclosure.md",
"Get-OVMigratableServer": "get-ovmigratableserver.md",
"Get-OVOSDeploymentPlan": "get-ovosdeploymentplan.md",
"Get-OVOSDeploymentPlanAttribute": "get-ovosdeploymentplanattribute.md",
"Get-OVOSDeploymentServer": "get-ovosdeploymentserver.md",
"Get-OVRackManager": "get-ovrackmanager.md",
"Get-OVServer": "get-ovserver.md",
"Get-OVServerHardwareAvailableController": "get-ovserverhardwareavailablecontroller.md",
"Get-OVServerHardwareType": "get-ovserverhardwaretype.md",
"Get-OVServerOneTimeBoot": "get-ovserveronetimeboot.md",
"Get-OVServerProfile": "get-ovserverprofile.md",
"Get-OVServerProfileConnectionList": "get-ovserverprofileconnectionlist.md",
"Get-OVServerProfileMessage": "get-ovserverprofilemessage.md",
"Get-OVServerProfileTemplate": "get-ovserverprofiletemplate.md",
"Invoke-OVMigrateServer": "invoke-ovmigrateserver.md",
"Join-OVServerProfileToTemplate": "join-ovserverprofiletotemplate.md",
"New-OVEnclosureGroup": "new-ovenclosuregroup.md",
"New-OVIloLocalUserAccount": "new-ovilolocaluseraccount.md",
"New-OVLogicalEnclosure": "new-ovlogicalenclosure.md",
"New-OVOSDeploymentServer": "new-ovosdeploymentserver.md",
"New-OVServerProfile": "new-ovserverprofile.md",
"New-OVServerProfileAssign": "new-ovserverprofileassign.md",
"New-OVServerProfileAttachVolume": "new-ovserverprofileattachvolume.md",
"New-OVServerProfileConnection": "new-ovserverprofileconnection.md",
"New-OVServerProfileIloPolicy": "new-ovserverprofileilopolicy.md",
"New-OVServerProfileLogicalDisk": "new-ovserverprofilelogicaldisk.md",
"New-OVServerProfileLogicalDiskController": "new-ovserverprofilelogicaldiskcontroller.md",
"New-OVServerProfileTemplate": "new-ovserverprofiletemplate.md",
"Remove-OVEnclosure": "remove-ovenclosure.md",
"Remove-OVEnclosureGroup": "remove-ovenclosuregroup.md",
"Remove-OVLogicalEnclosure": "remove-ovlogicalenclosure.md",
"Remove-OVOSDeploymentServer": "remove-ovosdeploymentserver.md",
"Remove-OVRackManager": "remove-ovrackmanager.md",
"Remove-OVServer": "remove-ovserver.md",
"Remove-OVServerProfile": "remove-ovserverprofile.md",
"Remove-OVServerProfileTemplate": "remove-ovserverprofiletemplate.md",
"Reset-OVEnclosureDevice": "reset-ovenclosuredevice.md",
"Restart-OVServer": "restart-ovserver.md",
"Save-OVServerProfile": "save-ovserverprofile.md",
"Save-OVServerProfileTemplate": "save-ovserverprofiletemplate.md",
"Set-OVEnclosure": "set-ovenclosure.md",
"Set-OVEnclosureActiveFLM": "set-ovenclosureactiveflm.md",
"Set-OVEnclosureGroup": "set-ovenclosuregroup.md",
"Set-OVLogicalEnclosure": "set-ovlogicalenclosure.md",
"Set-OVServerHardwareType": "set-ovserverhardwaretype.md",
"Set-OVServerOneTimeBoot": "set-ovserveronetimeboot.md",
"Set-OVServerPower": "set-ovserverpower.md",
"Set-OVServerProfile": "set-ovserverprofile.md",
"Set-OVServerProfileTemplate": "set-ovserverprofiletemplate.md",
"Show-OVFirmwareReport": "show-ovfirmwarereport.md",
"Show-OVUtilization": "show-ovutilization.md",
"Start-OVEnclosureAppliance": "start-ovenclosureappliance.md",
"Start-OVServer": "start-ovserver.md",
"Stop-OVServer": "stop-ovserver.md",
"Update-OVEnclosure": "update-ovenclosure.md",
"Update-OVLogicalEnclosure": "update-ovlogicalenclosure.md",
"Update-OVRackManager": "update-ovrackmanager.md",
"Update-OVServer": "update-ovserver.md",
"Update-OVServerFirmware": "update-ovserverfirmware.md",
"Update-OVServerHardwareLicenseIntent": "update-ovserverhardwarelicenseintent.md",
"Update-OVServerProfile": "update-ovserverprofile.md"
},
"Storage": {
"dir": "storage",
"Add-OVSanManager": "add-ovsanmanager.md",
"Add-OVStoragePool": "add-ovstoragepool.md",
"Add-OVStorageSystem": "add-ovstoragesystem.md",
"Add-OVStorageVolume": "add-ovstoragevolume.md",
"ConvertTo-OVStorageVolume": "convertto-ovstoragevolume.md",
"Get-OVAvailableDriveType": "get-ovavailabledrivetype.md",
"Get-OVDriveEnclosure": "get-ovdriveenclosure.md",
"Get-OVDriveEnclosureInventory": "get-ovdriveenclosureinventory.md",
"Get-OVLogicalJBOD": "get-ovlogicaljbod.md",
"Get-OVManagedSan": "get-ovmanagedsan.md",
"Get-OVSanManager": "get-ovsanmanager.md",
"Get-OVSanZone": "get-ovsanzone.md",
"Get-OVStoragePool": "get-ovstoragepool.md",
"Get-OVStorageSystem": "get-ovstoragesystem.md",
"Get-OVStorageVolume": "get-ovstoragevolume.md",
"Get-OVStorageVolumeSet": "get-ovstoragevolumeset.md",
"Get-OVStorageVolumeSnapShot": "get-ovstoragevolumesnapshot.md",
"Get-OVStorageVolumeTemplate": "get-ovstoragevolumetemplate.md",
"Get-OVStorageVolumeTemplatePolicy": "get-ovstoragevolumetemplatepolicy.md",
"New-OVLogicalJBOD": "new-ovlogicaljbod.md",
"New-OVStorageVolume": "new-ovstoragevolume.md",
"New-OVStorageVolumeSnapshot": "new-ovstoragevolumesnapshot.md",
"New-OVStorageVolumeTemplate": "new-ovstoragevolumetemplate.md",
"Remove-OVLogicalJBOD": "remove-ovlogicaljbod.md",
"Remove-OVSanManager": "remove-ovsanmanager.md",
"Remove-OVStoragePool": "remove-ovstoragepool.md",
"Remove-OVStorageSystem": "remove-ovstoragesystem.md",
"Remove-OVStorageVolume": "remove-ovstoragevolume.md",
"Remove-OVStorageVolumeSnapshot": "remove-ovstoragevolumesnapshot.md",
"Remove-OVStorageVolumeTemplate": "remove-ovstoragevolumetemplate.md",
"Set-OVLogicalJBOD": "set-ovlogicaljbod.md",
"Set-OVManagedSan": "set-ovmanagedsan.md",
"Set-OVSanManager": "set-ovsanmanager.md",
"Set-OVStoragePool": "set-ovstoragepool.md",
"Set-OVStorageVolume": "set-ovstoragevolume.md",
"Set-OVStorageVolumeTemplate": "set-ovstoragevolumetemplate.md",
"Set-OVStorageVolumeTemplatePolicy": "set-ovstoragevolumetemplatepolicy.md",
"Show-OVSanEndpoint": "show-ovsanendpoint.md",
"Show-OVStorageSystemPerformancePolicy": "show-ovstoragesystemperformancepolicy.md",
"Update-OVSanManager": "update-ovsanmanager.md",
"Update-OVStoragePool": "update-ovstoragepool.md",
"Update-OVStorageSystem": "update-ovstoragesystem.md"
}
},
"v9.10": {
"dir": "v9.10",
"Appliance": {
"dir": "appliance",
"Add-OVApplianceTrustedCertificate": "add-ovappliancetrustedcertificate.md",
"Add-OVBaseline": "add-ovbaseline.md",
"Add-OVResourceToScope": "add-ovresourcetoscope.md",
"Add-OVSmtpAlertEmailFilter": "add-ovsmtpalertemailfilter.md",
"Clear-OVAlert": "clear-ovalert.md",
"Connect-OVComputeOpsManagement": "connect-ovcomputeopsmanagement.md",
"Disable-OVApplianceComplexPasswords": "disable-ovappliancecomplexpasswords.md",
"Disable-OVApplianceServiceConsoleAccess": "disable-ovapplianceserviceconsoleaccess.md",
"Disable-OVApplianceSshAccess": "disable-ovappliancesshaccess.md",
"Disable-OVApplianceStrictSecurityCipherSuite": "disable-ovappliancestrictsecurityciphersuite.md",
"Disable-OVApplianceTwoFactorAuthentication": "disable-ovappliancetwofactorauthentication.md",
"Disable-OVCertificateValidation": "disable-ovcertificatevalidation.md",
"Disable-OVComposerIlo": "disable-ovcomposerilo.md",
"Disable-OVComputeOpsManagement": "disable-ovcomputeopsmanagement.md",
"Disable-OVRemoteSupport": "disable-ovremotesupport.md",
"Disable-OVRemoteSyslog": "disable-ovremotesyslog.md",
"Enable-OVApplianceComplexPasswords": "enable-ovappliancecomplexpasswords.md",
"Enable-OVApplianceServiceConsoleAccess": "enable-ovapplianceserviceconsoleaccess.md",
"Enable-OVApplianceSshAccess": "enable-ovappliancesshaccess.md",
"Enable-OVApplianceStrictSecurityCipherSuite": "enable-ovappliancestrictsecurityciphersuite.md",
"Enable-OVCertificateValidation": "enable-ovcertificatevalidation.md",
"Enable-OVComposerHANode": "enable-ovcomposerhanode.md",
"Enable-OVComposerIlo": "enable-ovcomposerilo.md",
"Enable-OVComputeOpsmanagement": "enable-ovcomputeopsmanagement.md",
"Enable-OVRemoteSupport": "enable-ovremotesupport.md",
"Enable-OVRemoteSyslog": "enable-ovremotesyslog.md",
"Get-OVAddressPool": "get-ovaddresspool.md",
"Get-OVAddressPoolRange": "get-ovaddresspoolrange.md",
"Get-OVAddressPoolSubnet": "get-ovaddresspoolsubnet.md",
"Get-OVAlert": "get-ovalert.md",
"Get-OVApplianceAuditLogForwarding": "get-ovapplianceauditlogforwarding.md",
"Get-OVApplianceAvailableSecurityMode": "get-ovapplianceavailablesecuritymode.md",
"Get-OVApplianceCertificateStatus": "get-ovappliancecertificatestatus.md",
"Get-OVApplianceCurrentSecurityMode": "get-ovappliancecurrentsecuritymode.md",
"Get-OVApplianceDateTime": "get-ovappliancedatetime.md",
"Get-OVApplianceGlobalSetting": "get-ovapplianceglobalsetting.md",
"Get-OVApplianceIPAddress": "get-ovapplianceipaddress.md",
"Get-OVApplianceNetworkConfig": "get-ovappliancenetworkconfig.md",
"Get-OVApplianceProxy": "get-ovapplianceproxy.md",
"Get-OVApplianceSecurityProtocol": "get-ovappliancesecurityprotocol.md",
"Get-OVApplianceServiceConsoleAccess": "get-ovapplianceserviceconsoleaccess.md",
"Get-OVApplianceSnmpV3EngineId": "get-ovappliancesnmpv3engineid.md",
"Get-OVApplianceSshAccess": "get-ovappliancesshaccess.md",
"Get-OVApplianceStaticRoute": "get-ovappliancestaticroute.md",
"Get-OVApplianceStatus": "get-ovappliancestatus.md",
"Get-OVApplianceTrapDestination": "get-ovappliancetrapdestination.md",
"Get-OVApplianceTrustedCertificate": "get-ovappliancetrustedcertificate.md",
"Get-OVApplianceTwoFactorAuthentication": "get-ovappliancetwofactorauthentication.md",
"Get-OVApplianceUpdate": "get-ovapplianceupdate.md",
"Get-OVApplianceUpdateSchedule": "get-ovapplianceupdateschedule.md",
"Get-OVAuditLog": "get-ovauditlog.md",
"Get-OVAuditLogArchive": "get-ovauditlogarchive.md",
"Get-OVAutomaticBackupConfig": "get-ovautomaticbackupconfig.md",
"Get-OVBackup": "get-ovbackup.md",
"Get-OVBaseline": "get-ovbaseline.md",
"Get-OVBaselineRepository": "get-ovbaselinerepository.md",
"Get-OVComposerIloStatus": "get-ovcomposerilostatus.md",
"Get-OVComputeOpsManagement": "get-ovcomputeopsmanagement.md",
"Get-OVEulaStatus": "get-oveulastatus.md",
"Get-OVFirmwareBundleUpdate": "get-ovfirmwarebundleupdate.md",
"Get-OVFirmwareBundleUpdateSchedule": "get-ovfirmwarebundleupdateschedule.md",
"Get-OVFixMeInstallationLog": "get-ovfixmeinstallationlog.md",
"Get-OVHealthStatus": "get-ovhealthstatus.md",
"Get-OVInterconnectNTPConfiguration": "get-ovinterconnectntpconfiguration.md",
"Get-OVLabel": "get-ovlabel.md",
"Get-OVLicense": "get-ovlicense.md",
"Get-OVLoginMessage": "get-ovloginmessage.md",
"Get-OVPendingUpdate": "get-ovpendingupdate.md",
"Get-OVRemoteSupport": "get-ovremotesupport.md",
"Get-OVRemoteSupportContact": "get-ovremotesupportcontact.md",
"Get-OVRemoteSupportDataCollectionSchedule": "get-ovremotesupportdatacollectionschedule.md",
"Get-OVRemoteSupportDefaultSite": "get-ovremotesupportdefaultsite.md",
"Get-OVRemoteSupportEntitlementStatus": "get-ovremotesupportentitlementstatus.md",
"Get-OVRemoteSupportPartner": "get-ovremotesupportpartner.md",
"Get-OVRemoteSupportPortalConnectionStatus": "get-ovremotesupportportalconnectionstatus.md",
"Get-OVRemoteSupportSetting": "get-ovremotesupportsetting.md",
"Get-OVRemoteSyslog": "get-ovremotesyslog.md",
"Get-OVRotateMPPasswordPolicy": "get-ovrotatemppasswordpolicy.md",
"Get-OVRotateMPPasswordPolicyReport": "get-ovrotatemppasswordpolicyreport.md",
"Get-OVScmbCertificates": "get-ovscmbcertificates.md",
"Get-OVScope": "get-ovscope.md",
"Get-OVServerNTPConfiguration": "get-ovserverntpconfiguration.md",
"Get-OVServiceAlert": "get-ovservicealert.md",
"Get-OVSmtpAlertEmailFilter": "get-ovsmtpalertemailfilter.md",
"Get-OVSMTPConfig": "get-ovsmtpconfig.md",
"Get-OVSnmpReadCommunity": "get-ovsnmpreadcommunity.md",
"Get-OVSnmpV3User": "get-ovsnmpv3user.md",
"Get-OVTask": "get-ovtask.md",
"Get-OVUser": "get-ovuser.md",
"Import-OVSslCertificate": "import-ovsslcertificate.md",
"Install-OVApplianceCertificate": "install-ovappliancecertificate.md",
"Install-OVUpdate": "install-ovupdate.md",
"New-OVAddressPoolRange": "new-ovaddresspoolrange.md",
"New-OVAddressPoolSubnet": "new-ovaddresspoolsubnet.md",
"New-OVApplianceCsr": "new-ovappliancecsr.md",
"New-OVApplianceSelfSignedCertificate": "new-ovapplianceselfsignedcertificate.md",
"New-OVApplianceStaticRoute": "new-ovappliancestaticroute.md",
"New-OVApplianceTrapDestination": "new-ovappliancetrapdestination.md",
"New-OVBackup": "new-ovbackup.md",
"New-OVCustomBaseline": "new-ovcustombaseline.md",
"New-OVExternalRepository": "new-ovexternalrepository.md",
"New-OVLicense": "new-ovlicense.md",
"New-OVRemoteSupportContact": "new-ovremotesupportcontact.md",
"New-OVRemoteSupportPartner": "new-ovremotesupportpartner.md",
"New-OVRestore": "new-ovrestore.md",
"New-OVScope": "new-ovscope.md",
"New-OVSupportDump": "new-ovsupportdump.md",
"Ping-OVAddress": "ping-ovaddress.md",
"Register-OVRemoteSupportPortalConnection": "register-ovremotesupportportalconnection.md",
"Remove-OVAddressPoolRange": "remove-ovaddresspoolrange.md",
"Remove-OVAddressPoolSubnet": "remove-ovaddresspoolsubnet.md",
"Remove-OVAlert": "remove-ovalert.md",
"Remove-OVApplianceProxy": "remove-ovapplianceproxy.md",
"Remove-OVApplianceStaticRoute": "remove-ovappliancestaticroute.md",
"Remove-OVApplianceTrapDestination": "remove-ovappliancetrapdestination.md",
"Remove-OVApplianceTrustedCertificate": "remove-ovappliancetrustedcertificate.md",
"Remove-OVBaseline": "remove-ovbaseline.md",
"Remove-OVExternalRepository": "remove-ovexternalrepository.md",
"Remove-OVLicense": "remove-ovlicense.md",
"Remove-OVPendingUpdate": "remove-ovpendingupdate.md",
"Remove-OVRemoteSupportContact": "remove-ovremotesupportcontact.md",
"Remove-OVRemoteSupportPartner": "remove-ovremotesupportpartner.md",
"Remove-OVResourceFromLabel": "remove-ovresourcefromlabel.md",
"Remove-OVResourceFromScope": "remove-ovresourcefromscope.md",
"Remove-OVScmbCertificate": "remove-ovscmbcertificate.md",
"Remove-OVScope": "remove-ovscope.md",
"Remove-OVSmtpAlertEmailFilter": "remove-ovsmtpalertemailfilter.md",
"Remove-OVStandbyComposerNode": "remove-ovstandbycomposernode.md",
"Restart-OVAppliance": "restart-ovappliance.md",
"Restore-OVCustomBaseline": "restore-ovcustombaseline.md",
"Save-OVBackup": "save-ovbackup.md",
"Search-OVAssociations": "search-ovassociations.md",
"Search-OVIndex": "search-ovindex.md",
"Set-OVAddressPoolSubnet": "set-ovaddresspoolsubnet.md",
"Set-OVAlert": "set-ovalert.md",
"Set-OVApplianceAuditLogForwarding": "set-ovapplianceauditlogforwarding.md",
"Set-OVApplianceCurrentSecurityMode": "set-ovappliancecurrentsecuritymode.md",
"Set-OVApplianceDateTime": "set-ovappliancedatetime.md",
"Set-OVApplianceGlobalSetting": "set-ovapplianceglobalsetting.md",
"Set-OVApplianceNetworkConfig": "set-ovappliancenetworkconfig.md",
"Set-OVApplianceProxy": "set-ovapplianceproxy.md",
"Set-OVApplianceSecurityProtocol": "set-ovappliancesecurityprotocol.md",
"Set-OVApplianceSnmpV3EngineId": "set-ovappliancesnmpv3engineid.md",
"Set-OVApplianceStaticRoute": "set-ovappliancestaticroute.md",
"Set-OVApplianceTwoFactorAuthentication": "set-ovappliancetwofactorauthentication.md",
"Set-OVAutomaticBackupConfig": "set-ovautomaticbackupconfig.md",
"Set-OVComposerIlo": "set-ovcomposerilo.md",
"Set-OVComputeOpsManagement": "set-ovcomputeopsmanagement.md",
"Set-OVDataCenterRemoteSupport": "set-ovdatacenterremotesupport.md",
"Set-OVEulaStatus": "set-oveulastatus.md",
"Set-OVExternalRepository": "set-ovexternalrepository.md",
"Set-OVFirmwareBundleUpdateSchedule": "set-ovfirmwarebundleupdateschedule.md",
"Set-OVInitialPassword": "set-ovinitialpassword.md",
"Set-OVInterconnectNTPConfiguration": "set-ovinterconnectntpconfiguration.md",
"Set-OVRemoteSupport": "set-ovremotesupport.md",
"Set-OVRemoteSupportDataCollectionSchedule": "set-ovremotesupportdatacollectionschedule.md",
"Set-OVRemoteSupportDefaultSite": "set-ovremotesupportdefaultsite.md",
"Set-OVRemoteSupportPrimaryContact": "set-ovremotesupportprimarycontact.md",
"Set-OVRemoteSupportSecondaryContact": "set-ovremotesupportsecondarycontact.md",
"Set-OVRemoteSupportSetting": "set-ovremotesupportsetting.md",
"Set-OVRemoteSyslog": "set-ovremotesyslog.md",
"Set-OVReservedVlanRange": "set-ovreservedvlanrange.md",
"Set-OVRotateMPPasswordPolicy": "set-ovrotatemppasswordpolicy.md",
"Set-OVServerNTPConfiguration": "set-ovserverntpconfiguration.md",
"Set-OVSmtpAlertEmailFilter": "set-ovsmtpalertemailfilter.md",
"Set-OVSMTPConfig": "set-ovsmtpconfig.md",
"Set-OVSnmpReadCommunity": "set-ovsnmpreadcommunity.md",
"Show-OVApplianceSecurityModeCompatibilityReport": "show-ovappliancesecuritymodecompatibilityreport.md",
"Show-OVBaselineRepositorySize": "show-ovbaselinerepositorysize.md",
"Show-OVUserSession": "show-ovusersession.md",
"Start-OVRemoteSupportCollection": "start-ovremotesupportcollection.md",
"Stop-OVAppliance": "stop-ovappliance.md",
"Test-OVApplianceAuditLogForwarding": "test-ovapplianceauditlogforwarding.md",
"Test-OVEmailAlert": "test-ovemailalert.md",
"Test-OVRemoteSupportEvent": "test-ovremotesupportevent.md",
"Unregister-OVRemoteSupportPortalConnection": "unregister-ovremotesupportportalconnection.md",
"Update-OVApplianceTrustedAuthorityCrl": "update-ovappliancetrustedauthoritycrl.md",
"Update-OVExternalRepository": "update-ovexternalrepository.md",
"Update-OVRemoteSupportEntitlement": "update-ovremotesupportentitlement.md",
"Wait-OVTaskComplete": "wait-ovtaskcomplete.md",
"Wait-OVTaskStart": "wait-ovtaskstart.md"
},
"Cluster": {
"dir": "cluster",
"Add-OVClusterManager": "add-ovclustermanager.md",
"Add-OVClusterNode": "add-ovclusternode.md",
"Add-OVClusterNodeToCluster": "add-ovclusternodetocluster.md",
"Enter-OVClusterNodeMaintenanceMode": "enter-ovclusternodemaintenancemode.md",
"Exit-OVClusterNodeMaintenanceMode": "exit-ovclusternodemaintenancemode.md",
"Get-OVCluster": "get-ovcluster.md",
"Get-OVClusterManager": "get-ovclustermanager.md",
"Get-OVClusterNode": "get-ovclusternode.md",
"Get-OVClusterProfile": "get-ovclusterprofile.md",
"New-OVClusterProfile": "new-ovclusterprofile.md",
"New-OVClusterProfileMember": "new-ovclusterprofilemember.md",
"Remove-OVClusterManager": "remove-ovclustermanager.md",
"Remove-OVClusterProfile": "remove-ovclusterprofile.md",
"Set-OVClusterManager": "set-ovclustermanager.md",
"Show-OVHypervisorCluster": "show-ovhypervisorcluster.md",
"Update-OVClusterNode": "update-ovclusternode.md",
"Update-OVClusterProfile": "update-ovclusterprofile.md"
},
"Facilities": {
"dir": "facilities",
"Add-OVPowerDevice": "add-ovpowerdevice.md",
"Add-OVPowerDeviceConnection": "add-ovpowerdeviceconnection.md",
"Add-OVRackToDataCenter": "add-ovracktodatacenter.md",
"Add-OVResourceToLabel": "add-ovresourcetolabel.md",
"Add-OVResourceToRack": "add-ovresourcetorack.md",
"Get-OVDataCenter": "get-ovdatacenter.md",
"Get-OVPowerDevice": "get-ovpowerdevice.md",
"Get-OVPowerPotentialDeviceConnection": "get-ovpowerpotentialdeviceconnection.md",
"Get-OVRack": "get-ovrack.md",
"Get-OVRackMember": "get-ovrackmember.md",
"Get-OVUnmanagedDevice": "get-ovunmanageddevice.md",
"New-OVDataCenter": "new-ovdatacenter.md",
"New-OVPowerDevice": "new-ovpowerdevice.md",
"New-OVRack": "new-ovrack.md",
"New-OVUnmanagedDevice": "new-ovunmanageddevice.md",
"Remove-OVDataCenter": "remove-ovdatacenter.md",
"Remove-OVPowerDevice": "remove-ovpowerdevice.md",
"Remove-OVRack": "remove-ovrack.md",
"Remove-OVRackMember": "remove-ovrackmember.md",
"Remove-OVUnmanagedDevice": "remove-ovunmanageddevice.md",
"Set-OVDataCenter": "set-ovdatacenter.md",
"Set-OVRack": "set-ovrack.md",
"Set-OVRackMemberLocation": "set-ovrackmemberlocation.md"
},
"Library": {
"dir": "library",
"Connect-OVMgmt": "connect-ovmgmt.md",
"ConvertTo-OVPowerShellScript": "convertto-ovpowershellscript.md",
"Disable-OVCertificateRevocationChecking": "disable-ovcertificaterevocationchecking.md",
"Disable-OVDebug": "disable-ovdebug.md",
"Disable-OVMSDSC": "disable-ovmsdsc.md",
"Disconnect-OVMgmt": "disconnect-ovmgmt.md",
"Enable-OVCertificateRevocationChecking": "enable-ovcertificaterevocationchecking.md",
"Enable-OVDebug": "enable-ovdebug.md",
"Enable-OVMSDSC": "enable-ovmsdsc.md",
"Get-OVCommandTrace": "get-ovcommandtrace.md",
"Get-OVVersion": "get-ovversion.md",
"Get-OVXApiVersion": "get-ovxapiversion.md",
"Invoke-OVWebBrowser": "invoke-ovwebbrowser.md",
"New-OVIloDirectoryGroup": "new-ovilodirectorygroup.md",
"New-OVResource": "new-ovresource.md",
"New-OVSnmpConfiguration": "new-ovsnmpconfiguration.md",
"New-OVSnmpTrapDestination": "new-ovsnmptrapdestination.md",
"New-OVSnmpV3User": "new-ovsnmpv3user.md",
"Pop-OVAppliancePermission": "pop-ovappliancepermission.md",
"Push-OVAppliancePermission": "push-ovappliancepermission.md",
"Remove-OVResource": "remove-ovresource.md",
"Remove-OVSnmpV3User": "remove-ovsnmpv3user.md",
"Send-OVRequest": "send-ovrequest.md",
"Set-OVApplianceDefaultConnection": "set-ovappliancedefaultconnection.md",
"Set-OVCertificateRevocationInterval": "set-ovcertificaterevocationinterval.md",
"Set-OVResource": "set-ovresource.md",
"Start-OVLibraryTrace": "start-ovlibrarytrace.md",
"Stop-OVLibraryTrace": "stop-ovlibrarytrace.md",
"Update-OVUserScript": "update-ovuserscript.md",
"Wait-OVApplianceStart": "wait-ovappliancestart.md"
},
"Networking": {
"dir": "networking",
"Add-OVFabricManager": "add-ovfabricmanager.md",
"Disable-OVLogicalInterconnectPortMonitoring": "disable-ovlogicalinterconnectportmonitoring.md",
"Enable-OVLogicalInterconnectPortMonitoring": "enable-ovlogicalinterconnectportmonitoring.md",
"Get-OVFabricManager": "get-ovfabricmanager.md",
"Get-OVInterconnect": "get-ovinterconnect.md",
"Get-OVInterconnectType": "get-ovinterconnecttype.md",
"Get-OVLogicalInterconnect": "get-ovlogicalinterconnect.md",
"Get-OVLogicalInterconnectGroup": "get-ovlogicalinterconnectgroup.md",
"Get-OVLogicalInterconnectPortMonitoring": "get-ovlogicalinterconnectportmonitoring.md",
"Get-OVLogicalSwitch": "get-ovlogicalswitch.md",
"Get-OVLogicalSwitchGroup": "get-ovlogicalswitchgroup.md",
"Get-OVNetwork": "get-ovnetwork.md",
"Get-OVNetworkSet": "get-ovnetworkset.md",
"Get-OVReservedVlanRange": "get-ovreservedvlanrange.md",
"Get-OVSasInterconnectType": "get-ovsasinterconnecttype.md",
"Get-OVSasLogicalInterconnect": "get-ovsaslogicalinterconnect.md",
"Get-OVSwitch": "get-ovswitch.md",
"Get-OVSwitchType": "get-ovswitchtype.md",
"Get-OVUplinkSet": "get-ovuplinkset.md",
"Install-OVLogicalInterconnectFirmware": "install-ovlogicalinterconnectfirmware.md",
"Invoke-OVVcmMigration": "invoke-ovvcmmigration.md",
"New-OVLogicalInterconnectGroup": "new-ovlogicalinterconnectgroup.md",
"New-OVLogicalSwitch": "new-ovlogicalswitch.md",
"New-OVLogicalSwitchGroup": "new-ovlogicalswitchgroup.md",
"New-OVNetwork": "new-ovnetwork.md",
"New-OVNetworkSet": "new-ovnetworkset.md",
"New-OVQosConfig": "new-ovqosconfig.md",
"New-OVQosTrafficClass": "new-ovqostrafficclass.md",
"New-OVUplinkSet": "new-ovuplinkset.md",
"Remove-OVFabricManager": "remove-ovfabricmanager.md",
"Remove-OVLogicalInterconnectGroup": "remove-ovlogicalinterconnectgroup.md",
"Remove-OVLogicalSwitch": "remove-ovlogicalswitch.md",
"Remove-OVLogicalSwitchGroup": "remove-ovlogicalswitchgroup.md",
"Remove-OVNetwork": "remove-ovnetwork.md",
"Remove-OVNetworkSet": "remove-ovnetworkset.md",
"Reset-OVInterconnectNetOpPassword": "reset-ovinterconnectnetoppassword.md",
"Set-OVInterconnectName": "set-ovinterconnectname.md",
"Set-OVNetwork": "set-ovnetwork.md",
"Set-OVNetworkSet": "set-ovnetworkset.md",
"Set-OVUplinkSet": "set-ovuplinkset.md",
"Show-OVLogicalInterconnectMacTable": "show-ovlogicalinterconnectmactable.md",
"Show-OVPortStatistics": "show-ovportstatistics.md",
"Update-OVLogicalEnclosureFirmware": "update-ovlogicalenclosurefirmware.md",
"Update-OVLogicalInterconnect": "update-ovlogicalinterconnect.md",
"Update-OVLogicalSwitch": "update-ovlogicalswitch.md"
},
"Security": {
"dir": "security",
"Add-OVLdapServer": "add-ovldapserver.md",
"Disable-OVApplianceDataAtRestEncryption": "disable-ovappliancedataatrestencryption.md",
"Disable-OVLdapLocalLogin": "disable-ovldaplocallogin.md",
"Enable-OVApplianceDataAtRestEncryption": "enable-ovappliancedataatrestencryption.md",
"Enable-OVLdapLocalLogin": "enable-ovldaplocallogin.md",
"Get-OVApplianceDataAtRestEncryption": "get-ovappliancedataatrestencryption.md",
"Get-OVLdap": "get-ovldap.md",
"Get-OVLdapDirectory": "get-ovldapdirectory.md",
"Get-OVLdapGroup": "get-ovldapgroup.md",
"Get-OVRole": "get-ovrole.md",
"New-OVApplianceDataAtRestEncryptionKey": "new-ovappliancedataatrestencryptionkey.md",
"New-OVLdapDirectory": "new-ovldapdirectory.md",
"New-OVLdapGroup": "new-ovldapgroup.md",
"New-OVLdapServer": "new-ovldapserver.md",
"New-OVUser": "new-ovuser.md",
"Remove-OVLdapDirectory": "remove-ovldapdirectory.md",
"Remove-OVLdapGroup": "remove-ovldapgroup.md",
"Remove-OVLdapServer": "remove-ovldapserver.md",
"Remove-OVUser": "remove-ovuser.md",
"Save-OVApplianceDataAtRestEncryptionKey": "save-ovappliancedataatrestencryptionkey.md",
"Set-OVLdapDefaultDirectory": "set-ovldapdefaultdirectory.md",
"Set-OVLdapGroupRole": "set-ovldapgrouprole.md",
"Set-OVLoginMessage": "set-ovloginmessage.md",
"Set-OVUser": "set-ovuser.md",
"Set-OVUserPassword": "set-ovuserpassword.md",
"Set-OVUserRole": "set-ovuserrole.md",
"Show-OVActiveUser": "show-ovactiveuser.md",
"Show-OVLdapGroups": "show-ovldapgroups.md"
},
"Servers": {
"dir": "servers",
"Add-OVEnclosure": "add-ovenclosure.md",
"Add-OVRackManager": "add-ovrackmanager.md",
"Add-OVRemoteFrame": "add-ovremoteframe.md",
"Add-OVServer": "add-ovserver.md",
"Convert-OVServerProfile": "convert-ovserverprofile.md",
"Convert-OVServerProfileTemplate": "convert-ovserverprofiletemplate.md",
"ConvertTo-OVImageStreamerConfiguration": "convertto-ovimagestreamerconfiguration.md",
"ConvertTo-OVServerProfileTemplate": "convertto-ovserverprofiletemplate.md",
"Copy-OVServerProfile": "copy-ovserverprofile.md",
"Disable-OVDeviceUid": "disable-ovdeviceuid.md",
"Disable-OVMaintenanceMode": "disable-ovmaintenancemode.md",
"Enable-OVDeviceUid": "enable-ovdeviceuid.md",
"Enable-OVMaintenanceMode": "enable-ovmaintenancemode.md",
"Get-OVComposerNode": "get-ovcomposernode.md",
"Get-OVEnclosure": "get-ovenclosure.md",
"Get-OVEnclosureGroup": "get-ovenclosuregroup.md",
"Get-OVIloSso": "get-ovilosso.md",
"Get-OVImageStreamerAppliance": "get-ovimagestreamerappliance.md",
"Get-OVLogicalEnclosure": "get-ovlogicalenclosure.md",
"Get-OVMigratableServer": "get-ovmigratableserver.md",
"Get-OVOSDeploymentPlan": "get-ovosdeploymentplan.md",
"Get-OVOSDeploymentPlanAttribute": "get-ovosdeploymentplanattribute.md",
"Get-OVOSDeploymentServer": "get-ovosdeploymentserver.md",
"Get-OVRackManager": "get-ovrackmanager.md",
"Get-OVServer": "get-ovserver.md",
"Get-OVServerHardwareAvailableController": "get-ovserverhardwareavailablecontroller.md",
"Get-OVServerHardwareType": "get-ovserverhardwaretype.md",
"Get-OVServerOneTimeBoot": "get-ovserveronetimeboot.md",
"Get-OVServerProfile": "get-ovserverprofile.md",
"Get-OVServerProfileConnectionList": "get-ovserverprofileconnectionlist.md",
"Get-OVServerProfileMessage": "get-ovserverprofilemessage.md",
"Get-OVServerProfileTemplate": "get-ovserverprofiletemplate.md",
"Invoke-OVMigrateServer": "invoke-ovmigrateserver.md",
"Join-OVServerProfileToTemplate": "join-ovserverprofiletotemplate.md",
"New-OVEnclosureGroup": "new-ovenclosuregroup.md",
"New-OVIloLocalUserAccount": "new-ovilolocaluseraccount.md",
"New-OVLogicalEnclosure": "new-ovlogicalenclosure.md",
"New-OVOSDeploymentServer": "new-ovosdeploymentserver.md",
"New-OVServerProfile": "new-ovserverprofile.md",
"New-OVServerProfileAssign": "new-ovserverprofileassign.md",
"New-OVServerProfileAttachVolume": "new-ovserverprofileattachvolume.md",
"New-OVServerProfileConnection": "new-ovserverprofileconnection.md",
"New-OVServerProfileIloPolicy": "new-ovserverprofileilopolicy.md",
"New-OVServerProfileLogicalDisk": "new-ovserverprofilelogicaldisk.md",
"New-OVServerProfileLogicalDiskController": "new-ovserverprofilelogicaldiskcontroller.md",
"New-OVServerProfileTemplate": "new-ovserverprofiletemplate.md",
"Remove-OVEnclosure": "remove-ovenclosure.md",
"Remove-OVEnclosureGroup": "remove-ovenclosuregroup.md",
"Remove-OVLogicalEnclosure": "remove-ovlogicalenclosure.md",
"Remove-OVOSDeploymentServer": "remove-ovosdeploymentserver.md",
"Remove-OVRackManager": "remove-ovrackmanager.md",
"Remove-OVServer": "remove-ovserver.md",
"Remove-OVServerProfile": "remove-ovserverprofile.md",
"Remove-OVServerProfileTemplate": "remove-ovserverprofiletemplate.md",
"Reset-OVEnclosureDevice": "reset-ovenclosuredevice.md",
"Restart-OVServer": "restart-ovserver.md",
"Save-OVServerProfile": "save-ovserverprofile.md",
"Save-OVServerProfileTemplate": "save-ovserverprofiletemplate.md",
"Set-OVEnclosure": "set-ovenclosure.md",
"Set-OVEnclosureActiveFLM": "set-ovenclosureactiveflm.md",
"Set-OVEnclosureGroup": "set-ovenclosuregroup.md",
"Set-OVLogicalEnclosure": "set-ovlogicalenclosure.md",
"Set-OVServerHardwareType": "set-ovserverhardwaretype.md",
"Set-OVServerOneTimeBoot": "set-ovserveronetimeboot.md",
"Set-OVServerPower": "set-ovserverpower.md",
"Set-OVServerProfile": "set-ovserverprofile.md",
"Set-OVServerProfileTemplate": "set-ovserverprofiletemplate.md",
"Show-OVFirmwareReport": "show-ovfirmwarereport.md",
"Show-OVUtilization": "show-ovutilization.md",
"Start-OVEnclosureAppliance": "start-ovenclosureappliance.md",
"Start-OVServer": "start-ovserver.md",
"Stop-OVServer": "stop-ovserver.md",
"Update-OVEnclosure": "update-ovenclosure.md",
"Update-OVLogicalEnclosure": "update-ovlogicalenclosure.md",
"Update-OVRackManager": "update-ovrackmanager.md",
"Update-OVServer": "update-ovserver.md",
"Update-OVServerFirmware": "update-ovserverfirmware.md",
"Update-OVServerHardwareLicenseIntent": "update-ovserverhardwarelicenseintent.md",
"Update-OVServerProfile": "update-ovserverprofile.md"
},
"Storage": {
"dir": "storage",
"Add-OVSanManager": "add-ovsanmanager.md",
"Add-OVStoragePool": "add-ovstoragepool.md",
"Add-OVStorageSystem": "add-ovstoragesystem.md",
"Add-OVStorageVolume": "add-ovstoragevolume.md",
"ConvertTo-OVStorageVolume": "convertto-ovstoragevolume.md",
"Get-OVAvailableDriveType": "get-ovavailabledrivetype.md",
"Get-OVDriveEnclosure": "get-ovdriveenclosure.md",
"Get-OVDriveEnclosureInventory": "get-ovdriveenclosureinventory.md",
"Get-OVLogicalJBOD": "get-ovlogicaljbod.md",
"Get-OVManagedSan": "get-ovmanagedsan.md",
"Get-OVSanManager": "get-ovsanmanager.md",
"Get-OVSanZone": "get-ovsanzone.md",
"Get-OVStoragePool": "get-ovstoragepool.md",
"Get-OVStorageSystem": "get-ovstoragesystem.md",
"Get-OVStorageVolume": "get-ovstoragevolume.md",
"Get-OVStorageVolumeSet": "get-ovstoragevolumeset.md",
"Get-OVStorageVolumeSnapShot": "get-ovstoragevolumesnapshot.md",
"Get-OVStorageVolumeTemplate": "get-ovstoragevolumetemplate.md",
"Get-OVStorageVolumeTemplatePolicy": "get-ovstoragevolumetemplatepolicy.md",
"New-OVLogicalJBOD": "new-ovlogicaljbod.md",
"New-OVStorageVolume": "new-ovstoragevolume.md",
"New-OVStorageVolumeSnapshot": "new-ovstoragevolumesnapshot.md",
"New-OVStorageVolumeTemplate": "new-ovstoragevolumetemplate.md",
"Remove-OVLogicalJBOD": "remove-ovlogicaljbod.md",
"Remove-OVSanManager": "remove-ovsanmanager.md",
"Remove-OVStoragePool": "remove-ovstoragepool.md",
"Remove-OVStorageSystem": "remove-ovstoragesystem.md",
"Remove-OVStorageVolume": "remove-ovstoragevolume.md",
"Remove-OVStorageVolumeSnapshot": "remove-ovstoragevolumesnapshot.md",
"Remove-OVStorageVolumeTemplate": "remove-ovstoragevolumetemplate.md",
"Set-OVLogicalJBOD": "set-ovlogicaljbod.md",
"Set-OVManagedSan": "set-ovmanagedsan.md",
"Set-OVSanManager": "set-ovsanmanager.md",
"Set-OVStoragePool": "set-ovstoragepool.md",
"Set-OVStorageVolume": "set-ovstoragevolume.md",
"Set-OVStorageVolumeTemplate": "set-ovstoragevolumetemplate.md",
"Set-OVStorageVolumeTemplatePolicy": "set-ovstoragevolumetemplatepolicy.md",
"Show-OVSanEndpoint": "show-ovsanendpoint.md",
"Show-OVStorageSystemPerformancePolicy": "show-ovstoragesystemperformancepolicy.md",
"Update-OVSanManager": "update-ovsanmanager.md",
"Update-OVStoragePool": "update-ovstoragepool.md",
"Update-OVStorageSystem": "update-ovstoragesystem.md"
}
},
"v9.00": {
"dir": "v9.00",
"Appliance": {
"dir": "appliance",
"Add-OVApplianceTrustedCertificate": "add-ovappliancetrustedcertificate.md",
"Add-OVBaseline": "add-ovbaseline.md",
"Add-OVResourceToScope": "add-ovresourcetoscope.md",
"Add-OVSmtpAlertEmailFilter": "add-ovsmtpalertemailfilter.md",
"Clear-OVAlert": "clear-ovalert.md",
"Connect-OVComputeOpsManagement": "connect-ovcomputeopsmanagement.md",
"Disable-OVApplianceComplexPasswords": "disable-ovappliancecomplexpasswords.md",
"Disable-OVApplianceServiceConsoleAccess": "disable-ovapplianceserviceconsoleaccess.md",
"Disable-OVApplianceSshAccess": "disable-ovappliancesshaccess.md",
"Disable-OVApplianceStrictSecurityCipherSuite": "disable-ovappliancestrictsecurityciphersuite.md",
"Disable-OVApplianceTwoFactorAuthentication": "disable-ovappliancetwofactorauthentication.md",
"Disable-OVCertificateValidation": "disable-ovcertificatevalidation.md",
"Disable-OVComposerIlo": "disable-ovcomposerilo.md",
"Disable-OVComputeOpsManagement": "disable-ovcomputeopsmanagement.md",
"Disable-OVRemoteSupport": "disable-ovremotesupport.md",
"Disable-OVRemoteSyslog": "disable-ovremotesyslog.md",
"Enable-OVApplianceComplexPasswords": "enable-ovappliancecomplexpasswords.md",
"Enable-OVApplianceServiceConsoleAccess": "enable-ovapplianceserviceconsoleaccess.md",
"Enable-OVApplianceSshAccess": "enable-ovappliancesshaccess.md",
"Enable-OVApplianceStrictSecurityCipherSuite": "enable-ovappliancestrictsecurityciphersuite.md",
"Enable-OVCertificateValidation": "enable-ovcertificatevalidation.md",
"Enable-OVComposerHANode": "enable-ovcomposerhanode.md",
"Enable-OVComposerIlo": "enable-ovcomposerilo.md",
"Enable-OVComputeOpsmanagement": "enable-ovcomputeopsmanagement.md",
"Enable-OVRemoteSupport": "enable-ovremotesupport.md",
"Enable-OVRemoteSyslog": "enable-ovremotesyslog.md",
"Get-OVAddressPool": "get-ovaddresspool.md",
"Get-OVAddressPoolRange": "get-ovaddresspoolrange.md",
"Get-OVAddressPoolSubnet": "get-ovaddresspoolsubnet.md",
"Get-OVAlert": "get-ovalert.md",
"Get-OVApplianceAuditLogForwarding": "get-ovapplianceauditlogforwarding.md",
"Get-OVApplianceAvailableSecurityMode": "get-ovapplianceavailablesecuritymode.md",
"Get-OVApplianceCertificateStatus": "get-ovappliancecertificatestatus.md",
"Get-OVApplianceCurrentSecurityMode": "get-ovappliancecurrentsecuritymode.md",
"Get-OVApplianceDateTime": "get-ovappliancedatetime.md",
"Get-OVApplianceGlobalSetting": "get-ovapplianceglobalsetting.md",
"Get-OVApplianceIPAddress": "get-ovapplianceipaddress.md",
"Get-OVApplianceNetworkConfig": "get-ovappliancenetworkconfig.md",
"Get-OVApplianceProxy": "get-ovapplianceproxy.md",
"Get-OVApplianceSecurityProtocol": "get-ovappliancesecurityprotocol.md",
"Get-OVApplianceServiceConsoleAccess": "get-ovapplianceserviceconsoleaccess.md",
"Get-OVApplianceSnmpV3EngineId": "get-ovappliancesnmpv3engineid.md",
"Get-OVApplianceSshAccess": "get-ovappliancesshaccess.md",
"Get-OVApplianceStaticRoute": "get-ovappliancestaticroute.md",
"Get-OVApplianceStatus": "get-ovappliancestatus.md",
"Get-OVApplianceTrapDestination": "get-ovappliancetrapdestination.md",