@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
14 lines (11 loc) • 330 B
JavaScript
;
const DynamicData = require('./DynamicData'),
ElementDescription = require('./ElementDescription');
module.exports = class PerformanceDescription extends DynamicData {
static mappings() {
return {
counterType: ElementDescription.ArrayOf,
statsType: ElementDescription.ArrayOf
};
}
};