@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
23 lines (20 loc) • 612 B
JavaScript
;
const DynamicData = require('./DynamicData');
module.exports = class HostProtocolEndpoint extends DynamicData {
static mappings() {
return {
deviceId: 'xsd:string',
hostKey: 'ManagedObjectReference',
nfsDir: 'xsd:string',
nfsServer: 'xsd:string',
nfsServerAuthType: 'xsd:string',
nfsServerMajor: 'xsd:string',
nfsServerScope: 'xsd:string',
nfsServerUser: 'xsd:string',
peType: 'HostProtocolEndpointPEType',
storageArray: 'xsd:string',
type: 'HostProtocolEndpointProtocolEndpointType',
uuid: 'xsd:string'
};
}
};