govcでvcsimから情報取得する。

前提

vcsimをデフォルト起動した。

$ vcsim

コマンド実行結果

環境変数

$ govc env
GOVC_USERNAME=user
GOVC_PASSWORD=pass
GOVC_URL=127.0.0.1:8989
GOVC_INSECURE=1

About

接続先の情報

$ govc about
Name:         VMware vCenter Server (govmomi simulator)
Vendor:       VMware, Inc.
Version:      6.5.0
Build:        5973321
OS type:      darwin-amd64
API type:     VirtualCenter
API version:  6.5
Product ID:   vpx
UUID:         dbed6e0c-bd88-4ef6-b594-21283e1c677f

$

find

$ govc find
/
/DC0
/DC0/vm
/DC0/vm/DC0_H0_VM0
/DC0/vm/DC0_H0_VM1
/DC0/vm/DC0_C0_RP0_VM0
/DC0/vm/DC0_C0_RP0_VM1
/DC0/host
/DC0/host/DC0_H0
/DC0/host/DC0_H0/DC0_H0
/DC0/host/DC0_H0/Resources
/DC0/host/DC0_C0
/DC0/host/DC0_C0/DC0_C0_H0
/DC0/host/DC0_C0/DC0_C0_H1
/DC0/host/DC0_C0/DC0_C0_H2
/DC0/host/DC0_C0/Resources
/DC0/datastore
/DC0/datastore/LocalDS_0
/DC0/network
/DC0/network/VM Network
/DC0/network/DVS0
/DC0/network/DVS0-DVUplinks-9
/DC0/network/DC0_DVPG0
$

datacenter.info

$ govc datacenter.info
Name:                DC0
  Path:              /DC0
  Hosts:             4
  Clusters:          1
  Virtual Machines:  4
  Networks:          4
  Datastores:        1
$ govc datacenter.info --json
{
  "Datacenters": [
    {
      "Self": {
        "Type": "Datacenter",
        "Value": "datacenter-2"
      },
      "Value": null,
      "AvailableField": null,
      "Parent": {
        "Type": "Folder",
        "Value": "group-d1"
      },
      "CustomValue": null,
      "OverallStatus": "green",
      "ConfigStatus": "green",
      "ConfigIssue": null,
      "EffectiveRole": [
        -1
      ],
      "Permission": null,
      "Name": "DC0",
      "DisabledMethod": null,
      "RecentTask": null,
      "DeclaredAlarmState": null,
      "TriggeredAlarmState": null,
      "AlarmActionsEnabled": null,
      "Tag": null,
      "VmFolder": {
        "Type": "Folder",
        "Value": "folder-3"
      },
      "HostFolder": {
        "Type": "Folder",
        "Value": "folder-4"
      },
      "DatastoreFolder": {
        "Type": "Folder",
        "Value": "folder-5"
      },
      "NetworkFolder": {
        "Type": "Folder",
        "Value": "folder-6"
      },
      "Datastore": [
        {
          "Type": "Datastore",
          "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
        }
      ],
      "Network": [
        {
          "Type": "Network",
          "Value": "network-7"
        },
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-11"
        },
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-13"
        },
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-13"
        }
      ],
      "Configuration": {
        "DefaultHardwareVersionKey": ""
      }
    }
  ]
}

フォルダ

$ govc folder.info
Name:        Datacenters
  Path:      /
  Types:     Folder,Datacenter
  Children:  1
$ govc folder.info --json
{
  "Folders": [
    {
      "Self": {
        "Type": "Folder",
        "Value": "group-d1"
      },
      "Value": null,
      "AvailableField": null,
      "Parent": null,
      "CustomValue": null,
      "OverallStatus": "green",
      "ConfigStatus": "green",
      "ConfigIssue": null,
      "EffectiveRole": [
        -1
      ],
      "Permission": [
        {
          "Entity": {
            "Type": "Folder",
            "Value": "group-d1"
          },
          "Principal": "VSPHERE.LOCAL\\Administrator",
          "Group": false,
          "RoleId": -1,
          "Propagate": true
        },
        {
          "Entity": {
            "Type": "Folder",
            "Value": "group-d1"
          },
          "Principal": "VSPHERE.LOCAL\\Administrators",
          "Group": true,
          "RoleId": -1,
          "Propagate": true
        }
      ],
      "Name": "Datacenters",
      "DisabledMethod": null,
      "RecentTask": null,
      "DeclaredAlarmState": null,
      "TriggeredAlarmState": null,
      "AlarmActionsEnabled": null,
      "Tag": null,
      "ChildType": [
        "Folder",
        "Datacenter"
      ],
      "ChildEntity": [
        {
          "Type": "Datacenter",
          "Value": "datacenter-2"
        }
      ],
      "Namespace": null
    }
  ]
}

クラスタ関連

$ govc find / -type c
/DC0/host/DC0_C0
$ govc cluster.group.ls
$
$ govc cluster.group.ls --cluster=DC0_C0
$
$ govc cluster.rule.ls
$
$ govc cluster.rule.ls --cluster=DC0_C0
$
$ govc cluster.rule.info --cluster=DC0_C0
$
$ govc cluster.override.info --cluster=DC0_C0
$

クラスタ関連コマンドでは何も出てこない。 以下を参考に、object-collectを使うと表示できる。

#1134 govc missing info command on some objects

$ govc find / -type c |xargs -n1 govc object.collect
value                []types.BaseCustomFieldValue
availableField       []types.CustomFieldDef
parent               types.ManagedObjectReference         Folder:folder-4
customValue          []types.BaseCustomFieldValue
overallStatus        types.ManagedEntityStatus            green
configStatus         types.ManagedEntityStatus            green
configIssue          []types.BaseEvent
effectiveRole        []int32                              -1
permission           []types.Permission
name                 string                               DC0_C0
disabledMethod       []string
recentTask           []types.ManagedObjectReference
declaredAlarmState   []types.AlarmState
triggeredAlarmState  []types.AlarmState
tag                  []types.Tag
resourcePool         types.ManagedObjectReference         ResourcePool:resgroup-26
host                 []types.ManagedObjectReference       HostSystem:host-34,HostSystem:host-42,HostSystem:host-50
datastore            []types.ManagedObjectReference       Datastore:/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-963081533@folder-5
network              []types.ManagedObjectReference       Network:network-7,DistributedVirtualPortgroup:dvportgroup-11,DistributedVirtualPortgroup:dvportgroup-13
summary              types.ClusterComputeResourceSummary  ...
environmentBrowser   types.ManagedObjectReference         EnvironmentBrowser:envbrowser-25
configurationEx      types.ClusterConfigInfoEx            ...
configuration        types.ClusterConfigInfo              ...
recommendation       []types.ClusterRecommendation
drsRecommendation    []types.ClusterDrsRecommendation
migrationHistory     []types.ClusterDrsMigration
actionHistory        []types.ClusterActionHistory
drsFault             []types.ClusterDrsFaults
$ govc find / -type c |xargs -n1 govc object.collect --json
[
  {
    "Name": "value",
    "Op": "assign",
    "Val": {
      "CustomFieldValue": null
    }
  },
  {
    "Name": "availableField",
    "Op": "assign",
    "Val": {
      "CustomFieldDef": null
    }
  },
  {
    "Name": "parent",
    "Op": "assign",
    "Val": {
      "Type": "Folder",
      "Value": "folder-4"
    }
  },
  {
    "Name": "customValue",
    "Op": "assign",
    "Val": {
      "CustomFieldValue": null
    }
  },
  {
    "Name": "overallStatus",
    "Op": "assign",
    "Val": "green"
  },
  {
    "Name": "configStatus",
    "Op": "assign",
    "Val": "green"
  },
  {
    "Name": "configIssue",
    "Op": "assign",
    "Val": {
      "Event": null
    }
  },
  {
    "Name": "effectiveRole",
    "Op": "assign",
    "Val": {
      "Int": [
        -1
      ]
    }
  },
  {
    "Name": "permission",
    "Op": "assign",
    "Val": {
      "Permission": null
    }
  },
  {
    "Name": "name",
    "Op": "assign",
    "Val": "DC0_C0"
  },
  {
    "Name": "disabledMethod",
    "Op": "assign",
    "Val": {
      "String": null
    }
  },
  {
    "Name": "recentTask",
    "Op": "assign",
    "Val": {
      "ManagedObjectReference": null
    }
  },
  {
    "Name": "declaredAlarmState",
    "Op": "assign",
    "Val": {
      "AlarmState": null
    }
  },
  {
    "Name": "triggeredAlarmState",
    "Op": "assign",
    "Val": {
      "AlarmState": null
    }
  },
  {
    "Name": "tag",
    "Op": "assign",
    "Val": {
      "Tag": null
    }
  },
  {
    "Name": "resourcePool",
    "Op": "assign",
    "Val": {
      "Type": "ResourcePool",
      "Value": "resgroup-26"
    }
  },
  {
    "Name": "host",
    "Op": "assign",
    "Val": {
      "ManagedObjectReference": [
        {
          "Type": "HostSystem",
          "Value": "host-34"
        },
        {
          "Type": "HostSystem",
          "Value": "host-42"
        },
        {
          "Type": "HostSystem",
          "Value": "host-50"
        }
      ]
    }
  },
  {
    "Name": "datastore",
    "Op": "assign",
    "Val": {
      "ManagedObjectReference": [
        {
          "Type": "Datastore",
          "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-963081533@folder-5"
        }
      ]
    }
  },
  {
    "Name": "network",
    "Op": "assign",
    "Val": {
      "ManagedObjectReference": [
        {
          "Type": "Network",
          "Value": "network-7"
        },
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-11"
        },
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-13"
        }
      ]
    }
  },
  {
    "Name": "summary",
    "Op": "assign",
    "Val": {
      "TotalCpu": 6882,
      "TotalMemory": 12883292160,
      "NumCpuCores": 6,
      "NumCpuThreads": 6,
      "EffectiveCpu": 6882,
      "EffectiveMemory": 12883292160,
      "NumHosts": 3,
      "NumEffectiveHosts": 3,
      "OverallStatus": "green",
      "CurrentFailoverLevel": 0,
      "AdmissionControlInfo": null,
      "NumVmotions": 0,
      "TargetBalance": 0,
      "CurrentBalance": 0,
      "DrsScore": 0,
      "NumVmsPerDrsScoreBucket": null,
      "UsageSummary": {
        "TotalCpuCapacityMhz": 0,
        "TotalMemCapacityMB": 0,
        "CpuReservationMhz": 0,
        "MemReservationMB": 0,
        "PoweredOffCpuReservationMhz": 0,
        "PoweredOffMemReservationMB": 0,
        "CpuDemandMhz": 0,
        "MemDemandMB": 0,
        "StatsGenNumber": 0,
        "CpuEntitledMhz": 0,
        "MemEntitledMB": 0,
        "PoweredOffVmCount": 0,
        "TotalVmCount": 0
      },
      "CurrentEVCModeKey": "",
      "DasData": null
    }
  },
  {
    "Name": "environmentBrowser",
    "Op": "assign",
    "Val": {
      "Type": "EnvironmentBrowser",
      "Value": "envbrowser-25"
    }
  },
  {
    "Name": "configurationEx",
    "Op": "assign",
    "Val": {
      "VmSwapPlacement": "vmDirectory",
      "SpbmEnabled": null,
      "DefaultHardwareVersionKey": "",
      "DasConfig": {
        "Enabled": null,
        "VmMonitoring": "",
        "HostMonitoring": "",
        "VmComponentProtecting": "",
        "FailoverLevel": 0,
        "AdmissionControlPolicy": null,
        "AdmissionControlEnabled": null,
        "DefaultVmSettings": null,
        "Option": null,
        "HeartbeatDatastore": null,
        "HBDatastoreCandidatePolicy": ""
      },
      "DasVmConfig": null,
      "DrsConfig": {
        "Enabled": true,
        "EnableVmBehaviorOverrides": null,
        "DefaultVmBehavior": "",
        "VmotionRate": 0,
        "ScaleDescendantsShares": "",
        "Option": null
      },
      "DrsVmConfig": null,
      "Rule": null,
      "Orchestration": null,
      "VmOrchestration": null,
      "DpmConfigInfo": null,
      "DpmHostConfig": null,
      "VsanConfigInfo": null,
      "VsanHostConfig": null,
      "Group": null,
      "InfraUpdateHaConfig": null,
      "ProactiveDrsConfig": null,
      "CryptoConfig": null
    }
  },
  {
    "Name": "configuration",
    "Op": "assign",
    "Val": {
      "DasConfig": {
        "Enabled": null,
        "VmMonitoring": "",
        "HostMonitoring": "",
        "VmComponentProtecting": "",
        "FailoverLevel": 0,
        "AdmissionControlPolicy": null,
        "AdmissionControlEnabled": null,
        "DefaultVmSettings": null,
        "Option": null,
        "HeartbeatDatastore": null,
        "HBDatastoreCandidatePolicy": ""
      },
      "DasVmConfig": null,
      "DrsConfig": {
        "Enabled": null,
        "EnableVmBehaviorOverrides": null,
        "DefaultVmBehavior": "",
        "VmotionRate": 0,
        "ScaleDescendantsShares": "",
        "Option": null
      },
      "DrsVmConfig": null,
      "Rule": null
    }
  },
  {
    "Name": "recommendation",
    "Op": "assign",
    "Val": {
      "ClusterRecommendation": null
    }
  },
  {
    "Name": "drsRecommendation",
    "Op": "assign",
    "Val": {
      "ClusterDrsRecommendation": null
    }
  },
  {
    "Name": "migrationHistory",
    "Op": "assign",
    "Val": {
      "ClusterDrsMigration": null
    }
  },
  {
    "Name": "actionHistory",
    "Op": "assign",
    "Val": {
      "ClusterActionHistory": null
    }
  },
  {
    "Name": "drsFault",
    "Op": "assign",
    "Val": {
      "ClusterDrsFaults": null
    }
  }
]

ホスト

$ govc host.info --host=/DC0/host/DC0_C0/DC0_C0_H0
Name:              DC0_C0_H0
  Path:            /DC0/host/DC0_C0/DC0_C0_H0
  Manufacturer:    VMware, Inc. (govmomi simulator)
  Logical CPUs:    2 CPUs @ 2294MHz
  Processor type:  Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz
  CPU usage:       67 MHz (1.5%)
  Memory:          4095MB
  Memory usage:    1404 MB (34.3%)
  Boot time:       2020-05-02 09:54:49.249935 +0900 JST
  State:           connected
$ govc host.info --json --host=/DC0/host/DC0_C0/DC0_C0_H0
{
  "HostSystems": [
    {
      "Self": {
        "Type": "HostSystem",
        "Value": "host-34"
      },
      "Value": null,
      "AvailableField": null,
      "Parent": {
        "Type": "ClusterComputeResource",
        "Value": "clustercomputeresource-27"
      },
      "CustomValue": null,
      "OverallStatus": "green",
      "ConfigStatus": "green",
      "ConfigIssue": null,
      "EffectiveRole": [
        -1
      ],
      "Permission": null,
      "Name": "DC0_C0_H0",
      "DisabledMethod": null,
      "RecentTask": null,
      "DeclaredAlarmState": null,
      "TriggeredAlarmState": null,
      "AlarmActionsEnabled": null,
      "Tag": null,
      "Runtime": {
        "ConnectionState": "connected",
        "PowerState": "poweredOn",
        "StandbyMode": "",
        "InMaintenanceMode": false,
        "InQuarantineMode": null,
        "BootTime": "2020-05-02T09:54:49.249935+09:00",
        "HealthSystemRuntime": {
          "SystemHealthInfo": {
            "NumericSensorInfo": [
              {
                "Name": "VMware Rollup Health State",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "system",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "CPU socket #0 Level-1 Cache is 16384 B",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Processors",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "CPU socket #0 Level-2 Cache is 0 B",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Processors",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "CPU socket #1 Level-1 Cache is 16384 B",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Processors",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "CPU socket #1 Level-2 Cache is 0 B",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Processors",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "e1000 driver 8.0.3.1-NAPI",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              },
              {
                "Name": "e1000 device firmware N/A",
                "HealthState": {
                  "Label": "Green",
                  "Summary": "Sensor is operating under normal conditions",
                  "Key": "green"
                },
                "CurrentReading": 0,
                "UnitModifier": 0,
                "BaseUnits": "",
                "RateUnits": "",
                "SensorType": "Software Components",
                "Id": "",
                "TimeStamp": ""
              }
            ]
          },
          "HardwareStatusInfo": {
            "MemoryStatusInfo": null,
            "CpuStatusInfo": [
              {
                "Name": "CPU socket #0",
                "Status": {
                  "Label": "Green",
                  "Summary": "Physical element is functioning as expected",
                  "Key": "Green"
                }
              },
              {
                "Name": "CPU socket #1",
                "Status": {
                  "Label": "Green",
                  "Summary": "Physical element is functioning as expected",
                  "Key": "Green"
                }
              }
            ],
            "StorageStatusInfo": null
          }
        },
        "DasHostState": null,
        "TpmPcrValues": null,
        "VsanRuntimeInfo": {
          "MembershipList": null,
          "DiskIssues": null,
          "AccessGenNo": 0
        },
        "NetworkRuntimeInfo": {
          "NetStackInstanceRuntimeInfo": [
            {
              "NetStackInstanceKey": "defaultTcpipStack",
              "State": "active",
              "VmknicKeys": [
                "vmk0"
              ],
              "MaxNumberOfConnections": 11000,
              "CurrentIpV6Enabled": true
            }
          ],
          "NetworkResourceRuntime": null
        },
        "VFlashResourceRuntimeInfo": null,
        "HostMaxVirtualDiskCapacity": 68169720922112,
        "CryptoState": "",
        "CryptoKeyId": null
      },
      "Summary": {
        "Host": {
          "Type": "HostSystem",
          "Value": "host-34"
        },
        "Hardware": {
          "Vendor": "VMware, Inc. (govmomi simulator)",
          "Model": "VMware Virtual Platform",
          "Uuid": "c2ac5c27-2c72-5d75-9472-fd619e1af669",
          "OtherIdentifyingInfo": [
            {
              "IdentifierValue": " No Asset Tag",
              "IdentifierType": {
                "Label": "Asset Tag",
                "Summary": "Asset tag of the system",
                "Key": "AssetTag"
              }
            },
            {
              "IdentifierValue": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]",
              "IdentifierType": {
                "Label": "OEM specific string",
                "Summary": "OEM specific string",
                "Key": "OemSpecificString"
              }
            },
            {
              "IdentifierValue": "Welcome to the Virtual Machine",
              "IdentifierType": {
                "Label": "OEM specific string",
                "Summary": "OEM specific string",
                "Key": "OemSpecificString"
              }
            },
            {
              "IdentifierValue": "VMware-56 4d 2f 12 80 41 63 9b-50 18 05 a8 35 b7 2e af",
              "IdentifierType": {
                "Label": "Service tag",
                "Summary": "Service tag of the system",
                "Key": "ServiceTag"
              }
            }
          ],
          "MemorySize": 4294430720,
          "CpuModel": "Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz",
          "CpuMhz": 2294,
          "NumCpuPkgs": 2,
          "NumCpuCores": 2,
          "NumCpuThreads": 2,
          "NumNics": 1,
          "NumHBAs": 3
        },
        "Runtime": {
          "ConnectionState": "connected",
          "PowerState": "poweredOn",
          "StandbyMode": "",
          "InMaintenanceMode": false,
          "InQuarantineMode": null,
          "BootTime": "2020-05-02T09:54:49.249935+09:00",
          "HealthSystemRuntime": {
            "SystemHealthInfo": {
              "NumericSensorInfo": [
                {
                  "Name": "VMware Rollup Health State",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "system",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "CPU socket #0 Level-1 Cache is 16384 B",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Processors",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "CPU socket #0 Level-2 Cache is 0 B",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Processors",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "CPU socket #1 Level-1 Cache is 16384 B",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Processors",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "CPU socket #1 Level-2 Cache is 0 B",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Processors",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "Phoenix Technologies LTD System BIOS 6.00 2014-05-20 00:00:00.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware, Inc. VMware ESXi 6.0.0 build-3634798 2016-03-07 00:00:00.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware sata-ata-piix 2.12-10vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsu-lsi-mptsas-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-mlx4-core 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsu-lsi-mpt2sas-plugin 1.0.0-4vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-aacraid 1.1.5.1-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-via 0.3.3-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-qla4xxx 5.01.03.2-7vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware sata-sata-promise 2.12-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-megaraid-mbox 2.20.5.1-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware vsan 6.0.0-2.34.3563498 2016-02-17 17:18:19.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-e1000 8.0.3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-serverworks 0.4.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-mptspi 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-nx-nic 5.0.621-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware block-cciss 3.6.14-10vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-bnx2x 1.78.80.v60.12-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ipmi-ipmi-devintf 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-mptsas 4.23.01.00-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-megaraid2 2.00.4-9vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware nvme 1.0e.0.35-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware esx-xserver 6.0.0-2.34.3634798 2016-03-08 07:39:27.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware nmlx4-en 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsu-hp-hpsa-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-megaraid-sas 6.603.55.00-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-enic 2.1.2.38-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsi-msgpt3 06.255.12.00-8vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware sata-ahci 3.0-22vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-forcedeth 0.61-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-atiixp 0.4.6-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware elxnet 10.2.309.6v-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware esx-dvfilter-generic-fastpath 6.0.0-2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware uhci-usb-uhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-amd 0.3.10-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware sata-sata-sil24 1.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ohci-usb-ohci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-igb 5.0.5.1.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-pdc2027x 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ehci-ehci-hcd 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsu-lsi-lsi-mr3-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-ixgbe 3.7.13.7.14iov-20vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware vsanhealth 6.0.0-3000000.3.0.2.34.3544323 2016-02-12 06:45:30.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-cnic 1.78.76.v60.13-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware sata-sata-svw 2.3-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ipmi-ipmi-msghandler 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware emulex-esx-elxnetcli 10.2.309.6v-2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-aic79xx 3.1-5vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware qlnativefc 2.0.12.0-5vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsu-lsi-lsi-msgpt3-plugin 1.0.0-1vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ima-qla4xxx 2.02.18-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-mlx4-en 1.9.7.0-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-e1000e 3.2.2.1-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-tg3 3.131d.v60.4-2vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-hpsa 6.0.0.44-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-bnx2fc 1.78.78.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware cpu-microcode 6.0.0-2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-fnic 1.5.0.45-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware nmlx4-rdma 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-vmxnet3 1.1.3.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lpfc 10.2.309.8-2vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware esx-ui 1.0.0-3617585 2016-03-03 04:52:43.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-cmd64x 0.2.5-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsi-mr3 6.605.08.00-7vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-hpt3x2n 0.3.4-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware sata-sata-nv 3.5-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware misc-cnic-register 1.78.75.v60.7-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware lsu-lsi-megaraid-sas-plugin 1.0.0-2vmw.600.2.34.3634798 2016-03-08 07:39:28.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ata-pata-sil680 0.4.8-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware esx-tboot 6.0.0-2.34.3634798 2016-03-08 07:39:27.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware xhci-xhci 1.0-3vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-ips 7.12.05-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-adp94xx 1.0.8.12-6vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware rste 2.0.2.0088-4vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware ipmi-ipmi-si-drv 39.1-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMWARE mtip32xx-native 3.8.5-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-mpt2sas 19.00.00.00-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware misc-drivers 6.0.0-2.34.3634798 2016-03-08 07:38:41.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware nmlx4-core 3.0.0.0-1vmw.600.2.34.3634798 2016-03-08 07:38:46.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware sata-sata-sil 2.3-4vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware esx-base 6.0.0-2.34.3634798 2016-03-08 07:39:18.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware scsi-bnx2i 2.78.76.v60.8-1vmw.600.2.34.3634798 2016-03-08 07:38:41.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "VMware net-bnx2 2.2.4f.v60.10-1vmw.600.2.34.3634798 2016-03-08 07:38:45.000",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "e1000 driver 8.0.3.1-NAPI",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                },
                {
                  "Name": "e1000 device firmware N/A",
                  "HealthState": {
                    "Label": "Green",
                    "Summary": "Sensor is operating under normal conditions",
                    "Key": "green"
                  },
                  "CurrentReading": 0,
                  "UnitModifier": 0,
                  "BaseUnits": "",
                  "RateUnits": "",
                  "SensorType": "Software Components",
                  "Id": "",
                  "TimeStamp": ""
                }
              ]
            },
            "HardwareStatusInfo": {
              "MemoryStatusInfo": null,
              "CpuStatusInfo": [
                {
                  "Name": "CPU socket #0",
                  "Status": {
                    "Label": "Green",
                    "Summary": "Physical element is functioning as expected",
                    "Key": "Green"
                  }
                },
                {
                  "Name": "CPU socket #1",
                  "Status": {
                    "Label": "Green",
                    "Summary": "Physical element is functioning as expected",
                    "Key": "Green"
                  }
                }
              ],
              "StorageStatusInfo": null
            }
          },
          "DasHostState": null,
          "TpmPcrValues": null,
          "VsanRuntimeInfo": {
            "MembershipList": null,
            "DiskIssues": null,
            "AccessGenNo": 0
          },
          "NetworkRuntimeInfo": {
            "NetStackInstanceRuntimeInfo": [
              {
                "NetStackInstanceKey": "defaultTcpipStack",
                "State": "active",
                "VmknicKeys": [
                  "vmk0"
                ],
                "MaxNumberOfConnections": 11000,
                "CurrentIpV6Enabled": true
              }
            ],
            "NetworkResourceRuntime": null
          },
          "VFlashResourceRuntimeInfo": null,
          "HostMaxVirtualDiskCapacity": 68169720922112,
          "CryptoState": "",
          "CryptoKeyId": null
        },
        "Config": {
          "Name": "DC0_C0_H0",
          "Port": 8989,
          "SslThumbprint": "",
          "Product": {
            "Name": "VMware ESXi",
            "FullName": "VMware ESXi 6.5.0 build-5969303",
            "Vendor": "VMware, Inc.",
            "Version": "6.5.0",
            "Build": "5969303",
            "LocaleVersion": "INTL",
            "LocaleBuild": "000",
            "OsType": "vmnix-x86",
            "ProductLineId": "embeddedEsx",
            "ApiType": "HostAgent",
            "ApiVersion": "6.5",
            "InstanceUuid": "",
            "LicenseProductName": "VMware ESX Server",
            "LicenseProductVersion": "6.0"
          },
          "VmotionEnabled": false,
          "FaultToleranceEnabled": true,
          "FeatureVersion": null,
          "AgentVmDatastore": null,
          "AgentVmNetwork": null
        },
        "QuickStats": {
          "OverallCpuUsage": 67,
          "OverallMemoryUsage": 1404,
          "DistributedCpuFairness": 0,
          "DistributedMemoryFairness": 0,
          "AvailablePMemCapacity": 0,
          "Uptime": 77229
        },
        "OverallStatus": "gray",
        "RebootRequired": false,
        "CustomValue": null,
        "ManagementServerIp": "",
        "MaxEVCModeKey": "",
        "CurrentEVCModeKey": "",
        "Gateway": null,
        "TpmAttestation": null
      },
      "Hardware": {
        "SystemInfo": {
          "Vendor": "VMware, Inc.",
          "Model": "VMware Virtual Platform",
          "Uuid": "c2ac5c27-2c72-5d75-9472-fd619e1af669",
          "OtherIdentifyingInfo": [
            {
              "IdentifierValue": " No Asset Tag",
              "IdentifierType": {
                "Label": "Asset Tag",
                "Summary": "Asset tag of the system",
                "Key": "AssetTag"
              }
            },
            {
              "IdentifierValue": "[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]",
              "IdentifierType": {
                "Label": "OEM specific string",
                "Summary": "OEM specific string",
                "Key": "OemSpecificString"
              }
            },
            {
              "IdentifierValue": "Welcome to the Virtual Machine",
              "IdentifierType": {
                "Label": "OEM specific string",
                "Summary": "OEM specific string",
                "Key": "OemSpecificString"
              }
            },
            {
              "IdentifierValue": "VMware-56 4d 8d e8 1e 9f a1 3e-71 fa 13 a8 e1 a7 fd 70",
              "IdentifierType": {
                "Label": "Service tag",
                "Summary": "Service tag of the system",
                "Key": "ServiceTag"
              }
            }
          ],
          "SerialNumber": ""
        },
        "CpuPowerManagementInfo": {
          "CurrentPolicy": "Balanced",
          "HardwareSupport": ""
        },
        "CpuInfo": {
          "NumCpuPackages": 2,
          "NumCpuCores": 2,
          "NumCpuThreads": 2,
          "Hz": 3591345000
        },
        "CpuPkg": [
          {
            "Index": 0,
            "Vendor": "intel",
            "Hz": 3591345000,
            "BusHz": 115849838,
            "Description": "Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz",
            "ThreadId": [
              0
            ],
            "CpuFeature": [
              {
                "Level": 0,
                "Vendor": "",
                "Eax": "0000:0000:0000:0000:0000:0000:0000:1101",
                "Ebx": "0111:0101:0110:1110:0110:0101:0100:0111",
                "Ecx": "0110:1100:0110:0101:0111:0100:0110:1110",
                "Edx": "0100:1001:0110:0101:0110:1110:0110:1001"
              },
              {
                "Level": 1,
                "Vendor": "",
                "Eax": "0000:0000:0000:0010:0000:0110:1101:0111",
                "Ebx": "0000:0000:0000:0001:0000:1000:0000:0000",
                "Ecx": "1001:0111:1011:1010:0010:0010:0010:1011",
                "Edx": "0000:1111:1010:1011:1111:1011:1111:1111"
              },
              {
                "Level": -2147483648,
                "Vendor": "",
                "Eax": "1000:0000:0000:0000:0000:0000:0000:1000",
                "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ecx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Edx": "0000:0000:0000:0000:0000:0000:0000:0000"
              },
              {
                "Level": -2147483647,
                "Vendor": "",
                "Eax": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ecx": "0000:0000:0000:0000:0000:0000:0000:0001",
                "Edx": "0010:1000:0001:0000:0000:1000:0000:0000"
              },
              {
                "Level": -2147483640,
                "Vendor": "",
                "Eax": "0000:0000:0000:0000:0011:0000:0010:1010",
                "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ecx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Edx": "0000:0000:0000:0000:0000:0000:0000:0000"
              }
            ]
          },
          {
            "Index": 1,
            "Vendor": "intel",
            "Hz": 3591345000,
            "BusHz": 115849838,
            "Description": "Intel(R) Xeon(R) CPU E5-1620 0 @ 3.60GHz",
            "ThreadId": [
              1
            ],
            "CpuFeature": [
              {
                "Level": 0,
                "Vendor": "",
                "Eax": "0000:0000:0000:0000:0000:0000:0000:1101",
                "Ebx": "0111:0101:0110:1110:0110:0101:0100:0111",
                "Ecx": "0110:1100:0110:0101:0111:0100:0110:1110",
                "Edx": "0100:1001:0110:0101:0110:1110:0110:1001"
              },
              {
                "Level": 1,
                "Vendor": "",
                "Eax": "0000:0000:0000:0010:0000:0110:1101:0111",
                "Ebx": "0000:0010:0000:0001:0000:1000:0000:0000",
                "Ecx": "1001:0111:1011:1010:0010:0010:0010:1011",
                "Edx": "0000:1111:1010:1011:1111:1011:1111:1111"
              },
              {
                "Level": -2147483648,
                "Vendor": "",
                "Eax": "1000:0000:0000:0000:0000:0000:0000:1000",
                "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ecx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Edx": "0000:0000:0000:0000:0000:0000:0000:0000"
              },
              {
                "Level": -2147483647,
                "Vendor": "",
                "Eax": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ecx": "0000:0000:0000:0000:0000:0000:0000:0001",
                "Edx": "0010:1000:0001:0000:0000:1000:0000:0000"
              },
              {
                "Level": -2147483640,
                "Vendor": "",
                "Eax": "0000:0000:0000:0000:0011:0000:0010:1010",
                "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Ecx": "0000:0000:0000:0000:0000:0000:0000:0000",
                "Edx": "0000:0000:0000:0000:0000:0000:0000:0000"
              }
            ]
          }
        ],
        "MemorySize": 4294430720,
        "NumaInfo": {
          "Type": "NUMA",
          "NumNodes": 1,
          "NumaNode": [
            {
              "TypeId": 0,
              "CpuID": [
                1,
                0
              ],
              "MemoryRangeBegin": 4294967296,
              "MemoryRangeLength": 1073741824,
              "PciId": null
            }
          ]
        },
        "SmcPresent": false,
        "PciDevice": [
          {
            "Id": "0000:00:00.0",
            "ClassId": 1536,
            "Bus": 0,
            "Slot": 0,
            "Function": 0,
            "VendorId": -32634,
            "SubVendorId": 5549,
            "VendorName": "Intel Corporation",
            "DeviceId": 29072,
            "SubDeviceId": 6518,
            "ParentBridge": "",
            "DeviceName": "Virtual Machine Chipset"
          },
          {
            "Id": "0000:00:01.0",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 1,
            "Function": 0,
            "VendorId": -32634,
            "SubVendorId": 0,
            "VendorName": "Intel Corporation",
            "DeviceId": 29073,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "440BX/ZX/DX - 82443BX/ZX/DX AGP bridge"
          },
          {
            "Id": "0000:00:07.0",
            "ClassId": 1537,
            "Bus": 0,
            "Slot": 7,
            "Function": 0,
            "VendorId": -32634,
            "SubVendorId": 5549,
            "VendorName": "Intel Corporation",
            "DeviceId": 28944,
            "SubDeviceId": 6518,
            "ParentBridge": "",
            "DeviceName": "Virtual Machine Chipset"
          },
          {
            "Id": "0000:00:07.1",
            "ClassId": 257,
            "Bus": 0,
            "Slot": 7,
            "Function": 1,
            "VendorId": -32634,
            "SubVendorId": 5549,
            "VendorName": "Intel Corporation",
            "DeviceId": 28945,
            "SubDeviceId": 6518,
            "ParentBridge": "",
            "DeviceName": "PIIX4 for 430TX/440BX/MX IDE Controller"
          },
          {
            "Id": "0000:00:07.3",
            "ClassId": 1664,
            "Bus": 0,
            "Slot": 7,
            "Function": 3,
            "VendorId": -32634,
            "SubVendorId": 5549,
            "VendorName": "Intel Corporation",
            "DeviceId": 28947,
            "SubDeviceId": 6518,
            "ParentBridge": "",
            "DeviceName": "Virtual Machine Chipset"
          },
          {
            "Id": "0000:00:07.7",
            "ClassId": 2176,
            "Bus": 0,
            "Slot": 7,
            "Function": 7,
            "VendorId": 5549,
            "SubVendorId": 5549,
            "VendorName": "VMware",
            "DeviceId": 1856,
            "SubDeviceId": 1856,
            "ParentBridge": "",
            "DeviceName": "Virtual Machine Communication Interface"
          },
          {
            "Id": "0000:00:0f.0",
            "ClassId": 768,
            "Bus": 0,
            "Slot": 15,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 5549,
            "VendorName": "VMware",
            "DeviceId": 1029,
            "SubDeviceId": 1029,
            "ParentBridge": "",
            "DeviceName": "SVGA II Adapter"
          },
          {
            "Id": "0000:00:11.0",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 17,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1936,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI bridge"
          },
          {
            "Id": "0000:00:15.0",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:15.1",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 1,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:15.2",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 2,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:15.3",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 3,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:15.4",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 4,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:15.5",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 5,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:15.6",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 6,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:15.7",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 21,
            "Function": 7,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.0",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.1",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 1,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.2",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 2,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.3",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 3,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.4",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 4,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.5",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 5,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.6",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 6,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:16.7",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 22,
            "Function": 7,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.0",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.1",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 1,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.2",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 2,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.3",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 3,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.4",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 4,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.5",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 5,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.6",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 6,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:17.7",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 23,
            "Function": 7,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.0",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.1",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 1,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.2",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 2,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.3",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 3,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.4",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 4,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.5",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 5,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.6",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 6,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:00:18.7",
            "ClassId": 1540,
            "Bus": 0,
            "Slot": 24,
            "Function": 7,
            "VendorId": 5549,
            "SubVendorId": 0,
            "VendorName": "VMware",
            "DeviceId": 1952,
            "SubDeviceId": 0,
            "ParentBridge": "",
            "DeviceName": "PCI Express Root Port"
          },
          {
            "Id": "0000:03:00.0",
            "ClassId": 263,
            "Bus": 3,
            "Slot": 0,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 5549,
            "VendorName": "VMware",
            "DeviceId": 1984,
            "SubDeviceId": 1984,
            "ParentBridge": "0000:00:15.0",
            "DeviceName": "PVSCSI SCSI Controller"
          },
          {
            "Id": "0000:0b:00.0",
            "ClassId": 512,
            "Bus": 11,
            "Slot": 0,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 5549,
            "VendorName": "VMware Inc.",
            "DeviceId": 1968,
            "SubDeviceId": 1968,
            "ParentBridge": "0000:00:16.0",
            "DeviceName": "vmxnet3 Virtual Ethernet Controller"
          },
          {
            "Id": "0000:13:00.0",
            "ClassId": 512,
            "Bus": 19,
            "Slot": 0,
            "Function": 0,
            "VendorId": 5549,
            "SubVendorId": 5549,
            "VendorName": "VMware Inc.",
            "DeviceId": 1968,
            "SubDeviceId": 1968,
            "ParentBridge": "0000:00:17.0",
            "DeviceName": "vmxnet3 Virtual Ethernet Controller"
          }
        ],
        "CpuFeature": [
          {
            "Level": 0,
            "Vendor": "",
            "Eax": "0000:0000:0000:0000:0000:0000:0000:1101",
            "Ebx": "0111:0101:0110:1110:0110:0101:0100:0111",
            "Ecx": "0110:1100:0110:0101:0111:0100:0110:1110",
            "Edx": "0100:1001:0110:0101:0110:1110:0110:1001"
          },
          {
            "Level": 1,
            "Vendor": "",
            "Eax": "0000:0000:0000:0010:0000:0110:1101:0111",
            "Ebx": "0000:0000:0000:0001:0000:1000:0000:0000",
            "Ecx": "1001:0111:1011:1010:0010:0010:0010:1011",
            "Edx": "0000:1111:1010:1011:1111:1011:1111:1111"
          },
          {
            "Level": -2147483648,
            "Vendor": "",
            "Eax": "1000:0000:0000:0000:0000:0000:0000:1000",
            "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
            "Ecx": "0000:0000:0000:0000:0000:0000:0000:0000",
            "Edx": "0000:0000:0000:0000:0000:0000:0000:0000"
          },
          {
            "Level": -2147483647,
            "Vendor": "",
            "Eax": "0000:0000:0000:0000:0000:0000:0000:0000",
            "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
            "Ecx": "0000:0000:0000:0000:0000:0000:0000:0001",
            "Edx": "0010:1000:0001:0000:0000:1000:0000:0000"
          },
          {
            "Level": -2147483640,
            "Vendor": "",
            "Eax": "0000:0000:0000:0000:0011:0000:0010:1010",
            "Ebx": "0000:0000:0000:0000:0000:0000:0000:0000",
            "Ecx": "0000:0000:0000:0000:0000:0000:0000:0000",
            "Edx": "0000:0000:0000:0000:0000:0000:0000:0000"
          }
        ],
        "BiosInfo": {
          "BiosVersion": "6.00",
          "ReleaseDate": "2015-07-02T00:00:00Z",
          "Vendor": "",
          "MajorRelease": 0,
          "MinorRelease": 0,
          "FirmwareMajorRelease": 0,
          "FirmwareMinorRelease": 0
        },
        "ReliableMemoryInfo": {
          "MemorySize": 0
        },
        "PersistentMemoryInfo": null,
        "SgxInfo": null
      },
      "Capability": null,
      "LicensableResource": {
        "Resource": [
          {
            "Key": "numCpuPackages",
            "Value": {
              "Key": "numCpuPackages",
              "Value": "2"
            }
          }
        ]
      },
      "RemediationState": null,
      "PrecheckRemediationResult": null,
      "RemediationResult": null,
      "ComplianceCheckState": null,
      "ComplianceCheckResult": null,
      "ConfigManager": {
        "CpuScheduler": {
          "Type": "HostCpuSchedulerSystem",
          "Value": "cpuSchedulerSystem"
        },
        "DatastoreSystem": {
          "Type": "HostDatastoreSystem",
          "Value": "hostdatastoresystem-29"
        },
        "MemoryManager": {
          "Type": "HostMemorySystem",
          "Value": "memoryManagerSystem"
        },
        "StorageSystem": {
          "Type": "HostStorageSystem",
          "Value": "hoststoragesystem-33"
        },
        "NetworkSystem": {
          "Type": "HostNetworkSystem",
          "Value": "hostnetworksystem-30"
        },
        "VmotionSystem": {
          "Type": "HostVMotionSystem",
          "Value": "ha-vmotion-system"
        },
        "VirtualNicManager": {
          "Type": "HostVirtualNicManager",
          "Value": "ha-vnic-mgr"
        },
        "ServiceSystem": {
          "Type": "HostServiceSystem",
          "Value": "serviceSystem"
        },
        "FirewallSystem": {
          "Type": "HostFirewallSystem",
          "Value": "hostfirewallsystem-32"
        },
        "AdvancedOption": {
          "Type": "OptionManager",
          "Value": "optionmanager-31"
        },
        "DiagnosticSystem": {
          "Type": "HostDiagnosticSystem",
          "Value": "diagnosticsystem"
        },
        "AutoStartManager": {
          "Type": "HostAutoStartManager",
          "Value": "ha-autostart-mgr"
        },
        "SnmpSystem": {
          "Type": "HostSnmpSystem",
          "Value": "ha-snmp-agent"
        },
        "DateTimeSystem": {
          "Type": "HostDateTimeSystem",
          "Value": "dateTimeSystem"
        },
        "PatchManager": {
          "Type": "HostPatchManager",
          "Value": "ha-host-patch-manager"
        },
        "ImageConfigManager": {
          "Type": "HostImageConfigManager",
          "Value": "ha-image-config-manager"
        },
        "BootDeviceSystem": null,
        "FirmwareSystem": {
          "Type": "HostFirmwareSystem",
          "Value": "ha-firmwareSystem"
        },
        "HealthStatusSystem": {
          "Type": "HostHealthStatusSystem",
          "Value": "healthStatusSystem"
        },
        "PciPassthruSystem": {
          "Type": "HostPciPassthruSystem",
          "Value": "ha-pcipassthrusystem"
        },
        "LicenseManager": {
          "Type": "LicenseManager",
          "Value": "ha-license-manager"
        },
        "KernelModuleSystem": {
          "Type": "HostKernelModuleSystem",
          "Value": "kernelModuleSystem"
        },
        "AuthenticationManager": {
          "Type": "HostAuthenticationManager",
          "Value": "ha-auth-manager"
        },
        "PowerSystem": {
          "Type": "HostPowerSystem",
          "Value": "ha-power-system"
        },
        "CacheConfigurationManager": {
          "Type": "HostCacheConfigurationManager",
          "Value": "ha-cache-configuration-manager"
        },
        "EsxAgentHostManager": null,
        "IscsiManager": {
          "Type": "IscsiManager",
          "Value": "iscsiManager"
        },
        "VFlashManager": {
          "Type": "HostVFlashManager",
          "Value": "ha-vflash-manager"
        },
        "VsanSystem": {
          "Type": "HostVsanSystem",
          "Value": "vsanSystem"
        },
        "MessageBusProxy": {
          "Type": "MessageBusProxy",
          "Value": "messageBusProxy"
        },
        "UserDirectory": {
          "Type": "UserDirectory",
          "Value": "ha-user-directory"
        },
        "AccountManager": {
          "Type": "HostLocalAccountManager",
          "Value": "ha-localacctmgr"
        },
        "HostAccessManager": {
          "Type": "HostAccessManager",
          "Value": "ha-host-access-manager"
        },
        "GraphicsManager": {
          "Type": "HostGraphicsManager",
          "Value": "ha-graphics-manager"
        },
        "VsanInternalSystem": {
          "Type": "HostVsanInternalSystem",
          "Value": "ha-vsan-internal-system"
        },
        "CertificateManager": {
          "Type": "HostCertificateManager",
          "Value": "ha-certificate-manager"
        },
        "CryptoManager": null,
        "NvdimmSystem": null,
        "AssignableHardwareManager": null
      },
      "Config": {
        "Host": {
          "Type": "HostSystem",
          "Value": "ha-host"
        },
        "Product": {
          "Name": "VMware ESXi",
          "FullName": "VMware ESXi 6.5.0 build-5969303",
          "Vendor": "VMware, Inc.",
          "Version": "6.5.0",
          "Build": "5969303",
          "LocaleVersion": "INTL",
          "LocaleBuild": "000",
          "OsType": "vmnix-x86",
          "ProductLineId": "embeddedEsx",
          "ApiType": "HostAgent",
          "ApiVersion": "6.5",
          "InstanceUuid": "",
          "LicenseProductName": "VMware ESX Server",
          "LicenseProductVersion": "6.0"
        },
        "DeploymentInfo": {
          "BootedFromStatelessCache": false
        },
        "HyperThread": {
          "Available": false,
          "Active": false,
          "Config": true
        },
        "ConsoleReservation": null,
        "VirtualMachineReservation": null,
        "StorageDevice": {
          "HostBusAdapter": [
            {
              "Key": "key-vim.host.ParallelScsiHba-vmhba0",
              "Device": "vmhba0",
              "Bus": 3,
              "Status": "unknown",
              "Model": "PVSCSI SCSI Controller",
              "Driver": "pvscsi",
              "Pci": "0000:03:00.0",
              "StorageProtocol": ""
            },
            {
              "Key": "key-vim.host.BlockHba-vmhba1",
              "Device": "vmhba1",
              "Bus": 0,
              "Status": "unknown",
              "Model": "PIIX4 for 430TX/440BX/MX IDE Controller",
              "Driver": "vmkata",
              "Pci": "0000:00:07.1",
              "StorageProtocol": ""
            },
            {
              "Key": "key-vim.host.BlockHba-vmhba64",
              "Device": "vmhba64",
              "Bus": 0,
              "Status": "unknown",
              "Model": "PIIX4 for 430TX/440BX/MX IDE Controller",
              "Driver": "vmkata",
              "Pci": "0000:00:07.1",
              "StorageProtocol": ""
            }
          ],
          "ScsiLun": [
            {
              "DeviceName": "/vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0",
              "DeviceType": "cdrom",
              "Key": "key-vim.host.ScsiLun-0005000000766d686261313a303a30",
              "Uuid": "0005000000766d686261313a303a30",
              "Descriptor": [
                {
                  "Quality": "lowQuality",
                  "Id": "mpx.vmhba1:C0:T0:L0"
                },
                {
                  "Quality": "lowQuality",
                  "Id": "vml.0005000000766d686261313a303a30"
                },
                {
                  "Quality": "lowQuality",
                  "Id": "0005000000766d686261313a303a30"
                }
              ],
              "CanonicalName": "mpx.vmhba1:C0:T0:L0",
              "DisplayName": "Local NECVMWar CD-ROM (mpx.vmhba1:C0:T0:L0)",
              "LunType": "cdrom",
              "Vendor": "NECVMWar",
              "Model": "VMware IDE CDR00",
              "Revision": "1.00",
              "ScsiLevel": 5,
              "SerialNumber": "unavailable",
              "DurableName": null,
              "AlternateName": [
                {
                  "Namespace": "GENERIC_VPD",
                  "NamespaceId": 5,
                  "Data": "LTc5"
                },
                {
                  "Namespace": "GENERIC_VPD",
                  "NamespaceId": 5,
                  "Data": "MA=="
                }
              ],
              "StandardInquiry": "MA==",
              "QueueDepth": 0,
              "OperationalState": [
                "ok"
              ],
              "Capabilities": {
                "UpdateDisplayNameSupported": false
              },
              "VStorageSupport": "vStorageUnsupported",
              "ProtocolEndpoint": false,
              "PerenniallyReserved": null,
              "ClusteredVmdkSupported": null
            },
            {
              "DeviceName": "/vmfs/devices/disks/mpx.vmhba0:C0:T0:L0",
              "DeviceType": "disk",
              "Key": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30",
              "Uuid": "0000000000766d686261303a303a30",
              "Descriptor": [
                {
                  "Quality": "lowQuality",
                  "Id": "mpx.vmhba0:C0:T0:L0"
                },
                {
                  "Quality": "lowQuality",
                  "Id": "vml.0000000000766d686261303a303a30"
                },
                {
                  "Quality": "lowQuality",
                  "Id": "0000000000766d686261303a303a30"
                }
              ],
              "CanonicalName": "mpx.vmhba0:C0:T0:L0",
              "DisplayName": "Local VMware, Disk (mpx.vmhba0:C0:T0:L0)",
              "LunType": "disk",
              "Vendor": "VMware, ",
              "Model": "VMware Virtual S",
              "Revision": "1.0 ",
              "ScsiLevel": 2,
              "SerialNumber": "unavailable",
              "DurableName": null,
              "AlternateName": [
                {
                  "Namespace": "GENERIC_VPD",
                  "NamespaceId": 5,
                  "Data": "LTc5"
                },
                {
                  "Namespace": "GENERIC_VPD",
                  "NamespaceId": 5,
                  "Data": "MA=="
                }
              ],
              "StandardInquiry": "MA==",
              "QueueDepth": 1024,
              "OperationalState": [
                "ok"
              ],
              "Capabilities": {
                "UpdateDisplayNameSupported": false
              },
              "VStorageSupport": "vStorageUnsupported",
              "ProtocolEndpoint": false,
              "PerenniallyReserved": null,
              "ClusteredVmdkSupported": null,
              "Capacity": {
                "BlockSize": 512,
                "Block": 67108864
              },
              "DevicePath": "/vmfs/devices/disks/mpx.vmhba0:C0:T0:L0",
              "Ssd": true,
              "LocalDisk": true,
              "PhysicalLocation": null,
              "EmulatedDIXDIFEnabled": false,
              "VsanDiskInfo": null,
              "ScsiDiskType": "native512"
            }
          ],
          "ScsiTopology": {
            "Adapter": [
              {
                "Key": "key-vim.host.ScsiTopology.Interface-vmhba0",
                "Adapter": "key-vim.host.ParallelScsiHba-vmhba0",
                "Target": [
                  {
                    "Key": "key-vim.host.ScsiTopology.Target-vmhba0:0:0",
                    "Target": 0,
                    "Lun": [
                      {
                        "Key": "key-vim.host.ScsiTopology.Lun-0000000000766d686261303a303a30",
                        "Lun": 0,
                        "ScsiLun": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30"
                      }
                    ],
                    "Transport": {}
                  }
                ]
              },
              {
                "Key": "key-vim.host.ScsiTopology.Interface-vmhba1",
                "Adapter": "key-vim.host.BlockHba-vmhba1",
                "Target": [
                  {
                    "Key": "key-vim.host.ScsiTopology.Target-vmhba1:0:0",
                    "Target": 0,
                    "Lun": [
                      {
                        "Key": "key-vim.host.ScsiTopology.Lun-0005000000766d686261313a303a30",
                        "Lun": 0,
                        "ScsiLun": "key-vim.host.ScsiLun-0005000000766d686261313a303a30"
                      }
                    ],
                    "Transport": {}
                  }
                ]
              },
              {
                "Key": "key-vim.host.ScsiTopology.Interface-vmhba64",
                "Adapter": "key-vim.host.BlockHba-vmhba64",
                "Target": null
              }
            ]
          },
          "NvmeTopology": null,
          "MultipathInfo": {
            "Lun": [
              {
                "Key": "key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30",
                "Id": "0005000000766d686261313a303a30",
                "Lun": "key-vim.host.ScsiLun-0005000000766d686261313a303a30",
                "Path": [
                  {
                    "Key": "key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L0",
                    "Name": "vmhba1:C0:T0:L0",
                    "PathState": "active",
                    "State": "active",
                    "IsWorkingPath": true,
                    "Adapter": "key-vim.host.BlockHba-vmhba1",
                    "Lun": "key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30",
                    "Transport": {}
                  }
                ],
                "Policy": {
                  "Policy": "VMW_PSP_FIXED",
                  "Prefer": "vmhba1:C0:T0:L0"
                },
                "StorageArrayTypePolicy": {
                  "Policy": "VMW_SATP_LOCAL"
                }
              },
              {
                "Key": "key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30",
                "Id": "0000000000766d686261303a303a30",
                "Lun": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30",
                "Path": [
                  {
                    "Key": "key-vim.host.MultipathInfo.Path-vmhba0:C0:T0:L0",
                    "Name": "vmhba0:C0:T0:L0",
                    "PathState": "active",
                    "State": "active",
                    "IsWorkingPath": true,
                    "Adapter": "key-vim.host.ParallelScsiHba-vmhba0",
                    "Lun": "key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30",
                    "Transport": {}
                  }
                ],
                "Policy": {
                  "Policy": "VMW_PSP_FIXED",
                  "Prefer": "vmhba0:C0:T0:L0"
                },
                "StorageArrayTypePolicy": {
                  "Policy": "VMW_SATP_LOCAL"
                }
              }
            ]
          },
          "PlugStoreTopology": {
            "Adapter": [
              {
                "Key": "key-vim.host.PlugStoreTopology.Adapter-vmhba0",
                "Adapter": "key-vim.host.ParallelScsiHba-vmhba0",
                "Path": [
                  "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0"
                ]
              },
              {
                "Key": "key-vim.host.PlugStoreTopology.Adapter-vmhba1",
                "Adapter": "key-vim.host.BlockHba-vmhba1",
                "Path": [
                  "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0"
                ]
              },
              {
                "Key": "key-vim.host.PlugStoreTopology.Adapter-vmhba64",
                "Adapter": "key-vim.host.BlockHba-vmhba64",
                "Path": null
              }
            ],
            "Path": [
              {
                "Key": "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0",
                "Name": "vmhba0:C0:T0:L0",
                "ChannelNumber": 0,
                "TargetNumber": 0,
                "LunNumber": 0,
                "Adapter": "key-vim.host.PlugStoreTopology.Adapter-vmhba0",
                "Target": "key-vim.host.PlugStoreTopology.Target-pscsi.0:0",
                "Device": "key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30"
              },
              {
                "Key": "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0",
                "Name": "vmhba1:C0:T0:L0",
                "ChannelNumber": 0,
                "TargetNumber": 0,
                "LunNumber": 0,
                "Adapter": "key-vim.host.PlugStoreTopology.Adapter-vmhba1",
                "Target": "key-vim.host.PlugStoreTopology.Target-ide.0:0",
                "Device": "key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30"
              }
            ],
            "Target": [
              {
                "Key": "key-vim.host.PlugStoreTopology.Target-pscsi.0:0",
                "Transport": {}
              },
              {
                "Key": "key-vim.host.PlugStoreTopology.Target-ide.0:0",
                "Transport": {}
              }
            ],
            "Device": [
              {
                "Key": "key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30",
                "Lun": "key-vim.host.ScsiLun-0005000000766d686261313a303a30",
                "Path": [
                  "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0"
                ]
              },
              {
                "Key": "key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30",
                "Lun": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30",
                "Path": [
                  "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0"
                ]
              }
            ],
            "Plugin": [
              {
                "Key": "key-vim.host.PlugStoreTopology.Plugin-NMP",
                "Name": "NMP",
                "Device": [
                  "key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30",
                  "key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30"
                ],
                "ClaimedPath": [
                  "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0",
                  "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0"
                ]
              }
            ]
          },
          "SoftwareInternetScsiEnabled": false
        },
        "MultipathState": null,
        "FileSystemVolume": null,
        "SystemFile": null,
        "Network": {
          "Vswitch": [
            {
              "Name": "vSwitch0",
              "Key": "key-vim.host.VirtualSwitch-vSwitch0",
              "NumPorts": 1536,
              "NumPortsAvailable": 1530,
              "Mtu": 1500,
              "Portgroup": [
                "key-vim.host.PortGroup-VM Network",
                "key-vim.host.PortGroup-Management Network"
              ],
              "Pnic": [
                "key-vim.host.PhysicalNic-vmnic0"
              ],
              "Spec": {
                "NumPorts": 128,
                "Bridge": {
                  "NicDevice": [
                    "vmnic0"
                  ],
                  "Beacon": {
                    "Interval": 1
                  },
                  "LinkDiscoveryProtocolConfig": {
                    "Protocol": "cdp",
                    "Operation": "listen"
                  }
                },
                "Policy": {
                  "Security": {
                    "AllowPromiscuous": false,
                    "MacChanges": true,
                    "ForgedTransmits": true
                  },
                  "NicTeaming": {
                    "Policy": "loadbalance_srcid",
                    "ReversePolicy": true,
                    "NotifySwitches": true,
                    "RollingOrder": false,
                    "FailureCriteria": {
                      "CheckSpeed": "minimum",
                      "Speed": 10,
                      "CheckDuplex": false,
                      "FullDuplex": false,
                      "CheckErrorPercent": false,
                      "Percentage": 0,
                      "CheckBeacon": false
                    },
                    "NicOrder": {
                      "ActiveNic": [
                        "vmnic0"
                      ],
                      "StandbyNic": null
                    }
                  },
                  "OffloadPolicy": {
                    "CsumOffload": true,
                    "TcpSegmentation": true,
                    "ZeroCopyXmit": true
                  },
                  "ShapingPolicy": {
                    "Enabled": false,
                    "AverageBandwidth": 0,
                    "PeakBandwidth": 0,
                    "BurstSize": 0
                  }
                },
                "Mtu": 0
              }
            }
          ],
          "ProxySwitch": null,
          "Portgroup": [
            {
              "Key": "key-vim.host.PortGroup-VM Network",
              "Port": null,
              "Vswitch": "key-vim.host.VirtualSwitch-vSwitch0",
              "ComputedPolicy": {
                "Security": {
                  "AllowPromiscuous": false,
                  "MacChanges": true,
                  "ForgedTransmits": true
                },
                "NicTeaming": {
                  "Policy": "loadbalance_srcid",
                  "ReversePolicy": true,
                  "NotifySwitches": true,
                  "RollingOrder": false,
                  "FailureCriteria": {
                    "CheckSpeed": "minimum",
                    "Speed": 10,
                    "CheckDuplex": false,
                    "FullDuplex": false,
                    "CheckErrorPercent": false,
                    "Percentage": 0,
                    "CheckBeacon": false
                  },
                  "NicOrder": {
                    "ActiveNic": [
                      "vmnic0"
                    ],
                    "StandbyNic": null
                  }
                },
                "OffloadPolicy": {
                  "CsumOffload": true,
                  "TcpSegmentation": true,
                  "ZeroCopyXmit": true
                },
                "ShapingPolicy": {
                  "Enabled": false,
                  "AverageBandwidth": 0,
                  "PeakBandwidth": 0,
                  "BurstSize": 0
                }
              },
              "Spec": {
                "Name": "VM Network",
                "VlanId": 0,
                "VswitchName": "vSwitch0",
                "Policy": {
                  "Security": {
                    "AllowPromiscuous": null,
                    "MacChanges": null,
                    "ForgedTransmits": null
                  },
                  "NicTeaming": {
                    "Policy": "",
                    "ReversePolicy": null,
                    "NotifySwitches": null,
                    "RollingOrder": null,
                    "FailureCriteria": {
                      "CheckSpeed": "",
                      "Speed": 0,
                      "CheckDuplex": null,
                      "FullDuplex": null,
                      "CheckErrorPercent": null,
                      "Percentage": 0,
                      "CheckBeacon": null
                    },
                    "NicOrder": null
                  },
                  "OffloadPolicy": {
                    "CsumOffload": null,
                    "TcpSegmentation": null,
                    "ZeroCopyXmit": null
                  },
                  "ShapingPolicy": {
                    "Enabled": null,
                    "AverageBandwidth": 0,
                    "PeakBandwidth": 0,
                    "BurstSize": 0
                  }
                }
              }
            },
            {
              "Key": "key-vim.host.PortGroup-Management Network",
              "Port": [
                {
                  "Key": "key-vim.host.PortGroup.Port-33554436",
                  "Mac": [
                    "00:0c:29:81:d8:a0"
                  ],
                  "Type": "host"
                }
              ],
              "Vswitch": "key-vim.host.VirtualSwitch-vSwitch0",
              "ComputedPolicy": {
                "Security": {
                  "AllowPromiscuous": false,
                  "MacChanges": true,
                  "ForgedTransmits": true
                },
                "NicTeaming": {
                  "Policy": "loadbalance_srcid",
                  "ReversePolicy": true,
                  "NotifySwitches": true,
                  "RollingOrder": false,
                  "FailureCriteria": {
                    "CheckSpeed": "minimum",
                    "Speed": 10,
                    "CheckDuplex": false,
                    "FullDuplex": false,
                    "CheckErrorPercent": false,
                    "Percentage": 0,
                    "CheckBeacon": false
                  },
                  "NicOrder": {
                    "ActiveNic": [
                      "vmnic0"
                    ],
                    "StandbyNic": null
                  }
                },
                "OffloadPolicy": {
                  "CsumOffload": true,
                  "TcpSegmentation": true,
                  "ZeroCopyXmit": true
                },
                "ShapingPolicy": {
                  "Enabled": false,
                  "AverageBandwidth": 0,
                  "PeakBandwidth": 0,
                  "BurstSize": 0
                }
              },
              "Spec": {
                "Name": "Management Network",
                "VlanId": 0,
                "VswitchName": "vSwitch0",
                "Policy": {
                  "Security": {
                    "AllowPromiscuous": null,
                    "MacChanges": null,
                    "ForgedTransmits": null
                  },
                  "NicTeaming": {
                    "Policy": "loadbalance_srcid",
                    "ReversePolicy": null,
                    "NotifySwitches": true,
                    "RollingOrder": false,
                    "FailureCriteria": {
                      "CheckSpeed": "",
                      "Speed": 0,
                      "CheckDuplex": null,
                      "FullDuplex": null,
                      "CheckErrorPercent": null,
                      "Percentage": 0,
                      "CheckBeacon": false
                    },
                    "NicOrder": {
                      "ActiveNic": [
                        "vmnic0"
                      ],
                      "StandbyNic": null
                    }
                  },
                  "OffloadPolicy": {
                    "CsumOffload": null,
                    "TcpSegmentation": null,
                    "ZeroCopyXmit": null
                  },
                  "ShapingPolicy": {
                    "Enabled": null,
                    "AverageBandwidth": 0,
                    "PeakBandwidth": 0,
                    "BurstSize": 0
                  }
                }
              }
            }
          ],
          "Pnic": [
            {
              "Key": "key-vim.host.PhysicalNic-vmnic0",
              "Device": "vmnic0",
              "Pci": "0000:0b:00.0",
              "Driver": "nvmxnet3",
              "LinkSpeed": {
                "SpeedMb": 10000,
                "Duplex": true
              },
              "ValidLinkSpecification": [
                {
                  "SpeedMb": 10000,
                  "Duplex": true
                }
              ],
              "Spec": {
                "Ip": {
                  "Dhcp": false,
                  "IpAddress": "",
                  "SubnetMask": "",
                  "IpV6Config": null
                },
                "LinkSpeed": {
                  "SpeedMb": 10000,
                  "Duplex": true
                },
                "EnableEnhancedNetworkingStack": null,
                "EnsInterruptEnabled": null
              },
              "WakeOnLanSupported": false,
              "Mac": "00:0c:29:81:d8:a0",
              "FcoeConfiguration": {
                "PriorityClass": 3,
                "SourceMac": "00:0c:29:81:d8:a0",
                "VlanRange": [
                  {
                    "VlanLow": 0,
                    "VlanHigh": 0
                  }
                ],
                "Capabilities": {
                  "PriorityClass": false,
                  "SourceMacAddress": false,
                  "VlanRange": true
                },
                "FcoeActive": false
              },
              "VmDirectPathGen2Supported": false,
              "VmDirectPathGen2SupportedMode": "",
              "ResourcePoolSchedulerAllowed": true,
              "ResourcePoolSchedulerDisallowedReason": null,
              "AutoNegotiateSupported": false,
              "EnhancedNetworkingStackSupported": null,
              "EnsInterruptSupported": null,
              "RdmaDevice": ""
            },
            {
              "Key": "key-vim.host.PhysicalNic-vmnic1",
              "Device": "vmnic1",
              "Pci": "0000:13:00.0",
              "Driver": "nvmxnet3",
              "LinkSpeed": {
                "SpeedMb": 10000,
                "Duplex": true
              },
              "ValidLinkSpecification": [
                {
                  "SpeedMb": 10000,
                  "Duplex": true
                }
              ],
              "Spec": {
                "Ip": {
                  "Dhcp": false,
                  "IpAddress": "",
                  "SubnetMask": "",
                  "IpV6Config": null
                },
                "LinkSpeed": {
                  "SpeedMb": 10000,
                  "Duplex": true
                },
                "EnableEnhancedNetworkingStack": null,
                "EnsInterruptEnabled": null
              },
              "WakeOnLanSupported": false,
              "Mac": "00:0c:29:81:d8:aa",
              "FcoeConfiguration": {
                "PriorityClass": 3,
                "SourceMac": "00:0c:29:81:d8:aa",
                "VlanRange": [
                  {
                    "VlanLow": 0,
                    "VlanHigh": 0
                  }
                ],
                "Capabilities": {
                  "PriorityClass": false,
                  "SourceMacAddress": false,
                  "VlanRange": true
                },
                "FcoeActive": false
              },
              "VmDirectPathGen2Supported": false,
              "VmDirectPathGen2SupportedMode": "",
              "ResourcePoolSchedulerAllowed": true,
              "ResourcePoolSchedulerDisallowedReason": null,
              "AutoNegotiateSupported": false,
              "EnhancedNetworkingStackSupported": null,
              "EnsInterruptSupported": null,
              "RdmaDevice": ""
            }
          ],
          "RdmaDevice": null,
          "Vnic": [
            {
              "Device": "vmk0",
              "Key": "key-vim.host.VirtualNic-vmk0",
              "Portgroup": "Management Network",
              "Spec": {
                "Ip": {
                  "Dhcp": true,
                  "IpAddress": "127.0.0.1",
                  "SubnetMask": "255.0.0.0",
                  "IpV6Config": null
                },
                "Mac": "00:0c:29:81:d8:a0",
                "DistributedVirtualPort": null,
                "Portgroup": "Management Network",
                "Mtu": 1500,
                "TsoEnabled": true,
                "NetStackInstanceKey": "defaultTcpipStack",
                "OpaqueNetwork": null,
                "ExternalId": "",
                "PinnedPnic": "",
                "IpRouteSpec": null,
                "SystemOwned": null
              },
              "Port": "key-vim.host.PortGroup.Port-33554436"
            }
          ],
          "ConsoleVnic": null,
          "DnsConfig": {
            "Dhcp": true,
            "VirtualNicDevice": "vmk0",
            "Ipv6VirtualNicDevice": "",
            "HostName": "localhost",
            "DomainName": "localdomain",
            "Address": [
              "8.8.8.8"
            ],
            "SearchDomain": [
              "localdomain"
            ]
          },
          "IpRouteConfig": {
            "DefaultGateway": "127.0.0.1",
            "GatewayDevice": "",
            "IpV6DefaultGateway": "",
            "IpV6GatewayDevice": ""
          },
          "ConsoleIpRouteConfig": null,
          "RouteTableInfo": {
            "IpRoute": [
              {
                "Network": "0.0.0.0",
                "PrefixLength": 0,
                "Gateway": "127.0.0.1",
                "DeviceName": "vmk0"
              },
              {
                "Network": "127.0.0.0",
                "PrefixLength": 8,
                "Gateway": "0.0.0.0",
                "DeviceName": "vmk0"
              }
            ],
            "Ipv6Route": null
          },
          "Dhcp": null,
          "Nat": null,
          "IpV6Enabled": false,
          "AtBootIpV6Enabled": false,
          "NetStackInstance": [
            {
              "Key": "vSphereProvisioning",
              "Name": "",
              "DnsConfig": {
                "Dhcp": false,
                "VirtualNicDevice": "",
                "Ipv6VirtualNicDevice": "",
                "HostName": "",
                "DomainName": "",
                "Address": null,
                "SearchDomain": null
              },
              "IpRouteConfig": {
                "DefaultGateway": "",
                "GatewayDevice": "",
                "IpV6DefaultGateway": "",
                "IpV6GatewayDevice": ""
              },
              "RequestedMaxNumberOfConnections": 11000,
              "CongestionControlAlgorithm": "newreno",
              "IpV6Enabled": true,
              "RouteTableConfig": null
            },
            {
              "Key": "vmotion",
              "Name": "",
              "DnsConfig": {
                "Dhcp": false,
                "VirtualNicDevice": "",
                "Ipv6VirtualNicDevice": "",
                "HostName": "",
                "DomainName": "",
                "Address": null,
                "SearchDomain": null
              },
              "IpRouteConfig": {
                "DefaultGateway": "",
                "GatewayDevice": "",
                "IpV6DefaultGateway": "",
                "IpV6GatewayDevice": ""
              },
              "RequestedMaxNumberOfConnections": 11000,
              "CongestionControlAlgorithm": "newreno",
              "IpV6Enabled": true,
              "RouteTableConfig": null
            },
            {
              "Key": "defaultTcpipStack",
              "Name": "defaultTcpipStack",
              "DnsConfig": {
                "Dhcp": true,
                "VirtualNicDevice": "vmk0",
                "Ipv6VirtualNicDevice": "",
                "HostName": "localhost",
                "DomainName": "localdomain",
                "Address": [
                  "8.8.8.8"
                ],
                "SearchDomain": [
                  "localdomain"
                ]
              },
              "IpRouteConfig": {
                "DefaultGateway": "127.0.0.1",
                "GatewayDevice": "",
                "IpV6DefaultGateway": "",
                "IpV6GatewayDevice": ""
              },
              "RequestedMaxNumberOfConnections": 11000,
              "CongestionControlAlgorithm": "newreno",
              "IpV6Enabled": true,
              "RouteTableConfig": {
                "IpRoute": [
                  {
                    "ChangeOperation": "ignore",
                    "Route": {
                      "Network": "0.0.0.0",
                      "PrefixLength": 0,
                      "Gateway": "127.0.0.1",
                      "DeviceName": "vmk0"
                    }
                  },
                  {
                    "ChangeOperation": "ignore",
                    "Route": {
                      "Network": "127.0.0.0",
                      "PrefixLength": 8,
                      "Gateway": "0.0.0.0",
                      "DeviceName": "vmk0"
                    }
                  }
                ],
                "Ipv6Route": null
              }
            }
          ],
          "OpaqueSwitch": null,
          "OpaqueNetwork": null,
          "NsxTransportNodeId": ""
        },
        "Vmotion": {
          "NetConfig": {
            "CandidateVnic": [
              {
                "Device": "vmk0",
                "Key": "VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0",
                "Portgroup": "Management Network",
                "Spec": {
                  "Ip": {
                    "Dhcp": true,
                    "IpAddress": "127.0.0.1",
                    "SubnetMask": "255.0.0.0",
                    "IpV6Config": null
                  },
                  "Mac": "00:0c:29:81:d8:a0",
                  "DistributedVirtualPort": null,
                  "Portgroup": "Management Network",
                  "Mtu": 1500,
                  "TsoEnabled": true,
                  "NetStackInstanceKey": "defaultTcpipStack",
                  "OpaqueNetwork": null,
                  "ExternalId": "",
                  "PinnedPnic": "",
                  "IpRouteSpec": null,
                  "SystemOwned": null
                },
                "Port": ""
              }
            ],
            "SelectedVnic": ""
          },
          "IpConfig": null
        },
        "VirtualNicManagerInfo": {
          "NetConfig": [
            {
              "NicType": "faultToleranceLogging",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk0",
                  "Key": "faultToleranceLogging.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": null
            },
            {
              "NicType": "management",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk1",
                  "Key": "management.key-vim.host.VirtualNic-vmk1",
                  "Portgroup": "",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:00",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                },
                {
                  "Device": "vmk0",
                  "Key": "management.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": [
                "management.key-vim.host.VirtualNic-vmk0"
              ]
            },
            {
              "NicType": "vSphereProvisioning",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk0",
                  "Key": "vSphereProvisioning.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": null
            },
            {
              "NicType": "vSphereReplication",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk0",
                  "Key": "vSphereReplication.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": null
            },
            {
              "NicType": "vSphereReplicationNFC",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk0",
                  "Key": "vSphereReplicationNFC.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": null
            },
            {
              "NicType": "vmotion",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk0",
                  "Key": "vmotion.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": null
            },
            {
              "NicType": "vsan",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk0",
                  "Key": "vsan.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": null
            },
            {
              "NicType": "vsanWitness",
              "MultiSelectAllowed": true,
              "CandidateVnic": [
                {
                  "Device": "vmk0",
                  "Key": "vsanWitness.key-vim.host.VirtualNic-vmk0",
                  "Portgroup": "Management Network",
                  "Spec": {
                    "Ip": {
                      "Dhcp": true,
                      "IpAddress": "127.0.0.1",
                      "SubnetMask": "255.0.0.0",
                      "IpV6Config": null
                    },
                    "Mac": "00:0c:29:81:d8:a0",
                    "DistributedVirtualPort": null,
                    "Portgroup": "Management Network",
                    "Mtu": 1500,
                    "TsoEnabled": true,
                    "NetStackInstanceKey": "defaultTcpipStack",
                    "OpaqueNetwork": null,
                    "ExternalId": "",
                    "PinnedPnic": "",
                    "IpRouteSpec": null,
                    "SystemOwned": null
                  },
                  "Port": ""
                }
              ],
              "SelectedVnic": null
            }
          ]
        },
        "Capabilities": {
          "CanSetPhysicalNicLinkSpeed": true,
          "SupportsNicTeaming": true,
          "NicTeamingPolicy": [
            "loadbalance_ip",
            "loadbalance_srcmac",
            "loadbalance_srcid",
            "failover_explicit"
          ],
          "SupportsVlan": true,
          "UsesServiceConsoleNic": false,
          "SupportsNetworkHints": true,
          "MaxPortGroupsPerVswitch": 0,
          "VswitchConfigSupported": true,
          "VnicConfigSupported": true,
          "IpRouteConfigSupported": true,
          "DnsConfigSupported": true,
          "DhcpOnVnicSupported": true,
          "IpV6Supported": true
        },
        "DatastoreCapabilities": {
          "NfsMountCreationRequired": true,
          "NfsMountCreationSupported": true,
          "LocalDatastoreSupported": false,
          "VmfsExtentExpansionSupported": true
        },
        "OffloadCapabilities": {
          "CsumOffload": true,
          "TcpSegmentation": true,
          "ZeroCopyXmit": true
        },
        "Service": {
          "Service": [
            {
              "Key": "DCUI",
              "Label": "Direct Console UI",
              "Required": false,
              "Uninstallable": false,
              "Running": true,
              "Ruleset": null,
              "Policy": "on",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "TSM",
              "Label": "ESXi Shell",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": null,
              "Policy": "off",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "TSM-SSH",
              "Label": "SSH",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": null,
              "Policy": "off",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "lbtd",
              "Label": "Load-Based Teaming Daemon",
              "Required": false,
              "Uninstallable": false,
              "Running": true,
              "Ruleset": null,
              "Policy": "on",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "lwsmd",
              "Label": "Active Directory Service",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": null,
              "Policy": "off",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "ntpd",
              "Label": "NTP Daemon",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": [
                "ntpClient"
              ],
              "Policy": "off",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "pcscd",
              "Label": "PC/SC Smart Card Daemon",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": null,
              "Policy": "off",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "sfcbd-watchdog",
              "Label": "CIM Server",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": [
                "CIMHttpServer",
                "CIMHttpsServer"
              ],
              "Policy": "on",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "snmpd",
              "Label": "SNMP Server",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": [
                "snmp"
              ],
              "Policy": "on",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "vmsyslogd",
              "Label": "Syslog Server",
              "Required": true,
              "Uninstallable": false,
              "Running": true,
              "Ruleset": null,
              "Policy": "on",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "vpxa",
              "Label": "VMware vCenter Agent",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": [
                "vpxHeartbeats"
              ],
              "Policy": "on",
              "SourcePackage": {
                "SourcePackageName": "esx-base",
                "Description": "This VIB contains all of the base functionality of vSphere ESXi."
              }
            },
            {
              "Key": "xorg",
              "Label": "X.Org Server",
              "Required": false,
              "Uninstallable": false,
              "Running": false,
              "Ruleset": null,
              "Policy": "on",
              "SourcePackage": {
                "SourcePackageName": "esx-xserver",
                "Description": "This VIB contains X Server used for virtual machine 3D hardware acceleration."
              }
            }
          ]
        },
        "Firewall": {
          "DefaultPolicy": {
            "IncomingBlocked": true,
            "OutgoingBlocked": true
          },
          "Ruleset": [
            {
              "Key": "CIMHttpServer",
              "Label": "CIM Server",
              "Required": false,
              "Rule": [
                {
                  "Port": 5988,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "sfcbd-watchdog",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "CIMHttpsServer",
              "Label": "CIM Secure Server",
              "Required": false,
              "Rule": [
                {
                  "Port": 5989,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "sfcbd-watchdog",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "CIMSLP",
              "Label": "CIM SLP",
              "Required": false,
              "Rule": [
                {
                  "Port": 427,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 427,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 427,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 427,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "DHCPv6",
              "Label": "DHCPv6",
              "Required": false,
              "Rule": [
                {
                  "Port": 547,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 546,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 547,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 546,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "DVFilter",
              "Label": "DVFilter",
              "Required": false,
              "Rule": [
                {
                  "Port": 2222,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "DVSSync",
              "Label": "DVSSync",
              "Required": false,
              "Rule": [
                {
                  "Port": 8302,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 8301,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 8301,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 8302,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "HBR",
              "Label": "HBR",
              "Required": false,
              "Rule": [
                {
                  "Port": 31031,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 44046,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "NFC",
              "Label": "NFC",
              "Required": false,
              "Rule": [
                {
                  "Port": 902,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 902,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "WOL",
              "Label": "WOL",
              "Required": false,
              "Rule": [
                {
                  "Port": 9,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "activeDirectoryAll",
              "Label": "Active Directory All",
              "Required": false,
              "Rule": [
                {
                  "Port": 88,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 88,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 123,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 137,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 139,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 389,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 389,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 445,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 464,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 464,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 3268,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 7476,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 2020,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "cmmds",
              "Label": "Virtual SAN Clustering Service",
              "Required": false,
              "Rule": [
                {
                  "Port": 12345,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 23451,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 12345,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 23451,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 12321,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 12321,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "dhcp",
              "Label": "DHCP Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 68,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 68,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "src",
                  "Protocol": "udp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "dns",
              "Label": "DNS Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 53,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 53,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 53,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "esxupdate",
              "Label": "esxupdate",
              "Required": false,
              "Rule": [
                {
                  "Port": 443,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "faultTolerance",
              "Label": "Fault Tolerance",
              "Required": false,
              "Rule": [
                {
                  "Port": 80,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 8300,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 8300,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "ftpClient",
              "Label": "FTP Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 21,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 20,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "src",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "gdbserver",
              "Label": "gdbserver",
              "Required": false,
              "Rule": [
                {
                  "Port": 1000,
                  "EndPort": 9999,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 50000,
                  "EndPort": 50999,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "httpClient",
              "Label": "httpClient",
              "Required": false,
              "Rule": [
                {
                  "Port": 80,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 443,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "iSCSI",
              "Label": "Software iSCSI Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 3260,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "iofiltervp",
              "Label": "iofiltervp",
              "Required": false,
              "Rule": [
                {
                  "Port": 9080,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "ipfam",
              "Label": "NSX Distributed Logical Router Service",
              "Required": false,
              "Rule": [
                {
                  "Port": 6999,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 6999,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "nfs41Client",
              "Label": "nfs41Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 0,
                  "EndPort": 65535,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "nfsClient",
              "Label": "NFS Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 0,
                  "EndPort": 65535,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "ntpClient",
              "Label": "NTP Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 123,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "ntpd",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "pvrdma",
              "Label": "pvrdma",
              "Required": false,
              "Rule": [
                {
                  "Port": 28250,
                  "EndPort": 28761,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 28250,
                  "EndPort": 28761,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "rabbitmqproxy",
              "Label": "rabbitmqproxy",
              "Required": false,
              "Rule": [
                {
                  "Port": 5671,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "rdt",
              "Label": "Virtual SAN Transport",
              "Required": false,
              "Rule": [
                {
                  "Port": 2233,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 2233,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "remoteSerialPort",
              "Label": "VM serial port connected over network",
              "Required": false,
              "Rule": [
                {
                  "Port": 0,
                  "EndPort": 65535,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 23,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 1024,
                  "EndPort": 65535,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "snmp",
              "Label": "SNMP Server",
              "Required": false,
              "Rule": [
                {
                  "Port": 161,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "snmpd",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "sshClient",
              "Label": "SSH Client",
              "Required": false,
              "Rule": [
                {
                  "Port": 22,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "sshServer",
              "Label": "SSH Server",
              "Required": true,
              "Rule": [
                {
                  "Port": 22,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "syslog",
              "Label": "syslog",
              "Required": false,
              "Rule": [
                {
                  "Port": 514,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 514,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 1514,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "updateManager",
              "Label": "vCenter Update Manager",
              "Required": false,
              "Rule": [
                {
                  "Port": 80,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 9000,
                  "EndPort": 9100,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vMotion",
              "Label": "vMotion",
              "Required": false,
              "Rule": [
                {
                  "Port": 8000,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 8000,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vSPC",
              "Label": "VM serial port connected to vSPC",
              "Required": false,
              "Rule": [
                {
                  "Port": 0,
                  "EndPort": 65535,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vSphereClient",
              "Label": "vSphere Web Client",
              "Required": true,
              "Rule": [
                {
                  "Port": 902,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 443,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vpxHeartbeats",
              "Label": "VMware vCenter Agent",
              "Required": false,
              "Rule": [
                {
                  "Port": 902,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "vpxa",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vsanEncryption",
              "Label": "vsanEncryption",
              "Required": false,
              "Rule": [
                {
                  "Port": 0,
                  "EndPort": 65535,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vsanhealth-multicasttest",
              "Label": "vsanhealth-multicasttest",
              "Required": false,
              "Rule": [
                {
                  "Port": 5001,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                },
                {
                  "Port": 5001,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "udp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vsanvp",
              "Label": "vsanvp",
              "Required": false,
              "Rule": [
                {
                  "Port": 8080,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                },
                {
                  "Port": 8080,
                  "EndPort": 0,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "vvold",
              "Label": "vvold",
              "Required": false,
              "Rule": [
                {
                  "Port": 0,
                  "EndPort": 65535,
                  "Direction": "outbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": false,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            },
            {
              "Key": "webAccess",
              "Label": "vSphere Web Access",
              "Required": false,
              "Rule": [
                {
                  "Port": 80,
                  "EndPort": 0,
                  "Direction": "inbound",
                  "PortType": "dst",
                  "Protocol": "tcp"
                }
              ],
              "Service": "",
              "Enabled": true,
              "AllowedHosts": {
                "IpAddress": null,
                "IpNetwork": null,
                "AllIp": true
              }
            }
          ]
        },
        "AutoStart": {
          "Defaults": {
            "Enabled": null,
            "StartDelay": 120,
            "StopDelay": 120,
            "WaitForHeartbeat": false,
            "StopAction": "PowerOff"
          },
          "PowerInfo": null
        },
        "ActiveDiagnosticPartition": {
          "StorageType": "directAttached",
          "DiagnosticType": "singleHost",
          "Slots": -15,
          "Id": {
            "DiskName": "mpx.vmhba0:C0:T0:L0",
            "Partition": 9
          }
        },
        "Option": null,
        "OptionDef": null,
        "DatastorePrincipal": "",
        "LocalSwapDatastore": null,
        "SystemSwapConfiguration": null,
        "SystemResources": null,
        "DateTimeInfo": null,
        "Flags": {
          "BackgroundSnapshotsEnabled": null
        },
        "AdminDisabled": null,
        "LockdownMode": "lockdownDisabled",
        "Ipmi": null,
        "SslThumbprintInfo": null,
        "SslThumbprintData": null,
        "Certificate": "MTA=",
        "PciPassthruInfo": null,
        "AuthenticationManagerInfo": {
          "AuthConfig": [
            {
              "Enabled": true
            },
            {
              "Enabled": false,
              "JoinedDomain": "",
              "TrustedDomain": null,
              "DomainMembershipStatus": "",
              "SmartCardAuthenticationEnabled": false
            }
          ]
        },
        "FeatureVersion": null,
        "PowerSystemCapability": {
          "AvailablePolicy": [
            {
              "Key": 1,
              "Name": "PowerPolicy.static.name",
              "ShortName": "static",
              "Description": "PowerPolicy.static.description"
            },
            {
              "Key": 2,
              "Name": "PowerPolicy.dynamic.name",
              "ShortName": "dynamic",
              "Description": "PowerPolicy.dynamic.description"
            },
            {
              "Key": 3,
              "Name": "PowerPolicy.low.name",
              "ShortName": "low",
              "Description": "PowerPolicy.low.description"
            },
            {
              "Key": 4,
              "Name": "PowerPolicy.custom.name",
              "ShortName": "custom",
              "Description": "PowerPolicy.custom.description"
            }
          ]
        },
        "PowerSystemInfo": {
          "CurrentPolicy": {
            "Key": 2,
            "Name": "PowerPolicy.dynamic.name",
            "ShortName": "dynamic",
            "Description": "PowerPolicy.dynamic.description"
          }
        },
        "CacheConfigurationInfo": [
          {
            "Key": {
              "Type": "Datastore",
              "Value": "5980f676-21a5db76-9eef-000c2981d8a0"
            },
            "SwapSize": 0
          }
        ],
        "WakeOnLanCapable": false,
        "FeatureCapability": null,
        "MaskedFeatureCapability": null,
        "VFlashConfigInfo": null,
        "VsanHostConfig": {
          "Enabled": false,
          "HostSystem": {
            "Type": "HostSystem",
            "Value": "ha-host"
          },
          "ClusterInfo": {
            "Uuid": "",
            "NodeUuid": ""
          },
          "StorageInfo": {
            "AutoClaimStorage": false,
            "DiskMapping": null,
            "DiskMapInfo": null,
            "ChecksumEnabled": null
          },
          "NetworkInfo": {
            "Port": null
          },
          "FaultDomainInfo": {
            "Name": ""
          }
        },
        "DomainList": null,
        "ScriptCheckSum": null,
        "HostConfigCheckSum": null,
        "DescriptionTreeCheckSum": null,
        "GraphicsInfo": null,
        "SharedPassthruGpuTypes": null,
        "GraphicsConfig": {
          "HostDefaultGraphicsType": "shared",
          "SharedPassthruAssignmentPolicy": "performance",
          "DeviceType": null
        },
        "SharedGpuCapabilities": null,
        "IoFilterInfo": [
          {
            "Id": "VMW_spm_1.0.0",
            "Name": "spm",
            "Vendor": "VMW",
            "Version": "1.0.230",
            "Type": "datastoreIoControl",
            "Summary": "VMware Storage I/O Control",
            "ReleaseDate": "2016-07-21",
            "Available": true
          },
          {
            "Id": "VMW_vmwarevmcrypt_1.0.0",
            "Name": "vmwarevmcrypt",
            "Vendor": "VMW",
            "Version": "1.0.0",
            "Type": "encryption",
            "Summary": "VMcrypt IO Filter",
            "ReleaseDate": "2016-07-21",
            "Available": true
          }
        ],
        "SriovDevicePool": null,
        "AssignableHardwareBinding": null,
        "AssignableHardwareConfig": null
      },
      "Vm": [
        {
          "Type": "VirtualMachine",
          "Value": "vm-66"
        }
      ],
      "Datastore": [
        {
          "Type": "Datastore",
          "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
        }
      ],
      "Network": [
        {
          "Type": "Network",
          "Value": "network-7"
        },
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-11"
        },
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-13"
        }
      ],
      "DatastoreBrowser": {
        "Type": "HostDatastoreBrowser",
        "Value": "ha-host-datastorebrowser"
      },
      "SystemResources": null,
      "AnswerFileValidationState": null,
      "AnswerFileValidationResult": null
    }
  ]
}

ポートグループ

$ govc host.portgroup.info --host=/DC0/host/DC0_C0/DC0_C0_H0
Name:                    VM Network
Virtual switch:          vSwitch0
VLAN ID:                 0
Active ports:            0
Allow promiscuous mode:  No
Allow forged transmits:  Yes
Allow MAC changes:       Yes

Name:                    Management Network
Virtual switch:          vSwitch0
VLAN ID:                 0
Active ports:            1
Allow promiscuous mode:  No
Allow forged transmits:  Yes
Allow MAC changes:       Yes
$ govc host.portgroup.info --json --host=/DC0/host/DC0_C0/DC0_C0_H0
{
  "Portgroup": [
    {
      "Key": "key-vim.host.PortGroup-VM Network",
      "Port": null,
      "Vswitch": "key-vim.host.VirtualSwitch-vSwitch0",
      "ComputedPolicy": {
        "Security": {
          "AllowPromiscuous": false,
          "MacChanges": true,
          "ForgedTransmits": true
        },
        "NicTeaming": {
          "Policy": "loadbalance_srcid",
          "ReversePolicy": true,
          "NotifySwitches": true,
          "RollingOrder": false,
          "FailureCriteria": {
            "CheckSpeed": "minimum",
            "Speed": 10,
            "CheckDuplex": false,
            "FullDuplex": false,
            "CheckErrorPercent": false,
            "Percentage": 0,
            "CheckBeacon": false
          },
          "NicOrder": {
            "ActiveNic": [
              "vmnic0"
            ],
            "StandbyNic": null
          }
        },
        "OffloadPolicy": {
          "CsumOffload": true,
          "TcpSegmentation": true,
          "ZeroCopyXmit": true
        },
        "ShapingPolicy": {
          "Enabled": false,
          "AverageBandwidth": 0,
          "PeakBandwidth": 0,
          "BurstSize": 0
        }
      },
      "Spec": {
        "Name": "VM Network",
        "VlanId": 0,
        "VswitchName": "vSwitch0",
        "Policy": {
          "Security": {
            "AllowPromiscuous": null,
            "MacChanges": null,
            "ForgedTransmits": null
          },
          "NicTeaming": {
            "Policy": "",
            "ReversePolicy": null,
            "NotifySwitches": null,
            "RollingOrder": null,
            "FailureCriteria": {
              "CheckSpeed": "",
              "Speed": 0,
              "CheckDuplex": null,
              "FullDuplex": null,
              "CheckErrorPercent": null,
              "Percentage": 0,
              "CheckBeacon": null
            },
            "NicOrder": null
          },
          "OffloadPolicy": {
            "CsumOffload": null,
            "TcpSegmentation": null,
            "ZeroCopyXmit": null
          },
          "ShapingPolicy": {
            "Enabled": null,
            "AverageBandwidth": 0,
            "PeakBandwidth": 0,
            "BurstSize": 0
          }
        }
      }
    },
    {
      "Key": "key-vim.host.PortGroup-Management Network",
      "Port": [
        {
          "Key": "key-vim.host.PortGroup.Port-33554436",
          "Mac": [
            "00:0c:29:81:d8:a0"
          ],
          "Type": "host"
        }
      ],
      "Vswitch": "key-vim.host.VirtualSwitch-vSwitch0",
      "ComputedPolicy": {
        "Security": {
          "AllowPromiscuous": false,
          "MacChanges": true,
          "ForgedTransmits": true
        },
        "NicTeaming": {
          "Policy": "loadbalance_srcid",
          "ReversePolicy": true,
          "NotifySwitches": true,
          "RollingOrder": false,
          "FailureCriteria": {
            "CheckSpeed": "minimum",
            "Speed": 10,
            "CheckDuplex": false,
            "FullDuplex": false,
            "CheckErrorPercent": false,
            "Percentage": 0,
            "CheckBeacon": false
          },
          "NicOrder": {
            "ActiveNic": [
              "vmnic0"
            ],
            "StandbyNic": null
          }
        },
        "OffloadPolicy": {
          "CsumOffload": true,
          "TcpSegmentation": true,
          "ZeroCopyXmit": true
        },
        "ShapingPolicy": {
          "Enabled": false,
          "AverageBandwidth": 0,
          "PeakBandwidth": 0,
          "BurstSize": 0
        }
      },
      "Spec": {
        "Name": "Management Network",
        "VlanId": 0,
        "VswitchName": "vSwitch0",
        "Policy": {
          "Security": {
            "AllowPromiscuous": null,
            "MacChanges": null,
            "ForgedTransmits": null
          },
          "NicTeaming": {
            "Policy": "loadbalance_srcid",
            "ReversePolicy": null,
            "NotifySwitches": true,
            "RollingOrder": false,
            "FailureCriteria": {
              "CheckSpeed": "",
              "Speed": 0,
              "CheckDuplex": null,
              "FullDuplex": null,
              "CheckErrorPercent": null,
              "Percentage": 0,
              "CheckBeacon": false
            },
            "NicOrder": {
              "ActiveNic": [
                "vmnic0"
              ],
              "StandbyNic": null
            }
          },
          "OffloadPolicy": {
            "CsumOffload": null,
            "TcpSegmentation": null,
            "ZeroCopyXmit": null
          },
          "ShapingPolicy": {
            "Enabled": null,
            "AverageBandwidth": 0,
            "PeakBandwidth": 0,
            "BurstSize": 0
          }
        }
      }
    }
  ]
}

仮想スイッチ

$ govc host.vswitch.info --host=/DC0/host/DC0_C0/DC0_C0_H0
Name:             vSwitch0
Portgroup:        VM Network
Pnic:
MTU:              0
Ports:            0
Ports Available:  0
$ govc host.vswitch.info --json --host=/DC0/host/DC0_C0/DC0_C0_H0
{
  "Vswitch": [
    {
      "Name": "vSwitch0",
      "Key": "",
      "NumPorts": 0,
      "NumPortsAvailable": 0,
      "Mtu": 0,
      "Portgroup": [
        "VM Network"
      ],
      "Pnic": null,
      "Spec": {
        "NumPorts": 0,
        "Bridge": null,
        "Policy": null,
        "Mtu": 0
      }
    }
  ]
}

仮想NIC

$ govc host.vnic.info --host=/DC0/host/DC0_C0/DC0_C0_H0
govc: ServerFaultCode: The object has already been deleted or has not been completely created

分散スイッチ(DVS)

$ govc dvs.portgroup.info /DC0/network/DVS0
PortgroupKey:
DvsUuid:      fea97929-4b2d-5972-b146-930c6d0b4014
VlanId:       0
PortKey:      dvportgroup-11

PortgroupKey:
DvsUuid:      fea97929-4b2d-5972-b146-930c6d0b4014
VlanId:       0
PortKey:      dvportgroup-13
$ govc dvs.portgroup.info --json /DC0/network/DVS0
{
  "Port": [
    {
      "Key": "dvportgroup-11",
      "Config": {
        "Name": "",
        "Scope": null,
        "Description": "",
        "Setting": {
          "Blocked": null,
          "VmDirectPathGen2Allowed": null,
          "InShapingPolicy": null,
          "OutShapingPolicy": null,
          "VendorSpecificConfig": null,
          "NetworkResourcePoolKey": null,
          "FilterPolicy": null,
          "Vlan": {
            "Inherited": false,
            "VlanId": [
              {
                "Start": 0,
                "End": 4094
              }
            ]
          },
          "QosTag": null,
          "UplinkTeamingPolicy": {
            "Inherited": false,
            "Policy": {
              "Inherited": false,
              "Value": "loadbalance_srcid"
            },
            "ReversePolicy": {
              "Inherited": false,
              "Value": true
            },
            "NotifySwitches": {
              "Inherited": false,
              "Value": true
            },
            "RollingOrder": {
              "Inherited": false,
              "Value": true
            },
            "FailureCriteria": null,
            "UplinkPortOrder": null
          },
          "SecurityPolicy": null,
          "IpfixEnabled": null,
          "TxUplink": null,
          "LacpPolicy": null,
          "MacManagementPolicy": null,
          "VNI": null
        },
        "ConfigVersion": ""
      },
      "DvsUuid": "fea97929-4b2d-5972-b146-930c6d0b4014",
      "PortgroupKey": "",
      "ProxyHost": null,
      "Connectee": null,
      "Conflict": false,
      "ConflictPortKey": "",
      "State": null,
      "ConnectionCookie": 0,
      "LastStatusChange": "0001-01-01T00:00:00Z",
      "HostLocalPort": null,
      "ExternalId": "",
      "SegmentPortId": ""
    },
    {
      "Key": "dvportgroup-13",
      "Config": {
        "Name": "",
        "Scope": null,
        "Description": "",
        "Setting": {
          "Blocked": null,
          "VmDirectPathGen2Allowed": null,
          "InShapingPolicy": null,
          "OutShapingPolicy": null,
          "VendorSpecificConfig": null,
          "NetworkResourcePoolKey": null,
          "FilterPolicy": null,
          "Vlan": {
            "Inherited": false,
            "VlanId": 0
          },
          "QosTag": null,
          "UplinkTeamingPolicy": {
            "Inherited": false,
            "Policy": {
              "Inherited": false,
              "Value": "loadbalance_srcid"
            },
            "ReversePolicy": {
              "Inherited": false,
              "Value": true
            },
            "NotifySwitches": {
              "Inherited": false,
              "Value": true
            },
            "RollingOrder": {
              "Inherited": false,
              "Value": true
            },
            "FailureCriteria": null,
            "UplinkPortOrder": null
          },
          "SecurityPolicy": null,
          "IpfixEnabled": null,
          "TxUplink": null,
          "LacpPolicy": null,
          "MacManagementPolicy": null,
          "VNI": null
        },
        "ConfigVersion": ""
      },
      "DvsUuid": "fea97929-4b2d-5972-b146-930c6d0b4014",
      "PortgroupKey": "",
      "ProxyHost": null,
      "Connectee": null,
      "Conflict": false,
      "ConflictPortKey": "",
      "State": null,
      "ConnectionCookie": 0,
      "LastStatusChange": "0001-01-01T00:00:00Z",
      "HostLocalPort": null,
      "ExternalId": "",
      "SegmentPortId": ""
    }
  ]
}

分散ポートグループ

他に適切なコマンドがありそう。

$ govc dvs.portgroup.info /DC0/network/DC0_DVPG0
govc: /DC0/network/DC0_DVPG0 (DistributedVirtualPortgroup) is not a DVS

分散アップリンク

他に適切なコマンドがありそう。

$ govc dvs.portgroup.info /DC0/network/DVS0-DVUplinks-9
govc: /DC0/network/DVS0-DVUplinks-9 (DistributedVirtualPortgroup) is not a DVS

ストレージ

$ govc host.storage.info --host=/DC0/host/DC0_C0/DC0_C0_H0
Name                                     Type   Capacity  Model
/vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0  cdrom  -         VMware IDE CDR00
/vmfs/devices/disks/mpx.vmhba0:C0:T0:L0  disk   32.0GB    VMware Virtual S (local,ssd)
$ govc host.storage.info --json --host=/DC0/host/DC0_C0/DC0_C0_H0
{
  "Self": {
    "Type": "HostStorageSystem",
    "Value": "hoststoragesystem-33"
  },
  "Value": null,
  "AvailableField": null,
  "StorageDeviceInfo": {
    "HostBusAdapter": [
      {
        "Key": "key-vim.host.ParallelScsiHba-vmhba0",
        "Device": "vmhba0",
        "Bus": 3,
        "Status": "unknown",
        "Model": "PVSCSI SCSI Controller",
        "Driver": "pvscsi",
        "Pci": "0000:03:00.0",
        "StorageProtocol": ""
      },
      {
        "Key": "key-vim.host.BlockHba-vmhba1",
        "Device": "vmhba1",
        "Bus": 0,
        "Status": "unknown",
        "Model": "PIIX4 for 430TX/440BX/MX IDE Controller",
        "Driver": "vmkata",
        "Pci": "0000:00:07.1",
        "StorageProtocol": ""
      },
      {
        "Key": "key-vim.host.BlockHba-vmhba64",
        "Device": "vmhba64",
        "Bus": 0,
        "Status": "unknown",
        "Model": "PIIX4 for 430TX/440BX/MX IDE Controller",
        "Driver": "vmkata",
        "Pci": "0000:00:07.1",
        "StorageProtocol": ""
      }
    ],
    "ScsiLun": [
      {
        "DeviceName": "/vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0",
        "DeviceType": "cdrom",
        "Key": "key-vim.host.ScsiLun-0005000000766d686261313a303a30",
        "Uuid": "0005000000766d686261313a303a30",
        "Descriptor": [
          {
            "Quality": "lowQuality",
            "Id": "mpx.vmhba1:C0:T0:L0"
          },
          {
            "Quality": "lowQuality",
            "Id": "vml.0005000000766d686261313a303a30"
          },
          {
            "Quality": "lowQuality",
            "Id": "0005000000766d686261313a303a30"
          }
        ],
        "CanonicalName": "mpx.vmhba1:C0:T0:L0",
        "DisplayName": "Local NECVMWar CD-ROM (mpx.vmhba1:C0:T0:L0)",
        "LunType": "cdrom",
        "Vendor": "NECVMWar",
        "Model": "VMware IDE CDR00",
        "Revision": "1.00",
        "ScsiLevel": 5,
        "SerialNumber": "unavailable",
        "DurableName": null,
        "AlternateName": [
          {
            "Namespace": "GENERIC_VPD",
            "NamespaceId": 5,
            "Data": "LTc5"
          },
          {
            "Namespace": "GENERIC_VPD",
            "NamespaceId": 5,
            "Data": "MA=="
          }
        ],
        "StandardInquiry": "MA==",
        "QueueDepth": 0,
        "OperationalState": [
          "ok"
        ],
        "Capabilities": {
          "UpdateDisplayNameSupported": false
        },
        "VStorageSupport": "vStorageUnsupported",
        "ProtocolEndpoint": false,
        "PerenniallyReserved": null,
        "ClusteredVmdkSupported": null
      },
      {
        "DeviceName": "/vmfs/devices/disks/mpx.vmhba0:C0:T0:L0",
        "DeviceType": "disk",
        "Key": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30",
        "Uuid": "0000000000766d686261303a303a30",
        "Descriptor": [
          {
            "Quality": "lowQuality",
            "Id": "mpx.vmhba0:C0:T0:L0"
          },
          {
            "Quality": "lowQuality",
            "Id": "vml.0000000000766d686261303a303a30"
          },
          {
            "Quality": "lowQuality",
            "Id": "0000000000766d686261303a303a30"
          }
        ],
        "CanonicalName": "mpx.vmhba0:C0:T0:L0",
        "DisplayName": "Local VMware, Disk (mpx.vmhba0:C0:T0:L0)",
        "LunType": "disk",
        "Vendor": "VMware, ",
        "Model": "VMware Virtual S",
        "Revision": "1.0 ",
        "ScsiLevel": 2,
        "SerialNumber": "unavailable",
        "DurableName": null,
        "AlternateName": [
          {
            "Namespace": "GENERIC_VPD",
            "NamespaceId": 5,
            "Data": "LTc5"
          },
          {
            "Namespace": "GENERIC_VPD",
            "NamespaceId": 5,
            "Data": "MA=="
          }
        ],
        "StandardInquiry": "MA==",
        "QueueDepth": 1024,
        "OperationalState": [
          "ok"
        ],
        "Capabilities": {
          "UpdateDisplayNameSupported": false
        },
        "VStorageSupport": "vStorageUnsupported",
        "ProtocolEndpoint": false,
        "PerenniallyReserved": null,
        "ClusteredVmdkSupported": null,
        "Capacity": {
          "BlockSize": 512,
          "Block": 67108864
        },
        "DevicePath": "/vmfs/devices/disks/mpx.vmhba0:C0:T0:L0",
        "Ssd": true,
        "LocalDisk": true,
        "PhysicalLocation": null,
        "EmulatedDIXDIFEnabled": false,
        "VsanDiskInfo": null,
        "ScsiDiskType": "native512"
      }
    ],
    "ScsiTopology": {
      "Adapter": [
        {
          "Key": "key-vim.host.ScsiTopology.Interface-vmhba0",
          "Adapter": "key-vim.host.ParallelScsiHba-vmhba0",
          "Target": [
            {
              "Key": "key-vim.host.ScsiTopology.Target-vmhba0:0:0",
              "Target": 0,
              "Lun": [
                {
                  "Key": "key-vim.host.ScsiTopology.Lun-0000000000766d686261303a303a30",
                  "Lun": 0,
                  "ScsiLun": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30"
                }
              ],
              "Transport": {}
            }
          ]
        },
        {
          "Key": "key-vim.host.ScsiTopology.Interface-vmhba1",
          "Adapter": "key-vim.host.BlockHba-vmhba1",
          "Target": [
            {
              "Key": "key-vim.host.ScsiTopology.Target-vmhba1:0:0",
              "Target": 0,
              "Lun": [
                {
                  "Key": "key-vim.host.ScsiTopology.Lun-0005000000766d686261313a303a30",
                  "Lun": 0,
                  "ScsiLun": "key-vim.host.ScsiLun-0005000000766d686261313a303a30"
                }
              ],
              "Transport": {}
            }
          ]
        },
        {
          "Key": "key-vim.host.ScsiTopology.Interface-vmhba64",
          "Adapter": "key-vim.host.BlockHba-vmhba64",
          "Target": null
        }
      ]
    },
    "NvmeTopology": null,
    "MultipathInfo": {
      "Lun": [
        {
          "Key": "key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30",
          "Id": "0005000000766d686261313a303a30",
          "Lun": "key-vim.host.ScsiLun-0005000000766d686261313a303a30",
          "Path": [
            {
              "Key": "key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L0",
              "Name": "vmhba1:C0:T0:L0",
              "PathState": "active",
              "State": "active",
              "IsWorkingPath": true,
              "Adapter": "key-vim.host.BlockHba-vmhba1",
              "Lun": "key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261313a303a30",
              "Transport": {}
            }
          ],
          "Policy": {
            "Policy": "VMW_PSP_FIXED",
            "Prefer": "vmhba1:C0:T0:L0"
          },
          "StorageArrayTypePolicy": {
            "Policy": "VMW_SATP_LOCAL"
          }
        },
        {
          "Key": "key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30",
          "Id": "0000000000766d686261303a303a30",
          "Lun": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30",
          "Path": [
            {
              "Key": "key-vim.host.MultipathInfo.Path-vmhba0:C0:T0:L0",
              "Name": "vmhba0:C0:T0:L0",
              "PathState": "active",
              "State": "active",
              "IsWorkingPath": true,
              "Adapter": "key-vim.host.ParallelScsiHba-vmhba0",
              "Lun": "key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30",
              "Transport": {}
            }
          ],
          "Policy": {
            "Policy": "VMW_PSP_FIXED",
            "Prefer": "vmhba0:C0:T0:L0"
          },
          "StorageArrayTypePolicy": {
            "Policy": "VMW_SATP_LOCAL"
          }
        }
      ]
    },
    "PlugStoreTopology": {
      "Adapter": [
        {
          "Key": "key-vim.host.PlugStoreTopology.Adapter-vmhba0",
          "Adapter": "key-vim.host.ParallelScsiHba-vmhba0",
          "Path": [
            "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0"
          ]
        },
        {
          "Key": "key-vim.host.PlugStoreTopology.Adapter-vmhba1",
          "Adapter": "key-vim.host.BlockHba-vmhba1",
          "Path": [
            "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0"
          ]
        },
        {
          "Key": "key-vim.host.PlugStoreTopology.Adapter-vmhba64",
          "Adapter": "key-vim.host.BlockHba-vmhba64",
          "Path": null
        }
      ],
      "Path": [
        {
          "Key": "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0",
          "Name": "vmhba0:C0:T0:L0",
          "ChannelNumber": 0,
          "TargetNumber": 0,
          "LunNumber": 0,
          "Adapter": "key-vim.host.PlugStoreTopology.Adapter-vmhba0",
          "Target": "key-vim.host.PlugStoreTopology.Target-pscsi.0:0",
          "Device": "key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30"
        },
        {
          "Key": "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0",
          "Name": "vmhba1:C0:T0:L0",
          "ChannelNumber": 0,
          "TargetNumber": 0,
          "LunNumber": 0,
          "Adapter": "key-vim.host.PlugStoreTopology.Adapter-vmhba1",
          "Target": "key-vim.host.PlugStoreTopology.Target-ide.0:0",
          "Device": "key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30"
        }
      ],
      "Target": [
        {
          "Key": "key-vim.host.PlugStoreTopology.Target-pscsi.0:0",
          "Transport": {}
        },
        {
          "Key": "key-vim.host.PlugStoreTopology.Target-ide.0:0",
          "Transport": {}
        }
      ],
      "Device": [
        {
          "Key": "key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30",
          "Lun": "key-vim.host.ScsiLun-0005000000766d686261313a303a30",
          "Path": [
            "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0"
          ]
        },
        {
          "Key": "key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30",
          "Lun": "key-vim.host.ScsiDisk-0000000000766d686261303a303a30",
          "Path": [
            "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0"
          ]
        }
      ],
      "Plugin": [
        {
          "Key": "key-vim.host.PlugStoreTopology.Plugin-NMP",
          "Name": "NMP",
          "Device": [
            "key-vim.host.PlugStoreTopology.Device-0005000000766d686261313a303a30",
            "key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30"
          ],
          "ClaimedPath": [
            "key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0",
            "key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0"
          ]
        }
      ]
    },
    "SoftwareInternetScsiEnabled": false
  },
  "FileSystemVolumeInfo": {
    "VolumeTypeList": null,
    "MountInfo": null
  },
  "SystemFile": null,
  "MultipathStateInfo": null
}

データストア リスト

$ govc datastore.ls
DC0_C0_RP0_VM0
DC0_C0_RP0_VM1
DC0_H0_VM0
DC0_H0_VM1
$ govc datastore.ls --json
[
  {
    "Datastore": {
      "Type": "Datastore",
      "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
    },
    "FolderPath": "[LocalDS_0]",
    "File": [
      {
        "Path": "DC0_C0_RP0_VM0",
        "FriendlyName": "",
        "FileSize": 0,
        "Modification": null,
        "Owner": ""
      },
      {
        "Path": "DC0_C0_RP0_VM1",
        "FriendlyName": "",
        "FileSize": 0,
        "Modification": null,
        "Owner": ""
      },
      {
        "Path": "DC0_H0_VM0",
        "FriendlyName": "",
        "FileSize": 0,
        "Modification": null,
        "Owner": ""
      },
      {
        "Path": "DC0_H0_VM1",
        "FriendlyName": "",
        "FileSize": 0,
        "Modification": null,
        "Owner": ""
      }
    ]
  }
]

データストア 情報

$ govc datastore.info
Name:        LocalDS_0
  Path:      /DC0/datastore/LocalDS_0
  Type:      OTHER
  URL:       /var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822
  Capacity:  233.5 GB
  Free:      162.7 GB
$ govc datastore.info --json
{
  "Datastores": [
    {
      "Self": {
        "Type": "Datastore",
        "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
      },
      "Value": null,
      "AvailableField": null,
      "Parent": {
        "Type": "Folder",
        "Value": "folder-5"
      },
      "CustomValue": null,
      "OverallStatus": "green",
      "ConfigStatus": "green",
      "ConfigIssue": null,
      "EffectiveRole": [
        -1
      ],
      "Permission": null,
      "Name": "LocalDS_0",
      "DisabledMethod": null,
      "RecentTask": null,
      "DeclaredAlarmState": null,
      "TriggeredAlarmState": null,
      "AlarmActionsEnabled": null,
      "Tag": null,
      "Info": {
        "Name": "LocalDS_0",
        "Url": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822",
        "FreeSpace": 174703325184,
        "MaxFileSize": 174707519488,
        "MaxVirtualDiskCapacity": 0,
        "MaxMemoryFileSize": 174707519488,
        "Timestamp": "2020-05-02T09:54:49.250674+09:00",
        "ContainerId": "",
        "AliasOf": "",
        "Path": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822"
      },
      "Summary": {
        "Datastore": {
          "Type": "Datastore",
          "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
        },
        "Name": "LocalDS_0",
        "Url": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822",
        "Capacity": 250685575168,
        "FreeSpace": 174703325184,
        "Uncommitted": 0,
        "Accessible": true,
        "MultipleHostAccess": null,
        "Type": "OTHER",
        "MaintenanceMode": "normal"
      },
      "Host": [
        {
          "Key": {
            "Type": "HostSystem",
            "Value": "host-50"
          },
          "MountInfo": {
            "Path": "",
            "AccessMode": "readWrite",
            "Mounted": true,
            "Accessible": true,
            "InaccessibleReason": ""
          }
        }
      ],
      "Vm": [
        {
          "Type": "VirtualMachine",
          "Value": "vm-57"
        },
        {
          "Type": "VirtualMachine",
          "Value": "vm-60"
        },
        {
          "Type": "VirtualMachine",
          "Value": "vm-63"
        },
        {
          "Type": "VirtualMachine",
          "Value": "vm-66"
        }
      ],
      "Browser": {
        "Type": "HostDatastoreBrowser",
        "Value": "hostdatastorebrowser-55"
      },
      "Capability": {
        "DirectoryHierarchySupported": true,
        "RawDiskMappingsSupported": false,
        "PerFileThinProvisioningSupported": true,
        "StorageIORMSupported": true,
        "NativeSnapshotSupported": false,
        "TopLevelDirectoryCreateSupported": true,
        "SeSparseSupported": true,
        "VmfsSparseSupported": null,
        "VsanSparseSupported": null,
        "UpitSupported": null,
        "VmdkExpandSupported": null,
        "ClusteredVmdkSupported": null
      },
      "IormConfiguration": null
    }
  ]
}

自動起動

$ govc host.autostart.info --host=/DC0/host/DC0_C0/DC0_C0_H0
govc: ServerFaultCode: The object has already been deleted or has not been completely created

ESXi hostsオプション

$ govc host.option.ls --host=/DC0/host/DC0_C0/DC0_C0_H0
Config.HostAgent.log.level:  info
$ govc host.option.ls --json --host=/DC0/host/DC0_C0/DC0_C0_H0
[
  {
    "Key": "Config.HostAgent.log.level",
    "Value": "info"
  }
]

vCenter オプション?

$ govc option.ls
config.vpxd.sso.sts.uri:                   https://127.0.0.1:8989/sts/STSService/vsphere.local
config.vpxd.sso.solutionUser.privateKey:   /etc/vmware-vpx/ssl/vcsoluser.key
config.vpxd.sso.solutionUser.name:         vpxd-b643d01c-928f-469b-96a5-d571d762a78e@vsphere.local
config.vpxd.sso.solutionUser.certificate:  /etc/vmware-vpx/ssl/vcsoluser.crt
config.vpxd.sso.groupcheck.uri:            https://127.0.0.1:8989/sso-adminserver/sdk/vsphere.local
config.vpxd.sso.enabled:                   false
config.vpxd.sso.default.isGroup:           false
config.vpxd.sso.default.admin:             Administrator@vsphere.local
config.vpxd.sso.admin.uri:                 https://127.0.0.1:8989/sso-adminserver/sdk/vsphere.local
VirtualCenter.InstanceName:                127.0.0.1
event.batchsize:                           2000
event.maxAge:                              30
event.maxAgeEnabled:                       true
vcsim.server.url:                          https://127.0.0.1:8989/sdk
$ govc option.ls --json
[
  {
    "Key": "config.vpxd.sso.sts.uri",
    "Value": "https://127.0.0.1:8989/sts/STSService/vsphere.local"
  },
  {
    "Key": "config.vpxd.sso.solutionUser.privateKey",
    "Value": "/etc/vmware-vpx/ssl/vcsoluser.key"
  },
  {
    "Key": "config.vpxd.sso.solutionUser.name",
    "Value": "vpxd-b643d01c-928f-469b-96a5-d571d762a78e@vsphere.local"
  },
  {
    "Key": "config.vpxd.sso.solutionUser.certificate",
    "Value": "/etc/vmware-vpx/ssl/vcsoluser.crt"
  },
  {
    "Key": "config.vpxd.sso.groupcheck.uri",
    "Value": "https://127.0.0.1:8989/sso-adminserver/sdk/vsphere.local"
  },
  {
    "Key": "config.vpxd.sso.enabled",
    "Value": "false"
  },
  {
    "Key": "config.vpxd.sso.default.isGroup",
    "Value": "false"
  },
  {
    "Key": "config.vpxd.sso.default.admin",
    "Value": "Administrator@vsphere.local"
  },
  {
    "Key": "config.vpxd.sso.admin.uri",
    "Value": "https://127.0.0.1:8989/sso-adminserver/sdk/vsphere.local"
  },
  {
    "Key": "VirtualCenter.InstanceName",
    "Value": "127.0.0.1"
  },
  {
    "Key": "event.batchsize",
    "Value": 2000
  },
  {
    "Key": "event.maxAge",
    "Value": 30
  },
  {
    "Key": "event.maxAgeEnabled",
    "Value": true
  },
  {
    "Key": "vcsim.server.url",
    "Value": "https://127.0.0.1:8989/sdk"
  }
]

仮想マシン

$ govc vm.info /DC0/vm/DC0_H0_VM0
Name:           DC0_H0_VM0
  Path:         /DC0/vm/DC0_H0_VM0
  UUID:         265104de-1472-547c-b873-6dc7883fb6cb
  Guest name:   otherGuest
  Memory:       32MB
  CPU:          1 vCPU(s)
  Power state:  poweredOn
  Boot time:    2020-05-02 09:54:49.253357 +0900 JST
  IP address:
  Host:         DC0_H0
$ govc vm.info --json /DC0/vm/DC0_H0_VM0
{
  "VirtualMachines": [
    {
      "Self": {
        "Type": "VirtualMachine",
        "Value": "vm-57"
      },
      "Value": null,
      "AvailableField": null,
      "Parent": {
        "Type": "Folder",
        "Value": "folder-3"
      },
      "CustomValue": null,
      "OverallStatus": "green",
      "ConfigStatus": "green",
      "ConfigIssue": null,
      "EffectiveRole": [
        -1
      ],
      "Permission": null,
      "Name": "DC0_H0_VM0",
      "DisabledMethod": null,
      "RecentTask": null,
      "DeclaredAlarmState": null,
      "TriggeredAlarmState": null,
      "AlarmActionsEnabled": null,
      "Tag": null,
      "Capability": {
        "SnapshotOperationsSupported": false,
        "MultipleSnapshotsSupported": false,
        "SnapshotConfigSupported": false,
        "PoweredOffSnapshotsSupported": false,
        "MemorySnapshotsSupported": false,
        "RevertToSnapshotSupported": false,
        "QuiescedSnapshotsSupported": false,
        "DisableSnapshotsSupported": false,
        "LockSnapshotsSupported": false,
        "ConsolePreferencesSupported": false,
        "CpuFeatureMaskSupported": false,
        "S1AcpiManagementSupported": false,
        "SettingScreenResolutionSupported": false,
        "ToolsAutoUpdateSupported": false,
        "VmNpivWwnSupported": false,
        "NpivWwnOnNonRdmVmSupported": false,
        "VmNpivWwnDisableSupported": null,
        "VmNpivWwnUpdateSupported": null,
        "SwapPlacementSupported": false,
        "ToolsSyncTimeSupported": false,
        "VirtualMmuUsageSupported": false,
        "DiskSharesSupported": false,
        "BootOptionsSupported": false,
        "BootRetryOptionsSupported": null,
        "SettingVideoRamSizeSupported": false,
        "SettingDisplayTopologySupported": null,
        "RecordReplaySupported": null,
        "ChangeTrackingSupported": null,
        "MultipleCoresPerSocketSupported": null,
        "HostBasedReplicationSupported": null,
        "GuestAutoLockSupported": null,
        "MemoryReservationLockSupported": null,
        "FeatureRequirementSupported": null,
        "PoweredOnMonitorTypeChangeSupported": null,
        "SeSparseDiskSupported": null,
        "NestedHVSupported": null,
        "VPMCSupported": null,
        "SecureBootSupported": null,
        "PerVmEvcSupported": null,
        "VirtualMmuUsageIgnored": null,
        "VirtualExecUsageIgnored": null,
        "DiskOnlySnapshotOnSuspendedVMSupported": null
      },
      "Config": {
        "ChangeVersion": "",
        "Modified": "2020-05-02T09:54:49.251542+09:00",
        "Name": "DC0_H0_VM0",
        "GuestFullName": "otherGuest",
        "Version": "vmx-13",
        "Uuid": "265104de-1472-547c-b873-6dc7883fb6cb",
        "CreateDate": null,
        "InstanceUuid": "b4689bed-97f0-5bcd-8a4c-07477cc8f06f",
        "NpivNodeWorldWideName": null,
        "NpivPortWorldWideName": null,
        "NpivWorldWideNameType": "",
        "NpivDesiredNodeWwns": 0,
        "NpivDesiredPortWwns": 0,
        "NpivTemporaryDisabled": null,
        "NpivOnNonRdmDisks": null,
        "LocationId": "",
        "Template": false,
        "GuestId": "otherGuest",
        "AlternateGuestName": "",
        "Annotation": "",
        "Files": {
          "VmPathName": "[LocalDS_0] DC0_H0_VM0/DC0_H0_VM0.vmx",
          "SnapshotDirectory": "[LocalDS_0] DC0_H0_VM0",
          "SuspendDirectory": "[LocalDS_0] DC0_H0_VM0",
          "LogDirectory": "[LocalDS_0] DC0_H0_VM0",
          "FtMetadataDirectory": ""
        },
        "Tools": {
          "ToolsVersion": 0,
          "ToolsInstallType": "",
          "AfterPowerOn": null,
          "AfterResume": null,
          "BeforeGuestStandby": null,
          "BeforeGuestShutdown": null,
          "BeforeGuestReboot": null,
          "ToolsUpgradePolicy": "",
          "PendingCustomization": "",
          "CustomizationKeyId": null,
          "SyncTimeWithHost": null,
          "LastInstallInfo": null
        },
        "Flags": {
          "DisableAcceleration": null,
          "EnableLogging": null,
          "UseToe": null,
          "RunWithDebugInfo": null,
          "MonitorType": "",
          "HtSharing": "",
          "SnapshotDisabled": null,
          "SnapshotLocked": null,
          "DiskUuidEnabled": null,
          "VirtualMmuUsage": "",
          "VirtualExecUsage": "",
          "SnapshotPowerOffBehavior": "",
          "RecordReplayEnabled": null,
          "FaultToleranceType": "",
          "CbrcCacheEnabled": null,
          "VvtdEnabled": null,
          "VbsEnabled": null
        },
        "ConsolePreferences": null,
        "DefaultPowerOps": {
          "PowerOffType": "",
          "SuspendType": "",
          "ResetType": "",
          "DefaultPowerOffType": "",
          "DefaultSuspendType": "",
          "DefaultResetType": "",
          "StandbyAction": ""
        },
        "Hardware": {
          "NumCPU": 1,
          "NumCoresPerSocket": 1,
          "MemoryMB": 32,
          "VirtualICH7MPresent": null,
          "VirtualSMCPresent": null,
          "Device": [
            {
              "Key": 200,
              "DeviceInfo": {
                "Label": "IDE 0",
                "Summary": "IDE 0"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 0,
              "UnitNumber": null,
              "BusNumber": 0,
              "Device": null
            },
            {
              "Key": 201,
              "DeviceInfo": {
                "Label": "IDE 1",
                "Summary": "IDE 1"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 0,
              "UnitNumber": null,
              "BusNumber": 1,
              "Device": null
            },
            {
              "Key": 300,
              "DeviceInfo": {
                "Label": "PS2 controller 0",
                "Summary": "PS2 controller 0"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 0,
              "UnitNumber": null,
              "BusNumber": 0,
              "Device": [
                600,
                700
              ]
            },
            {
              "Key": 100,
              "DeviceInfo": {
                "Label": "PCI controller 0",
                "Summary": "PCI controller 0"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 0,
              "UnitNumber": null,
              "BusNumber": 0,
              "Device": [
                500,
                12000
              ]
            },
            {
              "Key": 400,
              "DeviceInfo": {
                "Label": "SIO controller 0",
                "Summary": "SIO controller 0"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 0,
              "UnitNumber": null,
              "BusNumber": 0,
              "Device": null
            },
            {
              "Key": 600,
              "DeviceInfo": {
                "Label": "Keyboard ",
                "Summary": "Keyboard"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 300,
              "UnitNumber": 0
            },
            {
              "Key": 700,
              "DeviceInfo": {
                "Label": "Pointing device",
                "Summary": "Pointing device; Device"
              },
              "Backing": {
                "DeviceName": "",
                "UseAutoDetect": false,
                "HostPointingDevice": "autodetect"
              },
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 300,
              "UnitNumber": 1
            },
            {
              "Key": 500,
              "DeviceInfo": {
                "Label": "Video card ",
                "Summary": "Video card"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 100,
              "UnitNumber": 0,
              "VideoRamSizeInKB": 4096,
              "NumDisplays": 1,
              "UseAutoDetect": false,
              "Enable3DSupport": false,
              "Use3dRenderer": "automatic",
              "GraphicsMemorySizeInKB": 262144
            },
            {
              "Key": 12000,
              "DeviceInfo": {
                "Label": "VMCI device",
                "Summary": "Device on the virtual machine PCI bus that provides support for the virtual machine communication interface"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 100,
              "UnitNumber": 17,
              "Id": -1,
              "AllowUnrestrictedCommunication": false,
              "FilterEnable": true,
              "FilterInfo": null
            },
            {
              "Key": 202,
              "DeviceInfo": {
                "Label": "pvscsi-202",
                "Summary": "pvscsi-202"
              },
              "Backing": null,
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 0,
              "UnitNumber": null,
              "BusNumber": 0,
              "Device": null,
              "HotAddRemove": null,
              "SharedBus": "noSharing",
              "ScsiCtlrUnitNumber": 7
            },
            {
              "Key": 203,
              "DeviceInfo": {
                "Label": "cdrom-203",
                "Summary": "cdrom-203"
              },
              "Backing": {
                "DeviceName": "cdrom--201-824638194080",
                "UseAutoDetect": false
              },
              "Connectable": {
                "MigrateConnect": "",
                "StartConnected": true,
                "AllowGuestControl": true,
                "Connected": true,
                "Status": ""
              },
              "SlotInfo": null,
              "ControllerKey": 202,
              "UnitNumber": 0
            },
            {
              "Key": 204,
              "DeviceInfo": {
                "Label": "disk-202-0",
                "Summary": "1,024 KB"
              },
              "Backing": {
                "FileName": "[LocalDS_0] DC0_H0_VM0/disk1.vmdk",
                "Datastore": {
                  "Type": "Datastore",
                  "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
                },
                "BackingObjectId": "",
                "DiskMode": "persistent",
                "Split": null,
                "WriteThrough": null,
                "ThinProvisioned": true,
                "EagerlyScrub": null,
                "Uuid": "",
                "ContentId": "",
                "ChangeId": "",
                "Parent": null,
                "DeltaDiskFormat": "",
                "DigestEnabled": null,
                "DeltaGrainSize": 0,
                "DeltaDiskFormatVariant": "",
                "Sharing": "",
                "KeyId": null
              },
              "Connectable": null,
              "SlotInfo": null,
              "ControllerKey": 202,
              "UnitNumber": 0,
              "CapacityInKB": 1024,
              "CapacityInBytes": 0,
              "Shares": null,
              "StorageIOAllocation": null,
              "DiskObjectId": "",
              "VFlashCacheConfigInfo": null,
              "Iofilter": null,
              "VDiskId": null,
              "NativeUnmanagedLinkedClone": null
            },
            {
              "Key": 4000,
              "DeviceInfo": {
                "Label": "ethernet-0",
                "Summary": "DVSwitch: fea97929-4b2d-5972-b146-930c6d0b4014"
              },
              "Backing": {
                "Port": {
                  "SwitchUuid": "fea97929-4b2d-5972-b146-930c6d0b4014",
                  "PortgroupKey": "dvportgroup-13",
                  "PortKey": "",
                  "ConnectionCookie": 0
                }
              },
              "Connectable": {
                "MigrateConnect": "",
                "StartConnected": true,
                "AllowGuestControl": true,
                "Connected": false,
                "Status": "untried"
              },
              "SlotInfo": {
                "PciSlotNumber": 32
              },
              "ControllerKey": 100,
              "UnitNumber": 7,
              "AddressType": "generated",
              "MacAddress": "00:0c:29:36:63:62",
              "WakeOnLanEnabled": true,
              "ResourceAllocation": null,
              "ExternalId": "",
              "UptCompatibilityEnabled": null
            }
          ]
        },
        "VcpuConfig": null,
        "CpuAllocation": {
          "Reservation": 0,
          "ExpandableReservation": true,
          "Limit": -1,
          "Shares": {
            "Shares": 0,
            "Level": "normal"
          },
          "OverheadLimit": null
        },
        "MemoryAllocation": {
          "Reservation": 0,
          "ExpandableReservation": true,
          "Limit": -1,
          "Shares": {
            "Shares": 0,
            "Level": "normal"
          },
          "OverheadLimit": null
        },
        "LatencySensitivity": {
          "Level": "normal",
          "Sensitivity": 0
        },
        "MemoryHotAddEnabled": null,
        "CpuHotAddEnabled": null,
        "CpuHotRemoveEnabled": null,
        "HotPlugMemoryLimit": 0,
        "HotPlugMemoryIncrementSize": 0,
        "CpuAffinity": null,
        "MemoryAffinity": null,
        "NetworkShaper": null,
        "ExtraConfig": [
          {
            "Key": "govcsim",
            "Value": "TRUE"
          }
        ],
        "CpuFeatureMask": null,
        "DatastoreUrl": null,
        "SwapPlacement": "",
        "BootOptions": null,
        "FtInfo": null,
        "RepConfig": null,
        "VAppConfig": null,
        "VAssertsEnabled": null,
        "ChangeTrackingEnabled": null,
        "Firmware": "",
        "MaxMksConnections": 0,
        "GuestAutoLockEnabled": null,
        "ManagedBy": null,
        "MemoryReservationLockedToMax": null,
        "InitialOverhead": null,
        "NestedHVEnabled": null,
        "VPMCEnabled": null,
        "ScheduledHardwareUpgradeInfo": null,
        "ForkConfigInfo": null,
        "VFlashCacheReservation": 0,
        "VmxConfigChecksum": null,
        "MessageBusTunnelEnabled": null,
        "VmStorageObjectId": "",
        "SwapStorageObjectId": "",
        "KeyId": null,
        "GuestIntegrityInfo": null,
        "MigrateEncryption": "",
        "SgxInfo": null,
        "ContentLibItemInfo": null,
        "GuestMonitoringModeInfo": null
      },
      "Layout": {
        "ConfigFile": [
          "DC0_H0_VM0.nvram"
        ],
        "LogFile": [
          "vmware.log"
        ],
        "Disk": [
          {
            "Key": 204,
            "DiskFile": [
              "[LocalDS_0] DC0_H0_VM0/disk1.vmdk"
            ]
          }
        ],
        "Snapshot": null,
        "SwapFile": ""
      },
      "LayoutEx": {
        "File": [
          {
            "Key": 0,
            "Name": "[LocalDS_0] DC0_H0_VM0.nvram",
            "Type": "nvram",
            "Size": 0,
            "UniqueSize": 0,
            "BackingObjectId": "",
            "Accessible": true
          },
          {
            "Key": 1,
            "Name": "[LocalDS_0] DC0_H0_VM0.vmx",
            "Type": "config",
            "Size": 0,
            "UniqueSize": 0,
            "BackingObjectId": "",
            "Accessible": true
          },
          {
            "Key": 2,
            "Name": "[LocalDS_0] disk1-flat.vmdk",
            "Type": "diskExtent",
            "Size": 0,
            "UniqueSize": 0,
            "BackingObjectId": "",
            "Accessible": true
          },
          {
            "Key": 3,
            "Name": "[LocalDS_0] disk1.vmdk",
            "Type": "diskDescriptor",
            "Size": 0,
            "UniqueSize": 0,
            "BackingObjectId": "",
            "Accessible": true
          },
          {
            "Key": 4,
            "Name": "[LocalDS_0] vmware.log",
            "Type": "log",
            "Size": 32,
            "UniqueSize": 32,
            "BackingObjectId": "",
            "Accessible": true
          },
          {
            "Key": 5,
            "Name": "[LocalDS_0] DC0_H0_VM0/disk1-flat.vmdk",
            "Type": "diskExtent",
            "Size": 0,
            "UniqueSize": 0,
            "BackingObjectId": "",
            "Accessible": true
          },
          {
            "Key": 6,
            "Name": "[LocalDS_0] DC0_H0_VM0/disk1.vmdk",
            "Type": "diskDescriptor",
            "Size": 0,
            "UniqueSize": 0,
            "BackingObjectId": "",
            "Accessible": true
          }
        ],
        "Disk": [
          {
            "Key": 204,
            "Chain": [
              {
                "FileKey": [
                  5,
                  6
                ]
              }
            ]
          }
        ],
        "Snapshot": null,
        "Timestamp": "2020-05-02T09:54:49.253169+09:00"
      },
      "Storage": {
        "PerDatastoreUsage": [
          {
            "Datastore": {
              "Type": "Datastore",
              "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
            },
            "Committed": 0,
            "Uncommitted": 0,
            "Unshared": 0
          }
        ],
        "Timestamp": "2020-05-02T09:54:49.253169+09:00"
      },
      "EnvironmentBrowser": {
        "Type": "EnvironmentBrowser",
        "Value": "envbrowser-20"
      },
      "ResourcePool": {
        "Type": "ResourcePool",
        "Value": "resgroup-22"
      },
      "ParentVApp": null,
      "ResourceConfig": null,
      "Runtime": {
        "Device": null,
        "Host": {
          "Type": "HostSystem",
          "Value": "host-21"
        },
        "ConnectionState": "connected",
        "PowerState": "poweredOn",
        "FaultToleranceState": "",
        "DasVmProtection": null,
        "ToolsInstallerMounted": false,
        "SuspendTime": null,
        "BootTime": null,
        "SuspendInterval": 0,
        "Question": null,
        "MemoryOverhead": 0,
        "MaxCpuUsage": 0,
        "MaxMemoryUsage": 0,
        "NumMksConnections": 0,
        "RecordReplayState": "",
        "CleanPowerOff": null,
        "NeedSecondaryReason": "",
        "OnlineStandby": null,
        "MinRequiredEVCModeKey": "",
        "ConsolidationNeeded": null,
        "OfflineFeatureRequirement": null,
        "FeatureRequirement": null,
        "FeatureMask": null,
        "VFlashCacheAllocation": 0,
        "Paused": null,
        "SnapshotInBackground": null,
        "QuiescedForkParent": null,
        "InstantCloneFrozen": null,
        "CryptoState": ""
      },
      "Guest": {
        "ToolsStatus": "toolsNotInstalled",
        "ToolsVersionStatus": "",
        "ToolsVersionStatus2": "",
        "ToolsRunningStatus": "guestToolsNotRunning",
        "ToolsVersion": "0",
        "ToolsInstallType": "",
        "GuestId": "",
        "GuestFamily": "linuxGuest",
        "GuestFullName": "",
        "HostName": "",
        "IpAddress": "",
        "Net": [
          {
            "Network": "",
            "IpAddress": null,
            "MacAddress": "00:0c:29:36:63:62",
            "Connected": true,
            "DeviceConfigId": 4000,
            "DnsConfig": null,
            "IpConfig": null,
            "NetBIOSConfig": null
          }
        ],
        "IpStack": null,
        "Disk": null,
        "Screen": null,
        "GuestState": "",
        "AppHeartbeatStatus": "",
        "GuestKernelCrashed": null,
        "AppState": "",
        "GuestOperationsReady": null,
        "InteractiveGuestOperationsReady": null,
        "GuestStateChangeSupported": null,
        "GenerationInfo": null,
        "HwVersion": ""
      },
      "Summary": {
        "Vm": {
          "Type": "VirtualMachine",
          "Value": "vm-57"
        },
        "Runtime": {
          "Device": null,
          "Host": {
            "Type": "HostSystem",
            "Value": "host-21"
          },
          "ConnectionState": "connected",
          "PowerState": "poweredOn",
          "FaultToleranceState": "",
          "DasVmProtection": null,
          "ToolsInstallerMounted": false,
          "SuspendTime": null,
          "BootTime": "2020-05-02T09:54:49.253357+09:00",
          "SuspendInterval": 0,
          "Question": null,
          "MemoryOverhead": 0,
          "MaxCpuUsage": 0,
          "MaxMemoryUsage": 0,
          "NumMksConnections": 0,
          "RecordReplayState": "",
          "CleanPowerOff": null,
          "NeedSecondaryReason": "",
          "OnlineStandby": null,
          "MinRequiredEVCModeKey": "",
          "ConsolidationNeeded": null,
          "OfflineFeatureRequirement": null,
          "FeatureRequirement": null,
          "FeatureMask": null,
          "VFlashCacheAllocation": 0,
          "Paused": null,
          "SnapshotInBackground": null,
          "QuiescedForkParent": null,
          "InstantCloneFrozen": null,
          "CryptoState": ""
        },
        "Guest": {
          "GuestId": "otherGuest",
          "GuestFullName": "",
          "ToolsStatus": "toolsNotInstalled",
          "ToolsVersionStatus": "",
          "ToolsVersionStatus2": "",
          "ToolsRunningStatus": "",
          "HostName": "",
          "IpAddress": "",
          "HwVersion": ""
        },
        "Config": {
          "Name": "DC0_H0_VM0",
          "Template": false,
          "VmPathName": "[LocalDS_0] DC0_H0_VM0/DC0_H0_VM0.vmx",
          "MemorySizeMB": 32,
          "CpuReservation": 0,
          "MemoryReservation": 0,
          "NumCpu": 1,
          "NumEthernetCards": 1,
          "NumVirtualDisks": 1,
          "Uuid": "265104de-1472-547c-b873-6dc7883fb6cb",
          "InstanceUuid": "b4689bed-97f0-5bcd-8a4c-07477cc8f06f",
          "GuestId": "otherGuest",
          "GuestFullName": "otherGuest",
          "Annotation": "",
          "Product": null,
          "InstallBootRequired": null,
          "FtInfo": null,
          "ManagedBy": null,
          "TpmPresent": null,
          "NumVmiopBackings": 0,
          "HwVersion": ""
        },
        "Storage": {
          "Committed": 0,
          "Uncommitted": 0,
          "Unshared": 0,
          "Timestamp": "2020-05-02T09:54:49.253169+09:00"
        },
        "QuickStats": {
          "OverallCpuUsage": 0,
          "OverallCpuDemand": 0,
          "OverallCpuReadiness": 0,
          "GuestMemoryUsage": 0,
          "HostMemoryUsage": 0,
          "GuestHeartbeatStatus": "gray",
          "DistributedCpuEntitlement": 0,
          "DistributedMemoryEntitlement": 0,
          "StaticCpuEntitlement": 0,
          "StaticMemoryEntitlement": 0,
          "GrantedMemory": 0,
          "PrivateMemory": 0,
          "SharedMemory": 0,
          "SwappedMemory": 0,
          "BalloonedMemory": 0,
          "ConsumedOverheadMemory": 0,
          "FtLogBandwidth": 0,
          "FtSecondaryLatency": 0,
          "FtLatencyStatus": "",
          "CompressedMemory": 0,
          "UptimeSeconds": 0,
          "SsdSwappedMemory": 0
        },
        "OverallStatus": "green",
        "CustomValue": null
      },
      "Datastore": [
        {
          "Type": "Datastore",
          "Value": "/var/folders/p9/05wjpx9n4vx4bsz0tgzmllnc0000gn/T/govcsim-DC0-LocalDS_0-889233822@folder-5"
        }
      ],
      "Network": [
        {
          "Type": "DistributedVirtualPortgroup",
          "Value": "dvportgroup-13"
        }
      ],
      "Snapshot": null,
      "RootSnapshot": null,
      "GuestHeartbeatStatus": ""
    }
  ]
}

仮想マシン オプション

jsonなしだとサポートしているゲストOSの種類が表示された。

$ govc vm.option.info -vm=/DC0/vm/DC0_H0_VM0
dosGuest                 
win31Guest               
win95Guest               
win98Guest               
winMeGuest               
winNTGuest               
win2000ProGuest          
win2000ServGuest         
win2000AdvServGuest      
winXPHomeGuest           
winXPProGuest            
winXPPro64Guest          
winNetWebGuest           
winNetStandardGuest      
winNetEnterpriseGuest    
winNetDatacenterGuest    
winNetBusinessGuest      
winNetStandard64Guest    
winNetEnterprise64Guest  
winLonghornGuest         
winLonghorn64Guest       
winNetDatacenter64Guest  
winVistaGuest            
winVista64Guest          
windows7Guest            
windows7_64Guest         
windows7Server64Guest    
windows8Guest            
windows8_64Guest         
windows8Server64Guest    
windows9Guest            
windows9_64Guest         
windows9Server64Guest    
windowsHyperVGuest       
freebsdGuest             
freebsd64Guest           
redhatGuest              
rhel2Guest               
rhel3Guest               
rhel3_64Guest            
rhel4Guest               
rhel4_64Guest            
rhel5Guest               
rhel5_64Guest            
rhel6Guest               
rhel6_64Guest            
rhel7Guest               
rhel7_64Guest            
centosGuest              
centos64Guest            
centos6Guest             
centos6_64Guest          
centos7Guest             
centos7_64Guest          
oracleLinuxGuest         
oracleLinux64Guest       
oracleLinux6Guest        
oracleLinux6_64Guest     
oracleLinux7Guest        
oracleLinux7_64Guest     
suseGuest                
suse64Guest              
slesGuest                
sles64Guest              
sles10Guest              
sles10_64Guest           
sles11Guest              
sles11_64Guest           
sles12Guest              
sles12_64Guest           
nld9Guest                
oesGuest                 
sjdsGuest                
mandrakeGuest            
mandrivaGuest            
mandriva64Guest          
turboLinuxGuest          
turboLinux64Guest        
ubuntuGuest              
ubuntu64Guest            
debian4Guest             
debian4_64Guest          
debian5Guest             
debian5_64Guest          
debian6Guest             
debian6_64Guest          
debian7Guest             
debian7_64Guest          
debian8Guest             
debian8_64Guest          
debian9Guest             
debian9_64Guest          
debian10Guest            
debian10_64Guest         
asianux3Guest            
asianux3_64Guest         
asianux4Guest            
asianux4_64Guest         
asianux5_64Guest         
asianux7_64Guest         
opensuseGuest            
opensuse64Guest          
fedoraGuest              
fedora64Guest            
coreos64Guest            
vmwarePhoton64Guest      
other24xLinuxGuest       
other26xLinuxGuest       
otherLinuxGuest          
other3xLinuxGuest        
genericLinuxGuest        
other24xLinux64Guest     
other26xLinux64Guest     
other3xLinux64Guest      
otherLinux64Guest        
solaris6Guest            
solaris7Guest            
solaris8Guest            
solaris9Guest            
solaris10Guest           
solaris10_64Guest        
solaris11_64Guest        
os2Guest                 
eComStationGuest         
eComStation2Guest        
netware4Guest            
netware5Guest            
netware6Guest            
openServer5Guest         
openServer6Guest         
unixWare7Guest           
darwinGuest              
darwin64Guest            
darwin10Guest            
darwin10_64Guest         
darwin11Guest            
darwin11_64Guest         
darwin12_64Guest         
darwin13_64Guest         
darwin14_64Guest         
darwin15_64Guest         
darwin16_64Guest         
vmkernelGuest            
vmkernel5Guest           
vmkernel6Guest           
vmkernel65Guest          
otherGuest               
otherGuest64             

jsonありだとゲストOSの詳細が表示された。

$ govc vm.option.info --json -vm=/DC0/vm/DC0_H0_VM0
{
  "Version": "vmx-13",
  "Description": "",
  "GuestOSDescriptor": [
    {
      "Id": "dosGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "win31Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "win95Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "win98Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winMeGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNTGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "win2000ProGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "win2000ServGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "win2000AdvServGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winXPHomeGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winXPProGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winXPPro64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetWebGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetStandardGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetEnterpriseGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetDatacenterGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetBusinessGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetStandard64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetEnterprise64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winLonghornGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winLonghorn64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winNetDatacenter64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winVistaGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "winVista64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows7Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows7_64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows7Server64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows8Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows8_64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows8Server64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows9Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows9_64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windows9Server64Guest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "windowsHyperVGuest",
      "Family": "windowsGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "freebsdGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "freebsd64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "redhatGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel2Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel3Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel3_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel4Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel4_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel5Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel5_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel6_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel7Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "rhel7_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "centosGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "centos64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "centos6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "centos6_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "centos7Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "centos7_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "oracleLinuxGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "oracleLinux64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "oracleLinux6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "oracleLinux6_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "oracleLinux7Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "oracleLinux7_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "suseGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "suse64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "slesGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sles64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sles10Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sles10_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sles11Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sles11_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sles12Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sles12_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "nld9Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "oesGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "sjdsGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "mandrakeGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "mandrivaGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "mandriva64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "turboLinuxGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "turboLinux64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "ubuntuGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "ubuntu64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian4Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian4_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian5Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian5_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian6_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian7Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian7_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian8Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian8_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian9Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian9_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian10Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "debian10_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "asianux3Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "asianux3_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "asianux4Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "asianux4_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "asianux5_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "asianux7_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "opensuseGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "opensuse64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "fedoraGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "fedora64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "coreos64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "vmwarePhoton64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "other24xLinuxGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "other26xLinuxGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "otherLinuxGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "other3xLinuxGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "genericLinuxGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "other24xLinux64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "other26xLinux64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "other3xLinux64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "otherLinux64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "solaris6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "solaris7Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "solaris8Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "solaris9Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "solaris10Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "solaris10_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "solaris11_64Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "os2Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "eComStationGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "eComStation2Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "netware4Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "netware5Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "netware6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "openServer5Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "openServer6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "unixWare7Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwinGuest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin10Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin10_64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin11Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin11_64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin12_64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin13_64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin14_64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin15_64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "darwin16_64Guest",
      "Family": "darwinGuestFamily",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "vmkernelGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "vmkernel5Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "vmkernel6Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "vmkernel65Guest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "otherGuest",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    },
    {
      "Id": "otherGuest64",
      "Family": "linuxGuest",
      "FullName": "",
      "SupportedMaxCPUs": 0,
      "NumSupportedPhysicalSockets": 0,
      "NumSupportedCoresPerSocket": 0,
      "SupportedMinMemMB": 0,
      "SupportedMaxMemMB": 0,
      "RecommendedMemMB": 0,
      "RecommendedColorDepth": 0,
      "SupportedDiskControllerList": null,
      "RecommendedSCSIController": "",
      "RecommendedDiskController": "",
      "SupportedNumDisks": 0,
      "RecommendedDiskSizeMB": 0,
      "RecommendedCdromController": "",
      "SupportedEthernetCard": null,
      "RecommendedEthernetCard": "",
      "SupportsSlaveDisk": null,
      "CpuFeatureMask": null,
      "SmcRequired": null,
      "SupportsWakeOnLan": false,
      "SupportsVMI": null,
      "SupportsMemoryHotAdd": null,
      "SupportsCpuHotAdd": null,
      "SupportsCpuHotRemove": null,
      "SupportedFirmware": null,
      "RecommendedFirmware": "",
      "SupportedUSBControllerList": null,
      "RecommendedUSBController": "",
      "Supports3D": null,
      "Recommended3D": null,
      "SmcRecommended": null,
      "Ich7mRecommended": null,
      "UsbRecommended": null,
      "SupportLevel": "",
      "SupportedForCreate": null,
      "VRAMSizeInKB": null,
      "NumSupportedFloppyDevices": 0,
      "WakeOnLanEthernetCard": null,
      "SupportsPvscsiControllerForBoot": null,
      "DiskUuidEnabled": null,
      "SupportsHotPlugPCI": null,
      "SupportsSecureBoot": null,
      "DefaultSecureBoot": null,
      "PersistentMemorySupported": null,
      "SupportedMinPersistentMemoryMB": 0,
      "SupportedMaxPersistentMemoryMB": 0,
      "RecommendedPersistentMemoryMB": 0,
      "PersistentMemoryHotAddSupported": null,
      "PersistentMemoryHotRemoveSupported": null,
      "PersistentMemoryColdGrowthSupported": null,
      "PersistentMemoryColdGrowthGranularityMB": 0,
      "PersistentMemoryHotGrowthSupported": null,
      "PersistentMemoryHotGrowthGranularityMB": 0,
      "NumRecommendedPhysicalSockets": 0,
      "NumRecommendedCoresPerSocket": 0,
      "VvtdSupported": null,
      "VbsSupported": null,
      "VsgxSupported": null,
      "SupportsTPM20": null,
      "VwdtSupported": null
    }
  ],
  "GuestOSDefaultIndex": 0,
  "HardwareOptions": {
    "HwVersion": 0,
    "VirtualDeviceOption": null,
    "DeviceListReadonly": false,
    "NumCPU": null,
    "NumCoresPerSocket": null,
    "NumCpuReadonly": false,
    "MemoryMB": {
      "ValueIsReadonly": null,
      "Min": 0,
      "Max": 0,
      "DefaultValue": 0
    },
    "NumPCIControllers": {
      "ValueIsReadonly": null,
      "Min": 0,
      "Max": 0,
      "DefaultValue": 0
    },
    "NumIDEControllers": {
      "ValueIsReadonly": null,
      "Min": 0,
      "Max": 0,
      "DefaultValue": 0
    },
    "NumUSBControllers": {
      "ValueIsReadonly": null,
      "Min": 0,
      "Max": 0,
      "DefaultValue": 0
    },
    "NumUSBXHCIControllers": null,
    "NumSIOControllers": {
      "ValueIsReadonly": null,
      "Min": 0,
      "Max": 0,
      "DefaultValue": 0
    },
    "NumPS2Controllers": {
      "ValueIsReadonly": null,
      "Min": 0,
      "Max": 0,
      "DefaultValue": 0
    },
    "LicensingLimit": null,
    "NumSupportedWwnPorts": null,
    "NumSupportedWwnNodes": null,
    "ResourceConfigOption": null,
    "NumNVDIMMControllers": null,
    "NumTPMDevices": null,
    "NumWDTDevices": null,
    "NumPrecisionClockDevices": null,
    "EpcMemoryMB": null
  },
  "Capabilities": {
    "SnapshotOperationsSupported": false,
    "MultipleSnapshotsSupported": false,
    "SnapshotConfigSupported": false,
    "PoweredOffSnapshotsSupported": false,
    "MemorySnapshotsSupported": false,
    "RevertToSnapshotSupported": false,
    "QuiescedSnapshotsSupported": false,
    "DisableSnapshotsSupported": false,
    "LockSnapshotsSupported": false,
    "ConsolePreferencesSupported": false,
    "CpuFeatureMaskSupported": false,
    "S1AcpiManagementSupported": false,
    "SettingScreenResolutionSupported": false,
    "ToolsAutoUpdateSupported": false,
    "VmNpivWwnSupported": false,
    "NpivWwnOnNonRdmVmSupported": false,
    "VmNpivWwnDisableSupported": null,
    "VmNpivWwnUpdateSupported": null,
    "SwapPlacementSupported": false,
    "ToolsSyncTimeSupported": false,
    "VirtualMmuUsageSupported": false,
    "DiskSharesSupported": false,
    "BootOptionsSupported": false,
    "BootRetryOptionsSupported": null,
    "SettingVideoRamSizeSupported": false,
    "SettingDisplayTopologySupported": null,
    "RecordReplaySupported": null,
    "ChangeTrackingSupported": null,
    "MultipleCoresPerSocketSupported": null,
    "HostBasedReplicationSupported": null,
    "GuestAutoLockSupported": null,
    "MemoryReservationLockSupported": null,
    "FeatureRequirementSupported": null,
    "PoweredOnMonitorTypeChangeSupported": null,
    "SeSparseDiskSupported": null,
    "NestedHVSupported": null,
    "VPMCSupported": null,
    "SecureBootSupported": null,
    "PerVmEvcSupported": null,
    "VirtualMmuUsageIgnored": null,
    "VirtualExecUsageIgnored": null,
    "DiskOnlySnapshotOnSuspendedVMSupported": null
  },
  "Datastore": {
    "UnsupportedVolumes": null
  },
  "DefaultDevice": [
    {
      "Key": 200,
      "DeviceInfo": {
        "Label": "IDE 0",
        "Summary": "IDE 0"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 0,
      "UnitNumber": null,
      "BusNumber": 0,
      "Device": null
    },
    {
      "Key": 201,
      "DeviceInfo": {
        "Label": "IDE 1",
        "Summary": "IDE 1"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 0,
      "UnitNumber": null,
      "BusNumber": 1,
      "Device": null
    },
    {
      "Key": 300,
      "DeviceInfo": {
        "Label": "PS2 controller 0",
        "Summary": "PS2 controller 0"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 0,
      "UnitNumber": null,
      "BusNumber": 0,
      "Device": [
        600,
        700
      ]
    },
    {
      "Key": 100,
      "DeviceInfo": {
        "Label": "PCI controller 0",
        "Summary": "PCI controller 0"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 0,
      "UnitNumber": null,
      "BusNumber": 0,
      "Device": [
        500,
        12000
      ]
    },
    {
      "Key": 400,
      "DeviceInfo": {
        "Label": "SIO controller 0",
        "Summary": "SIO controller 0"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 0,
      "UnitNumber": null,
      "BusNumber": 0,
      "Device": null
    },
    {
      "Key": 600,
      "DeviceInfo": {
        "Label": "Keyboard ",
        "Summary": "Keyboard"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 300,
      "UnitNumber": 0
    },
    {
      "Key": 700,
      "DeviceInfo": {
        "Label": "Pointing device",
        "Summary": "Pointing device; Device"
      },
      "Backing": {
        "DeviceName": "",
        "UseAutoDetect": false,
        "HostPointingDevice": "autodetect"
      },
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 300,
      "UnitNumber": 1
    },
    {
      "Key": 500,
      "DeviceInfo": {
        "Label": "Video card ",
        "Summary": "Video card"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 100,
      "UnitNumber": 0,
      "VideoRamSizeInKB": 4096,
      "NumDisplays": 1,
      "UseAutoDetect": false,
      "Enable3DSupport": false,
      "Use3dRenderer": "automatic",
      "GraphicsMemorySizeInKB": 262144
    },
    {
      "Key": 12000,
      "DeviceInfo": {
        "Label": "VMCI device",
        "Summary": "Device on the virtual machine PCI bus that provides support for the virtual machine communication interface"
      },
      "Backing": null,
      "Connectable": null,
      "SlotInfo": null,
      "ControllerKey": 100,
      "UnitNumber": 17,
      "Id": -1,
      "AllowUnrestrictedCommunication": false,
      "FilterEnable": true,
      "FilterInfo": null
    }
  ],
  "SupportedMonitorType": null,
  "SupportedOvfEnvironmentTransport": null,
  "SupportedOvfInstallTransport": null,
  "PropertyRelations": null
}
最終更新 2021/06/13 23:17 JST
Built with Hugo
テーマ StackJimmy によって設計されています。