UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

21 lines (18 loc) 491 B
'use strict'; const DynamicData = require('./DynamicData'); module.exports = class DatastoreSummary extends DynamicData { static mappings() { return { accessible: 'xsd:boolean', capacity: 'xsd:long', datastore: 'ManagedObjectReference', freeSpace: 'xsd:long', maintenanceMode: 'xsd:string', multipleHostAccess: 'xsd:boolean', name: 'xsd:string', type: 'xsd:string', uncommitted: 'xsd:long', url: 'xsd:string' }; } };