github.com/vmware/govmomi@v0.51.0/simulator/esx/setting.go (about) 1 // © Broadcom. All Rights Reserved. 2 // The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. 3 // SPDX-License-Identifier: Apache-2.0 4 5 package esx 6 7 import "github.com/vmware/govmomi/vim25/types" 8 9 // HardwareVersion is the default VirtualMachine.Config.Version 10 var HardwareVersion = "vmx-13" 11 12 // AdvancedOptions is captured from ESX's HostSystem.configManager.advancedOption 13 // Capture method: 14 // 15 // govc object.collect -s -dump $(govc object.collect -s HostSystem:ha-host configManager.advancedOption) setting 16 var AdvancedOptions = []types.BaseOptionValue{ 17 // This list is currently pruned to include a single option for testing 18 &types.OptionValue{ 19 Key: "Config.HostAgent.log.level", 20 Value: "info", 21 }, 22 } 23 24 // Setting is captured from ESX's HostSystem.ServiceContent.setting 25 // Capture method: 26 // 27 // govc object.collect -s -dump OptionManager:HostAgentSettings setting 28 var Setting = []types.BaseOptionValue{}