@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
20 lines (16 loc) • 361 B
JavaScript
;
const DynamicData = require('./DynamicData');
module.exports = class DatastoreInfo extends DynamicData {
static mappings() {
return {
freeSpace: 'xsd:long',
maxFileSize: 'xsd:long',
name: 'xsd:string',
timestamp: 'xsd:dateTime',
url: 'xsd:string'
};
}
static requestFully() {
return true;
}
};