@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
23 lines (18 loc) • 498 B
JavaScript
;
const Event = require('./Event'),
LocalizedMethodFault = require('./LocalizedMethodFault');
module.exports = class EventEx extends Event {
static mappings() {
return {
...super.mappings(),
arguments: 'ArrayOfKeyAnyValue',
eventTypeId: 'xsd:string',
fault: LocalizedMethodFault,
message: 'xsd:string',
objectId: 'xsd:string',
objectName: 'xsd:string',
objectType: 'xsd:string',
severity: 'xsd:string'
};
}
};