@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
16 lines (13 loc) • 363 B
JavaScript
;
const DynamicData = require('./DynamicData');
module.exports = class VirtualDiskVFlashCacheConfigInfo extends DynamicData {
static mappings() {
return {
blockSizeInKB: 'xsd:long',
cacheConsistencyType: 'xsd:string',
cacheMode: 'xsd:string',
reservationInMB: 'xsd:long',
vFlashModule: 'xsd:string'
};
}
};