@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
22 lines (19 loc) • 490 B
JavaScript
;
const DynamicData = require('./DynamicData');
module.exports = class HostHardwareSummary extends DynamicData {
static mappings() {
return {
cpuMhz: 'xsd:int',
cpuModel: 'xsd:string',
memorySize: 'xsd:long',
model: 'xsd:string',
numCpuCores: 'xsd:short',
numCpuPkgs: 'xsd:short',
numCpuThreads: 'xsd:short',
numHBAs: 'xsd:int',
numNics: 'xsd:int',
uuid: 'xsd:string',
vendor: 'xsd:string'
};
}
};