@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
15 lines (12 loc) • 359 B
JavaScript
;
const HostFileSystemVolume = require('./HostFileSystemVolume');
module.exports = class HostVvolVolume extends HostFileSystemVolume {
static mappings() {
return {
hostPE: 'ArrayOfVVolHostPE',
scId: 'xsd:string',
storageArray: 'ArrayOfVASAStorageArray',
vasaProviderInfo: 'ArrayOfVimVasaProviderInfo'
};
}
};