@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
21 lines (18 loc) • 532 B
JavaScript
;
const DynamicData = require('./DynamicData'),
ElementDescription = require('./ElementDescription');
module.exports = class PerfCounterInfo extends DynamicData {
static mappings() {
return {
associatedCounterId: 'ArrayOfInt',
groupInfo: ElementDescription,
key: 'xsd:int',
level: 'xsd:int',
nameInfo: ElementDescription,
perfDeviceLevel: 'xsd:int',
rollupType: 'PerfSummaryType',
statsType: 'PerfStatsType',
unitInfo: ElementDescription
};
}
};